Announcement

Collapse
No announcement yet.

IntXmlService web service

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • IntXmlService web service

    Hi,
    If I am not mistaken OTM comes with a webservice called IntXmlService that is used for Inbound transactions.
    I can see the webservice registered in the Integration Manager. I can see the url for the webservice but I dont get the repsonse when I click on it.
    It seems that webservice is not up.
    Can you please tell me know if there is a seperate sh script to start this service or is it done through a Administration menu in OTM. I have been trying to see how this service is configured and how it can be started with out much luck.
    Any help in the configuration and starting this webservice will be great.

    Thanks
    DK

  • #2
    Re: IntXmlService web service

    I think I found the culprit. Recently we made a change to increase the heap size and changed the following in server.xml
    From
    <java-compiler name="javac" in-process="false" options="-J-Xmx1024m -encoding UTF8"
    extdirs="..../OTMAPP/jdk/jre/lib/ext" />

    To

    <java-compiler name="javac" in-process="false" options="-J-Xmx1024m -Xms1024m -Xmn1024m -encoding UTF8"
    extdirs="..../OTMAPP/jdk/jre/lib/ext" />
    I could see errors in console saying javac: invalid flag: -Xmn1024m. Can someone suggest whats wrong in the syntax.

    Regards
    DK

    Comment


    • #3
      Re: IntXmlService web service

      DK,

      It would appear that the version of Java that OTM utilizes doesn't support the -Xmn flag. The -X flags in Java change from version to version (and between JVM vendors). I would suggest removing this particular flag.

      At the same time, it doesn't appear that you've increased the heap size. I would expect an increase to look similar to:

      <java-compiler name="javac" in-process="false" options="-J-Xmx1536m -Xms1536m -encoding UTF8"
      extdirs="..../OTMAPP/jdk/jre/lib/ext" />

      --Chris

      Comment

      Working...
      X