Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8199241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T06:07:50+00:00 2026-06-07T06:07:50+00:00

I am working on a web service program that makes calls back and forth

  • 0

I am working on a web service program that makes calls back and forth in the form of XML. My issue is not with that however. When I run this locally (in Eclipse) on my machine, it seems to work. However, when my coworker runs it/if I attempt to run it on the server, he gets this exception before the web service is even called:

Exception #6 in ClientMain.java java.lang.IllegalArgumentException: 2012-07-09T08:19:44-0400

Does anyone have any idea why it would take the argument on one machine but not the other? The build should not be the issue as I copied my entire eclipse workspace on a thumbdrive (so all associated jars and the build path should have carried over). As far as the server run, I exported the entire program as a runnable jar (running Eclipse Indigo) and get a similar issue.

I’d appreciate any insight!

Stacktrace/Output:

java.lang.IllegalArgumentException: 2012-07-09T09:19:42-0400
      at com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl$Parser.skip(Unknown Source)
      at com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl$Parser.parse(Unknown Source)
      at com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl.<init>(Unknown Source)
      at com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl.newXMLGregorianCalendar(Unknown Source)
      at com.travelport.worldspanimageserver.client.ClientMain.requestRun(ClientMain.java:231)******************************************************
Running by Yesterday's Date ...
2012-07-09T09:19:42-0400
Current date being used is 2012-07-09T09:19:42-0400
Exception #6 in ClientMain.java java.lang.IllegalArgumentException: 2012-07-09T09:19:42-0400

      at com.travelport.worldspanimageserver.client.ClientMain.runTypeCheck(ClientMain.java:161)
      at com.travelport.worldspanimageserver.client.ClientMain.main(ClientMain.java:81)
Exception #13 in ClientMain.java java.lang.NullPointerException

Method causing exception:

    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.Date;
    import java.util.GregorianCalendar;
    import java.util.List;
    import java.util.Properties;
    import java.util.TimeZone;

    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    import javax.swing.text.Document;
    import javax.xml.datatype.DatatypeConfigurationException;
    import javax.xml.datatype.DatatypeFactory;
    import javax.xml.datatype.XMLGregorianCalendar;

    import org.joda.time.format.DateTimeFormatter;
    import org.joda.time.format.ISODateTimeFormat;

        public static void requestRun(String strRunType) throws DatatypeConfigurationException{
                //-TODO: determine how date is passed in/retrieved from database        
                 GregorianCalendar c = new GregorianCalendar();

                 XMLGregorianCalendar dateTime = null;

                 if (strRunType == "fullLoad") {dateTime = null;}
                 if (strRunType.substring(0,2).equals("OD")) 
                 { 
                     System.out.println("Current date being used is " + DatatypeFactory.newInstance().newXMLGregorianCalendar(strRunType.substring(2,strRunType.length())));
                     dateTime = DatatypeFactory.newInstance().newXMLGregorianCalendar(strRunType.substring(2,strRunType.length()));
                 }
                 if (strRunType.substring(0,2).equals("DT")) 
                 { 
                     System.out.println("Current date being used is " + strRunType.substring(2,strRunType.length()));           
                     dateTime = DatatypeFactory.newInstance().newXMLGregorianCalendar(strRunType.substring(2,strRunType.length()));
                 }

 String address = "http://vhligssas001:31860/services/ImageViewerService"; /**getServiceURL(sServer);**/

           try
           {
              ArrayList<PropertyType> propertyIdList = null;                                         
              ArrayList tempList = null;

               if (strRunType.equals("properties"))
               {
                  propertyIdList = getPropertiesFromFile(); //to fix later               
               }
               else
               {
                  propertyIdList = initialCall(dateTime, propertyIdList, address);
               }

               secondCall(propertyIdList, address);

           }  
           catch(Exception e)
           {
              System.out.println("Exception #5 in ClientMain.java " + e);
              try
              {
                 postMail("Exception #5 in ClientMain.java " + e);
              }
              catch (Exception e1)
              {
                  e1.printStackTrace();
              }
              System.exit(16);
           }  
       }  
       catch(Exception e)
       {
          System.out.println("Exception #6 in ClientMain.java " + e);
          try
          {
             postMail("Exception #6 in ClientMain.java " + e);
                 e.printStackTrace(); //added

          }
          catch (Exception e1)
          {
             e1.printStackTrace();
          }
          System.exit(16);
       }        
    }

Main Class:

    public static void main(String args[]) throws Exception 
        {
            String sRunType = new String("");
         try
            {    
              File fPropertiesToLoad = new File("runType.txt");
              BufferedReader in = null;
              String strRunType = new String("");

               if (!fPropertiesToLoad.exists())
               {         
                  System.out.println("******************************************************");
                  System.out.println("Exception #1 - Run Type file does not exist");
                  System.out.println("******************************************************");
                  postMail("Exception #1 - Run Type file does not exist");
                  System.exit(16);
               }           
               else
               {
                   in = new BufferedReader(new FileReader("runType.txt"));   
                   if ((strRunType = in.readLine()) != null)
                   {
                       sRunType = strRunType.trim();
                   }
                   in.close();     
                   runTypeCheck(sRunType);
               }
            }        
            catch (Exception e)
            {
               System.out.println("Exception #2 in ClientMain.java " + e);
               postMail("Exception #2 in ClientMain.java " + e);
               System.exit(16);
            }
        }      

runTypeCheck:

    public static void runTypeCheck(String sRunType)
        {
            try
            {
             //Hard-coded in "yesterday" as the date
             sRunType = "DT";

             System.out.println("******************************************************");
             DateTimeFormatter parser2 = ISODateTimeFormat.dateTimeNoMillis();

             if (sRunType.equals("DT")) 
             {
                 System.out.println("Running by Yesterday's Date ...");
                 Calendar cal = Calendar.getInstance();
                 cal.add(Calendar.DATE, -1);
                 DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ");
                 sRunType =  dateFormat.format(cal.getTime());
                 System.out.println(sRunType);
                 sRunType = sRunType.replaceAll("-0500", "-05:00");
                 sRunType = "DT" + sRunType;
                 requestRun(sRunType);
             }
System.out.println("******************************************************");

       }
       catch(Exception e)
       {
           System.out.println("Exception #4 in ClientMain.java " + e);
           try
           {
              postMail("Exception #4 in ClientMain.java " + e);
           }
           catch (Exception e1)
           {
              e1.printStackTrace();
           }
           System.exit(16);
        }  
    }

only output:

******************************************************

Running by Yesterday's Date ...

2012-07-09T08:19:44-0400

Current date being used is 2012-07-09T08:19:44-0400

Exception #6 in ClientMain.java java.lang.IllegalArgumentException: 2012-07-09T08:19:44-0400
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T06:07:50+00:00Added an answer on June 7, 2026 at 6:07 am

    The problem is that your ‘date’ that you get from strRunType.substring(2,strRunType.length()) isn’t a valid lexicalRepresentation of the date.

    You’ll need to get your input value correctly formatted in order to parse as an XMLGregorianCalendar object.

    The error being that you are missing a : in the -04:00 in your date.

    Which you must have been aware of because of sRunType = sRunType.replaceAll("-0500", "-05:00"); code… except you were using a 5 instead of a 4?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are working on a web service that has to run a 3rd party
Hi i am working on web service application in android.i need a class that
I'm working with a web service that will give me values like: var text
I have web service urls that were working fine and are now returning the
I'm working on bindings to a web service, where some of the calls take
trying to run this program. I think that to setup all of the web
I am working on a program using web services and for that I need
I am using C# to write a program that uses a web service from
I am working on a web service servlet running on Google App Engine using
I'm working on a web service at the moment and there is the potential

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.