Ugly problem with java.lang.reflect.InvocationTargetException

Hello,
I am writing a web service which connects to WebSphere MQ queue manager and puts a message on a queue.
I use Eclipse and as usual I followed more or less the hints given at:
http://www.eclipse.org/webtools/jst/components/ws/1.5/tutorials/BottomUpWebService/BottomUpWebService.html
I have chosen Tomcat 5.5.20 as target server (had to, because otherwise it does not create a server-config.wsdd file), the web service WSDL thingies and the client were created successfully.
I have created WAR files and everything went fine when I tested the thing on JBoss.
Bad things started after I deployed the things on the Tomcat server. When I start the client I receive java.lang.reflect.InvocationTargetException as a result. The web service itself does not generate any exception, but the client does (I'll post the dump later..).
During the debug it turned that the exception is generated at the moment when the web service program tries to call any of the WebSphere functions.
Now - 1st obvious thing was to check if I have com.ibm.mq.jar in the WEB-INF/lib directory inside my WAR files. Yep! There it was.
So.. if the thing works just fine on JBoss and it booms on Tomcat I wonder whats the hack here? I copied all of the MQ libraries i have from JBOSS_HOME/lib to CATALINA_HOME/shared/lib and CATALINA_HOME/common/lib. Well.. that's quite ugly, because all necessary jars are inside the WEB-INF/lib directory. Anyway nothing of the above helped me running the thing on Tomcat.
Do you have any suggestions or have anyone of you ever had such problem?
Here are the exception dump and part of the code:
  - Setting up MQ environment:
     - Setting hostname...
An AxisFault exception occured: java.lang.reflect.InvocationTargetException
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
faultSubcode:
faultString: java.lang.reflect.InvocationTargetException
faultActor:
faultNode:
faultDetail:
     {http://xml.apache.org/axis/}hostname:ghjvk0j
java.lang.reflect.InvocationTargetException
     at org.apache.axis.message.SOAPFaultBuilder.create
Fault(SOAPFaultBuilder.java:222)
     at org.apache.axis.message.SOAPFaultBuilder.endElement(
SOAPFaultBuilder.java:129)
     at org.apache.axis.encoding.DeserializationContext.endElement(
DeserializationContext.java:1087)
     at org.apache.xerces.parsers.AbstractSAXParser.endElement(
Unknown Source)
     at org.apache.xerces.impl.XMLNSDocumentScannerImpl.
scanEndElement(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScanne
rImpl$Fragment ContentDispatcher.dispatch(Unknown Source)
     at org.apache.xerces.impl.XMLDocumentFragmentScannerI
mpl.scanDocument(Unknown Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
Source)
     at org.apache.xerces.parsers.XML11Configuration.parse(Unknown
Source)
     at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
     at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown
Source)
     at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse
(Unknown Source)
     at javax.xml.parsers.SAXParser.parse(Unknown Source)
     at org.apache.axis.encoding.DeserializationContext.parse(
DeserializationContext.java:227)
     at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
     at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
     at org.apache.axis.handlers.soap.
MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
     at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
     at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
     at org.apache.axis.client.Call.invoke(Call.java:2767)
     at org.apache.axis.client.Call.invoke(Call.java:2443)
     at org.apache.axis.client.Call.invoke(Call.java:2366)
     at org.apache.axis.client.Call.invoke(Call.java:1812)
     at pl.pzu.services.TfiAuthenticationSoapBindingStub.
verify(TfiAuthenticationSoapBindingStub.java:245)
     at pl.pzu.services.TfiAuthenticationProxy.
verify(TfiAuthenticationProxy.java:45)
     at org.apache.jsp.sampleTfiAuthenticationProxy.
Result_jsp._jspService(Result_jsp.java:158)
     at org.apache.jasper.runtime.HttpJspBase.
service(HttpJspBase.java:97)
     at javax.servlet.http.HttpServlet.
service(HttpServlet.java:802)
     at org.apache.jasper.servlet.JspServletWrapper.
service(JspServletWrapper.java:334)
     at org.apache.jasper.servlet.JspServlet.
serviceJspFile(JspServlet.java:314)
     at org.apache.jasper.servlet.JspServlet.
service(JspServlet.java:264)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter
(ApplicationFilterChain.java:252)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(
ApplicationFilterChain.java:173)
     at org.apache.catalina.core.StandardWrapperValve.invoke(
StandardWrapperValve.java:213)
     at org.apache.catalina.core.StandardContextValve.invoke
(StandardContextValve.java:178)
     at org.apache.catalina.core.StandardHostValve.invoke(
StandardHostValve.java:126)
     at org.apache.catalina.valves.ErrorReportValve.invoke(
ErrorReportValve.java:105)
     at org.apache.catalina.core.StandardEngineValve.invoke(
StandardEngineValve.java:107)
     at org.apache.catalina.connector.CoyoteAdapter.service(
CoyoteAdapter.java:148)
     at org.apache.coyote.http11.Http11Processor.process(
Http11Processor.java:869)
     at org.apache.coyote.http11.Http11BaseProtocol$Http11Connec
tionHandler.processConnection(Http11BaseProtocol.java:664)
     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(Pool
TcpEndpoint.java:527)
     at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(Lea
derFollowerWorkerThread.java:80)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(
ThreadPool.java:684)
     at java.lang.Thread.run(Unknown Source)There is the part of the web service code where the event occurs:
     public void writeMessage(String message,
String message_ID) throws Exception
          System.out.println("      - Setting up MQ environment: ");
          try
               System.out.println("      - Setting hostname...");
     NEXT LINE CAUSES THE CLIENT TO THROW
     This is the first call to any WebSphere assets.
     During debug It says the it is unable to inspect the MQEnvironment
     object...
               MQEnvironment.hostname = m_config.getQMHost();
               System.out.println("      - Setting port...");
               MQEnvironment.port = m_config.getQMPort();
               System.out.println("      - Setting channel...");
               MQEnvironment.channel = m_config.getQMChannel();
     }I think that if it works on JBoss and it doesn't on Tomcat it is not coding problem, but rather a configuration...
Thanx for any ideas or help from ur side.

Did you have any success on this?
I also have the same problem with Tomcat 6.
I had Tomcat 5.0 working with this code, but when we migrated to Tomcat 6.0, I am getting this exception on the clent side. I figured out that it is occuring on invoking WebSphere MQ call from the code.
Thanks

Similar Messages

  • Problem with  java.lang.reflect in Eclipse

    I'm just reading java tutorial about that library, but when i'm trying to execute those example program's e.g
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Type;
    import static java.lang.System.out;
    public class ConstructorSift {
        public static void main(String... args) {
         try {
             Class<?> cArg = Class.forName(args[1]);
             Class<?> c = Class.forName(args[0]);
             Constructor[] allConstructors = c.getDeclaredConstructors();
             for (Constructor ctor : allConstructors) {
              Class<?>[] pType  = ctor.getParameterTypes();
              for (int i = 0; i < pType.length; i++) {
                  if (pType.equals(cArg)) {
                   out.format("%s%n", ctor.toGenericString());
                   Type[] gpType = ctor.getGenericParameterTypes();
                   for (int j = 0; j < gpType.length; j++) {
                   char ch = (pType[j].equals(cArg) ? '*' : ' ');
                   out.format("%7c%s[%d]: %s%n", ch,
                        "GenericParameterType", j, gpType[j]);
                   break;
    // production code should handle this exception more gracefully
         } catch (ClassNotFoundException x) {
         x.printStackTrace();
    in Eclipse i've got nothing in my output console :/
    no errors, no warnings, no text ..... (it was terminated correctly)
    Can somebody tell me what should I do to make it work properly ?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi,
    In program arguments, you should not have ConstructorSift but only java.util.Formatter and java.util.Locale.
    (Eclipse : run dialog | arguments tab | program arguments)
    This is the output you should get:
    $ java ConstructorSift java.util.Formatter java.util.Locale
    public java.util.Formatter(java.util.Locale)
    *GenericParameterType[0]: class java.util.Locale
    public java.util.Formatter(java.lang.Appendable,java.util.Locale)
    GenericParameterType[0]: interface java.lang.Appendable
    *GenericParameterType[1]: class java.util.Locale
    public java.util.Formatter(java.lang.String,java.lang.String,java.util.Locale) throws java.io.FileNotFoundException,java.io.UnsupportedEncodingException
    GenericParameterType[0]: class java.lang.String
    GenericParameterType[1]: class java.lang.String
    *GenericParameterType[2]: class java.util.Locale
    public java.util.Formatter(java.io.File,java.lang.String,java.util.Locale) throws java.io.FileNotFoundException,java.io.UnsupportedEncodingException
    GenericParameterType[0]: class java.io.File
    GenericParameterType[1]: class java.lang.String
    *GenericParameterType[2]: class java.util.Locale
    public java.util.Formatter(java.io.OutputStream,java.lang.String,java.util.Locale) throws java.io.UnsupportedEncodingException
    GenericParameterType[0]: class java.io.OutputStream
    GenericParameterType[1]: class java.lang.String
    *GenericParameterType[2]: class java.util.Locale
    Hope that help,
    Jack

  • Webapp wont start - java.lang.reflect.InvocationTargetException

    Hi
    I'm having a problem getting my own web applications to start (the tomcat one's run fine). It fails when reading my web.xml file. First off here is my environment:
    OS: Linux
    SDK: 1.4.1_02
    Container: Tomcat 4.1.18
    I created a small HelloWorld application to see if it will give me the same result, unfortunately it did. Below is the error msg from the log as well as the content of my web.xml file. Please see my additional comment below the error ...
    The web.xml file:<?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
         <servlet>
              <servlet-name>HelloWorld</servlet-name>
              <servlet-class>HelloWorld</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>HelloWorld</servlet-name>
              <url-pattern>HelloWorld</url-pattern>
         </servlet-mapping>
    </web-app>
    Error msg in log file:
    2003-04-01 19:13:54 ContextConfig[test] Parse error in application web.xml
    java.lang.reflect.InvocationTargetException
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2312)
         at org.apache.commons.digester.Digester.createSAXException(Digester.java:2332)
         at org.apache.commons.digester.Digester.endElement(Digester.java:1039)
         at org.apache.xerces.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:585)
         at org.apache.xerces.impl.XMLNamespaceBinder.endElement(XMLNamespaceBinder.java:647)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.handleEndElement(XMLDTDValidator.java:1937)
         at org.apache.xerces.impl.dtd.XMLDTDValidator.endElement(XMLDTDValidator.java:851)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocumentFragmentScannerImpl.java:1008)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1469)
         at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:329)
         at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:525)
         at org.apache.xerces.parsers.DTDConfiguration.parse(DTDConfiguration.java:581)
         at org.apache.xerces.parsers.XMLParser.parse(XMLParser.java:152)
         at org.apache.xerces.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1175)
         at org.apache.commons.digester.Digester.parse(Digester.java:1495)
         at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:282)
         at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:639)
         at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:243)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.StandardContext.start(StandardContext.java:3567)
         at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:821)
         at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:807)
         at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:579)
         at org.apache.catalina.core.StandardHostDeployer.install(StandardHostDeployer.java:257)
         at org.apache.catalina.core.StandardHost.install(StandardHost.java:772)
         at org.apache.catalina.startup.HostConfig.deployDirectories(HostConfig.java:569)
         at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:411)
         at org.apache.catalina.startup.HostConfig.start(HostConfig.java:879)
         at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:368)
         at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:166)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1196)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:738)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1188)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:347)
         at org.apache.catalina.core.StandardService.start(StandardService.java:497)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:2189)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:512)
         at org.apache.catalina.startup.Catalina.execute(Catalina.java:400)
         at org.apache.catalina.startup.Catalina.process(Catalina.java:180)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:203)
    2003-04-01 19:13:54 ContextConfig[test]: Occurred at line 16 column 20
    2003-04-01 19:35:59 ContextConfig[test]: Marking this application unavailable due to previous error(s)
    Line 16 column 20 is the character after the </servlet-mapping> tag. Why is it doing this? I've recreated web.xml a couple of times from scratch, thinking that it might be some weird character in the file that is not visible. I've also set the encoding to UTF-8, but it just keeps on failing when it gets to the first closing servlet-mapping tag. Am I missing something or is this some weird bug?
    Any help would be greatly appreciated!

    Hmmm....I don't see anything wrong with the web.xml file. Perhaps Tomcat can't find your, "HelloWorld" class?
    1. Did you set the classpath correctly?
    2. Did you declare the name of the class correctly in the web.xml file's servlet-class element (i.e. full package naming)?

  • Critical WebLogicServer BEA-000362 Server failed. Reason: [Management:141266]Parsing Failure in config.xml: java.lang.AssertionError: java.lang.reflect.InvocationTargetException

    Friends,
    Getting below error when i restart the server.
    <Dec 31, 2014 5:33:58 AM EST> <Warning> <Management> <BEA-141274> <Production mode has specified at the command line via the weblogic.ProductionModeEnabled system property. This system property overrides the development mode setting contained in config.xml. However, the console and WLST show the attribute values and defaults that correspond to the development mode specified in config.xml.>
    <Dec 31, 2014 5:34:07 AM EST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: [Management:141266]Parsing Failure in config.xml: java.lang.AssertionError: java.lang.reflect.InvocationTargetException>
    <Dec 31, 2014 5:34:07 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FAILED>
    <Dec 31, 2014 5:34:07 AM EST> <Error> <WebLogicServer> <BEA-000383> <A critical service failed. The server will shut itself down>
    <Dec 31, 2014 5:34:07 AM EST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    I have changed the jar files path in build.properties file as its required to import new jars as part of Documentum server upgradation. But getting above errors.. Do i have to update Config.xml file or any other file.. Please suggest.

    You've got a problem with a corrupted config.xml file.
    Since you did not make any changes you can copy the config.xml.booted file over the corrupted config.xml.
    The other option is to walk though the config.xml file and look for the problem...

  • Unexpected exception: java.lang.reflect.InvocationTargetException Help!

    What this error mean. Help! I dont understand. The program is running when I try to run it but when I try to deploy it using JNLP it wont work.
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sun.javaws.Launcher.executeApplication(Unknown Source)
         at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
         at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
         at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
         at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NoClassDefFoundError: Cutout$1
         at Cutout.<init>(Cutout.java:45)
         at Cutout.main(Cutout.java:175)
         ... 11 more
    It seems like the error is at line 45 of my code. My code starting from line 45 is this...
         capture.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                        try {
                             java.awt.Point pos = jFrame.getLocationOnScreen();
                             javax.imageio.ImageIO.write(shot.getSubimage(pos.x + 3, pos.y + 27, jFrame.getWidth() - 7, jFrame.getHeight() - 30), "jpg", new java.io.File("image.jpg"));
                        } catch(java.io.IOException ioe) {
                             ioe.printStackTrace();
         popup.add(capture);
         refresh = new javax.swing.JMenuItem("Refresh");
         refresh.setMnemonic('R');
            refresh.addActionListener(new java.awt.event.ActionListener() {
              public void actionPerformed(java.awt.event.ActionEvent evt) {
                        refresh();
         popup.add(refresh);
         exit = new javax.swing.JMenuItem("Exit");
         exit.setMnemonic('x');
            exit.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                        jFrame.setVisible(false);
                        jFrame.dispose();
                        System.exit(0);
         popup.add(exit);
            addMouseListener(new java.awt.event.MouseAdapter() {
                public void mouseReleased(java.awt.event.MouseEvent evt) {
                    popup.show(evt.getComponent(), evt.getX(), evt.getY());
            });Is there something wrong with this one?

    Hi,
    I get the same error and i am not really sure what your explanation says... This problem below is the latest of a series of problems i started getting after i updated my BIRT version in Eclipse 3.3.1 and RAD 6.0... I troubleshooted and resolved most of them however i am not sure and it is not obvious to me what is required for this particular one below
    In the problems tab there is nothing to give me a clue. The exception below appears in the Websphere console and also on the page when trying to access my jsp file normally. I am not sure what is causing it, but here it is:
    JSP Processing Error
    HTTP Error Code: 500
    Error Message:JSPG0227E: Exception caught while translating /directory/init.jsp: java.lang.reflect.InvocationTargetException
    Root Cause:com.ibm.ws.jsp.translator.JspTranslationException: JSPG0227E: Exception caught while translating /directory/init.jsp: java.lang.reflect.InvocationTargetException     at com.ibm.ws.jsp.translator.JspTranslator.processVisitors(JspTranslator.java:133)     at com.ibm.ws.jsp.translator.utils.JspTranslatorUtil.translateJsp(JspTranslatorUtil.java:168)     at com.ibm.ws.jsp.translator.utils.JspTranslatorUtil.translateJspAndCompile(JspTranslatorUtil.java:81)     at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.translateJsp(JSPExtensionServletWrapper.java:298)     at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.checkForTranslation(JSPExtensionServletWrapper.java:265)     at com.ibm.ws.jsp.webcontainerext.JSPExtensionServletWrapper.handleRequest(JSPExtensionServletWrapper.java:137)     at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:230)     at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:2837)     at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:220)     at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:204)     at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1681)     at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:77)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:421)     at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:367)     at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:94)     at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:548)     at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:601)     at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:934)     at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1021)     at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1332)
    One of the funny things here, is that this is happening only when i start websphere in debug mode!
    Does anyone have any idea of what may be causing this or how we can find what's causing it or how to resolve it??
    Thanks in advance
    & Best Regards
    Spiros P.

  • Java.lang.reflect.InvocationTargetException when launching ESB

    Hello,
    I'm getting a java.lang.reflect.InvocationTargetException when launching ESB. I've tried restoring the archives and generating new signatures, clearing my local java cache and restarting the server.
    I'm running NW 711 SP06 and are using Java 1.6.0_14-b08 on the client (actually the same system). This used to work and the integration directory works fine.
    The full exception is below.
    Thanks (and points) for any ideas. 
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.sun.javaws.Launcher.executeApplication(Unknown Source)
         at com.sun.javaws.Launcher.executeMainClass(Unknown Source)
         at com.sun.javaws.Launcher.doLaunchApp(Unknown Source)
         at com.sun.javaws.Launcher.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.lang.NoClassDefFoundError: com/sap/exception/standard/SAPIllegalArgumentException
         at com.sap.guid.GUIDGeneratorFactory.initClusterID(GUIDGeneratorFactory.java:69)
         at com.sap.guid.GUIDGeneratorFactory.getInstance(GUIDGeneratorFactory.java:33)
         at com.sap.aii.utilxi.misc.api.GUIDFactory.getGuidGenerator(GUIDFactory.java:74)
         at com.sap.aii.utilxi.misc.api.GUIDFactory.<init>(GUIDFactory.java:50)
         at com.sap.aii.utilxi.misc.api.GUIDFactory.<clinit>(GUIDFactory.java:27)
         at com.sap.aii.utilxi.applcomp.ApplCompLevel.<init>(ApplCompLevel.java:103)
         at com.sap.aii.utilxi.applcomp.ApplCompLevel$Constants.<clinit>(ApplCompLevel.java:59)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.<init>(ExplicitApplicationComponents.java:287)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.setInstance(ExplicitApplicationComponents.java:250)
         at com.sap.aii.ib.core.applcomp.ExplicitApplicationComponents.getInstance(ExplicitApplicationComponents.java:256)
         at com.sap.aii.ib.core.applcomp.ApplicationComponent.setTypeId(ApplicationComponent.java:276)
         at com.sap.aii.ib.gui.misc.ApplicationBase.prepareStartup(ApplicationBase.java:210)
         at com.sap.aii.ibrep.gui.appl.ApplicationImpl.start(ApplicationImpl.java:137)
         at com.sap.aii.ibrep.gui.appl.ApplicationImpl.main(ApplicationImpl.java:116)
         ... 9 more
    Caused by: java.lang.ClassNotFoundException: com.sap.exception.standard.SAPIllegalArgumentException
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at com.sun.jnlp.JNLPClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         ... 23 more

    A workaround: starting with the repository.jnlp file from a system where the ESB was working, I replaced all of the references to the server address, port and SID to point to the server that wasn't working and saved the resulting repository.jnlp. Clicking on that jnlp file launched the ESB without error.
    I still don't know the root cause of the problem, but this seems to be an acceptable workaround for now.
    Rob

  • Java.lang.reflect.InvocationTargetException while executing xjc.bat.

    Hi , After installing the latest Webservice pack ,
    i'am trying to run the Sample application in examples directory .
    ( JAXB ).while running the XJC command i am getting follwing exception .
    I tried to run the same command by pointing the Classpath to JDK 1.3 as well as Jsdk 1.4 but no luck .
    Can any one tell me what's wrong with my setup any help is appriciated .
    Thanks in advance,
    Abhijit Choudhary .
    X:\Abhijit\JAXB\jaxb-1.0\examples\users-guide\SampleApp1>xjc po.xsd -p primer.po
    parsing a schema...
    compiling a schema...
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: java.lang.InternalError: internal error: SHA-1 not available.
    at sun.security.provider.SecureRandom.init(SecureRandom.java:86)
    at sun.security.provider.SecureRandom.<init>(SecureRandom.java:65)
    at java.security.SecureRandom.<init>(SecureRandom.java:131)
    at com.sun.crypto.provider.SunJCE.<clinit>(DashoA6275)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at java.lang.Class.newInstance0(Class.java:306)
    at java.lang.Class.newInstance(Class.java:259)
    at java.security.Provider.loadProvider(Provider.java:153)
    at java.security.Security$3.run(Security.java:349)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.Security.loadOneMoreProvider(Security.java:346)
    at java.security.Security.getEngineClassName(Security.java:557)
    at java.security.Security.getEngineClassName(Security.java:594)
    at java.security.Security.getImpl(Security.java:1043)
    at java.security.MessageDigest.getInstance(MessageDigest.java:120)
    at java.io.ObjectStreamClass.computeDefaultSUID(ObjectStreamClass.java:1568)
    at java.io.ObjectStreamClass.access$100(ObjectStreamClass.java:45)
    at java.io.ObjectStreamClass$1.run(ObjectStreamClass.java:169)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.io.ObjectStreamClass.getSerialVersionUID(ObjectStreamClass.java:166)
    at java.io.ObjectStreamClass.writeNonProxy(ObjectStreamClass.java:553)
    at java.io.ObjectOutputStream.writeClassDescriptor(ObjectOutputStream.java:591)
    at java.io.ObjectOutputStream.writeNonProxyDesc(ObjectOutputStream.java:1142)
    at java.io.ObjectOutputStream.writeClassDesc(ObjectOutputStream.java:1100)
    at java.io.ObjectOutputStream.writeArray(ObjectOutputStream.java:1179)
    at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1050)
    at java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1330)
    at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1302)
    at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1245)
    at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1052)
    at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:278)
    at com.sun.codemodel.fmt.JSerializedObject.<init>(JSerializedObject.java:27)
    at com.sun.tools.xjc.generator.ObjectFactoryGenerator.generate(ObjectFactoryGenerator.java:290)
    at com.sun.tools.xjc.generator.ObjectFactoryGenerator.<init>(ObjectFactoryGenerator.java:111)
    at com.sun.tools.xjc.generator.SkeletonGenerator.<init>(SkeletonGenerator.java:114)
    at com.sun.tools.xjc.generator.SkeletonGenerator.generate(SkeletonGenerator.java:92)
    at com.sun.tools.xjc.Driver.generateCode(Driver.java:728)
    at com.sun.tools.xjc.Driver.run(Driver.java:423)
    at com.sun.tools.xjc.Driver._main(Driver.java:113)
    at com.sun.tools.xjc.Driver.access$000(Driver.java:77)
    at com.sun.tools.xjc.Driver$1.run(Driver.java:93)

    HI,
    I also got the same problem. It were throwing the java.lang.reflect.InvocationTargetException while the running xjc.bat from <jaxb installed dir>\bin\ and refering the schema through full path.
    I am current running with j2sdk1.4.1_01 and jwsdp1.1.
    The solution which worked out for me was
    Just go to directory where you saved the xml schema file(.xsd file).just modify the System path to refer xjc.bat and taht's it.
    Run the xjc with XmlSchema file name with output package name and target directory like follows:
    xjc "XmlSchema.xsd" -d <targetdirectory> -p <packagename>
    Hope this will help
    Regards,
    Atul

  • Catching java.lang.reflect.InvocationTargetException

    Hi all,
    Our Windows NT service developed in Java is throwing exception
    java.lang.reflect.InvocationTargetException when run as a service.
    The same code does not throw this exception when run interactively.
    We are trying to get a list of files in particular folder.
    The suspect line of code is:
    fLogFiles = fLogFolder.listFiles();
    where fLogFolder is File object pointing to a folder.
    My guess is this is permissions issue but running
    the service by the administrator also causes the problem.
    I tried to catch the exception with
    ========================================================
    catch (java.lang.reflect.InvocationTargetException ex)
    ex.getTargetException().printStackTrace();
    ============================================
    but compiler gives this error
    exception java.lang.reflect.InvocationTargetException is never thrown
    in the body of corresponding statement
    I know for sure that the exception is thrown there.
    Any help will be greatly appreciated.
    TIA

    How do you use Java in a NT Service? If you are using
    JavaService or some other "multi-purpose" service
    launcher, then you are probably registering the method
    that should be run as service by name, and the
    launcher then calls that method using reflection? My
    guess is that either the code trying to invoke your
    method is throwing the exception because of some
    environment problem - or your code throws some other
    exception that is then translated to
    InvocationTargetException on their end of invoke().
    Hard to say without more information though.
    Br - J
    We use com.ms.service package.
    It works fine. The service monitors MQSeries queue and creates files out of messages. We wanted to check for duplicate contents and hence
    I'm trying to get to existing messages.

  • Exception raised: java.lang.reflect.InvocationTargetException

    Hi Everybody,
    I run into the below problem while trying to set the security realm in the WebLogic
    sp8 examples. I tried to find information about it on this newsgroup but so I couldn't
    find any helpful solutions. Please, help.
    Tue Apr 17 11:59:20 GMT 2001:<I> <WebLogicServer> Server loading from weblogic.class.path.
    EJB redeployment enabled.
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException: java.lang.NoClassDefFoundError: weblogic/security/acl/DefaultGroupImpl
    at weblogic.utils.reuse.Pool.getInstance(Pool.java:57)
    at examples.security.rdbmsrealm.RDBMSRealm.getDelegate(RDBMSRealm.java:113)
    at examples.security.rdbmsrealm.RDBMSRealm.getPermission(RDBMSRealm.java:512)
    at weblogic.security.acl.CachingRealm.getPermission(CachingRealm.java:1713)
    at weblogic.security.acl.CachingRealm.setupAcls(CachingRealm.java, Compiled
    Code)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:706)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:564)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1759)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)
    java.lang.NoClassDefFoundError: weblogic/security/acl/DefaultGroupImpl
    at weblogic.utils.reuse.Pool.getInstance(Pool.java:57)
    at examples.security.rdbmsrealm.RDBMSRealm.getDelegate(RDBMSRealm.java:113)
    at examples.security.rdbmsrealm.RDBMSRealm.getPermission(RDBMSRealm.java:512)
    at weblogic.security.acl.CachingRealm.getPermission(CachingRealm.java:1713)
    at weblogic.security.acl.CachingRealm.setupAcls(CachingRealm.java, Compiled
    Code)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:706)
    at weblogic.security.acl.CachingRealm.<init>(CachingRealm.java:564)
    at weblogic.t3.srvr.T3Srvr.initializeSecurity(T3Srvr.java:1759)
    at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java, Compiled Code)
    at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:827)
    at java.lang.reflect.Method.invoke(Native Method)
    at weblogic.Server.startServerDynamically(Server.java:99)
    at weblogic.Server.main(Server.java:65)
    at weblogic.Server.main(Server.java:55)

    "WebLogic" <[email protected]> wrote:
    The WebLogic Server did not start up properly.
    Exception raised: java.lang.reflect.InvocationTargetException
    java.lang.reflect.InvocationTargetException: java.lang.NoSuchMethodErrorSame with me.
    I also noted, that in a file "clodscape.LOG" there are messages "4.10.2000 15:12 Thread[JDBCStartupThread,6,main] Thank you for your interest in Cloudscape products. Your evaluation license has expired. Please contact Cloudscape sales at 1-888-59JAVA1 or [email protected]"
    Maybe this is the source of the problem, not NT SP6?
    - Juha

  • JSWDP 1.1 - wsdeploy error: java.lang.reflect.InvocationTargetException

    Ok - All help is really appreciated!
    I'll get the configuration questions out of the way first...I'm using:
    JWSDP 1.1
    JDK 1.3.1_08
    J2EE 1.3.1
    I've been able to successfully run the "Hello World" example provided by the JWSDP 1.1 tutorial. I'm now trying to generate a WSDL using an interface that had worked with JWSDP 1.0 EA, but I'm getting the following error:
    process-war:
    [echo] Running wsdeploy....
    [echo] CLASSPATH=C:\ATG\DAS6.2.0\DAS\lib\classes.jar:D:\j2sdkee1.3.1\lib\j2ee.jar:C:\ATG\ATG6.2.0\CIWS\lib\cacjdbc.jar:C:\ATG\ATG6.2.0\CIWS\lib\CIWS_JAXB.jar:C:\ATG\ATG6.2.0\CIWS\lib\oromatcher.jar:C:\ATG\ATG6.2.0\CIWS\lib\classes12.zip:C:\ATG\ATG6.2.0\CIWS\j2ee-apps\ciws\java-code:C:\ATG\ATG6.2.0\CIWS\j2ee-apps\ciws\web-app\WEB-INF\classes
    [exec] info: created temporary directory: D:\ciws-ws\ciws\build\wsdeploy-generated\jaxrpc-deploy-615014
    [exec] java.lang.reflect.InvocationTargetException: java.lang.NoClassDefFoundError: javax/ejb/CreateException
    [exec] at java.lang.Class.getMethods0(Native Method)
    [exec] info: processing endpoint: ciws
    [exec] at java.lang.Class.getMethods(Class.java:737)
    [exec] at com.sun.xml.rpc.processor.modeler.rmi.RmiModeler.processInterface(RmiModeler.java:270)
    [exec] at com.sun.xml.rpc.processor.modeler.rmi.RmiModeler.modelPort(RmiModeler.java:232)
    [exec] at com.sun.xml.rpc.processor.modeler.rmi.RmiModeler.buildModel(RmiModeler.java:195)
    [exec] at com.sun.xml.rpc.processor.config.ModelInfo.buildModel(ModelInfo.java:85)
    [exec] at com.sun.xml.rpc.processor.Processor.runModeler(Processor.java:61)
    [exec] at com.sun.xml.rpc.tools.wscompile.CompileTool.run(CompileTool.java:368)
    [exec] at com.sun.xml.rpc.tools.wsdeploy.DeployTool.process(DeployTool.java:259)
    [exec] at com.sun.xml.rpc.tools.wsdeploy.DeployTool.process(DeployTool.java:229)
    [exec] at com.sun.xml.rpc.tools.wsdeploy.DeployTool.run(DeployTool.java:182)
    [exec] at com.sun.xml.rpc.util.ToolBase.run(ToolBase.java:41)
    [exec] at com.sun.xml.rpc.tools.wsdeploy.Main.main(Main.java:24)
    [exec] at java.lang.reflect.Method.invoke(Native Method)
    [exec] at org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    [exec] Result: 1
    Here are my configuration files:
    common/build.properties
    #  This file contains properties common to the tutorial examples
    #  for JAX-RPC.
    jwsdp.home=D:\\jwsdp-1.1
    tut-root=${jwsdp.home}/docs
    # tut-root=D:\\wspack-docs
    build=build
    url=http://localhost:8080/manager
    jaxrpc.home=${jwsdp.home}/jaxrpc-1.0.3
    jaxp.holme=${jwsdp.home}/jaxp-1.2.2
    saaj.home=${jwsdp.home}/saaj-1.1.1
    wscompile-path=${jaxrpc.home}/bin
    rlib=${jaxrpc.home}/lib
    plib=${jaxp.home}/lib
    pelib=${jaxp.home}/lib/endorsed
    slib=${saaj.home}/lib
    wlib=${jwsdp.home}/jwsdp-shared/lib
    rjars=${rlib}/jaxrpc-api.jar:${rlib}/jaxrpc-ri.jar
    pjars=${plib}/jaxp-api.jar
    pejars=${pelib}/xercesImpl.jar:${pelib}/xalan.jar:${pelib}/xsltc.jar:${pelib}/dom.jar:${pelib}/sax.jar
    sjars=${slib}/saaj-api.jar:${slib}/saaj-ri.jar:${slib}/dom4j.jar
    wjars=${wlib}/jax-qname.jar:${wlib}/commons-logging.jar:${wlib}/mail.jar:${wlib}/activation.jar
    jwsdp-jars=${rjars}:${pjars}:${pejars}:${sjars}:${wjars}
    build.properties
    # This file is referenced by the build.xml file.
    atg-home=C:\\ATG
    ciws-home=${atg-home}\\ATG6.2.0\\CIWS
    example=ciws
    context-path=ciws
    package-name=/com/enc/ciws/wrapper
    client-class=com.enc.ciws.client.CiwsClient
    client-jar=${example}-client.jar
    portable-war=${example}-portable.war
    deployable-war=${context-path}.war
    # ORIGINAL --> war-path=${tut-root}/tutorial/examples/jaxrpc/${example}/dist/${deployable-war}
    war-path=D:\\ciws-ws\\ciws\\dist\\${deployable-war}
    atg-das-jar=${atg-home}\\DAS6.2.0\\DAS\\lib\\classes.jar
    j2ee-jar=D:\\j2sdkee1.3.1\\lib\\j2ee.jar
    ciws-jars=${ciws-home}\\lib\\cacjdbc.jar:${ciws-home}\\lib\\CIWS_JAXB.jar:${ciws-home}\\lib\\oromatcher.jar:${ciws-home}\\lib\\classes12.zip
    ciws-classes=${ciws-home}\\j2ee-apps\\ciws\\java-code:${ciws-home}\\j2ee-apps\\ciws\\web-app\\WEB-INF\\classes
    custom-classpath=${atg-das-jar}:${j2ee-jar}:${ciws-jars}:${ciws-classes}
    build.xml
    <!DOCTYPE project [
      <!ENTITY commonTargets SYSTEM "./ciws-targets.xml">
    ]>
    <project name="JAX-RPC Tutorial" default="build" basedir=".">
      <property file="${user.home}/build.properties"/>
      <property file="../common/build.properties"/>
      <property file="build.properties"/>
      &commonTargets; <!-- The ant targets are in ../common/targets.xml -->
      <target name="build" depends="build-service"
         description="Executes the targets needed to build the service.">
      </target>
    </project>
    config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration
         xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
         <wsdl location="http://localhost:8080/ciws/ciws?WSDL" packageName="com.enc.ciws.wrapper"/>
    </configuration>
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">
    <web-app>
      <display-name>CIWS</display-name>
      <description>A web application containing a JAX-RPC endpoint for CIWS</description>
      <session-config>
        <session-timeout>60</session-timeout>
      </session-config>
    </web-app>
    jaxrpc-ri.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <webServices
        xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/dd"
        version="1.0"
        targetNamespaceBase="http://com.test/wsdl"
        typeNamespaceBase="http://com.test/types"
        urlPatternBase="/ws">
        <endpoint
            name="ciws"
            displayName="CIWS"
            description="A web service to inquiry about claims"
            interface="com.enc.ciws.wrapper.CIWSWrapper" 
            implementation="com.enc.ciws.wrapper.CIWSWrapperImpl"/>
        <endpointMapping endpointName="ciws" urlPattern="/ciws"/>
    </webServices>
    Snippets of ant script (ciws-targets.xml)
      <target name="process-war" depends="set-ws-scripts"
          description="Runs wsdeploy to generate the ties and create a deployable WAR file">
          <echo message="Running wsdeploy...."/>
          <echo message="CLASSPATH=${custom-classpath}"/>
          <delete file="dist/${deployable-war}" />
       <exec executable="${wsdeploy}">
          <arg line="-verbose"/>
          <arg line="-keep"/>
          <arg line="-tmpdir"/>
          <arg line="${build}/wsdeploy-generated"/>
          <arg line="-classpath"/>
          <arg line="${custom-classpath}"/>
          <arg line="-o"/>
          <arg line="dist/${deployable-war}"/>
          <arg line="dist/${portable-war}"/>
        </exec>
      </target>
    And finally the code!! (I know, I know...probably not good with all the exceptions)
    package com.enc.ciws.wrapper;
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface CIWSWrapper extends java.rmi.Remote {
        String getAdjusterInfo(String claimInquiryRS) throws java.rmi.RemoteException;
        String getClaimDetail(String requestString)
            throws
                java.rmi.RemoteException,
                java.io.IOException,
                javax.xml.bind.ValidationException,
                javax.xml.bind.UnmarshalException,
                javax.ejb.CreateException,
                javax.naming.NamingException,
                com.enc.ciws.utils.exception.InvalidRequestException;
        String getClaimHistory(String requestString) throws java.rmi.RemoteException;
        String getClaimSummaryByPolicyHolderInfo(String claimInquiryRS)
            throws
                java.rmi.RemoteException,
                java.io.IOException,
                java.text.ParseException,
                javax.xml.bind.ValidationException,
                javax.xml.bind.UnmarshalException,
                javax.ejb.CreateException,
                javax.naming.NamingException,
                com.enc.ciws.utils.exception.InvalidRequestException;
        String getClaimSummaryByPolicyNumber(String claimInquiryRS)
            throws
                java.rmi.RemoteException,
                java.io.IOException,
                javax.xml.bind.ValidationException,
                javax.xml.bind.UnmarshalException,
                javax.ejb.CreateException,
                javax.naming.NamingException,
                com.enc.ciws.utils.exception.InvalidRequestException;
        String getClaimSummaryByStatus(String claimInquiryRS)
            throws
                java.rmi.RemoteException,
                java.io.IOException,
                java.text.ParseException,
                javax.xml.bind.ValidationException,
                javax.xml.bind.UnmarshalException,
                javax.ejb.CreateException,
                javax.naming.NamingException,
                com.enc.ciws.utils.exception.InvalidRequestException;
        public String getPaymentDetail(String requestString)
            throws java.rmi.RemoteException;
        String getSubroDetail(String requestString)
            throws
                java.rmi.RemoteException,
                java.io.IOException,
                javax.xml.bind.ValidationException,
                javax.xml.bind.UnmarshalException,
                javax.ejb.CreateException,
                javax.naming.NamingException,
                com.enc.ciws.utils.exception.InvalidRequestException;
    }

    try just using the wscompile.bat/.sh commandline tool first. It will automatically setup the classes used
    by wscompile and jaxrpc, you will only then need to specify the classpath to your classes on the
    commandline. This might help you isolate the problem so you can fix the ant tasks.

  • Axis error: java.lang.reflect.InvocationTargetException

    Hello!
    I have seen this question, asked many times, but I couldn't find any suitable solution for my problem. I am deploying a web service with Apache Tomcat 5.5.27 and Axis 1.4
    When I make a call to the service in this way:
    try{
                   call.setTargetEndpointAddress(new URL(endpoint));
                   }catch(Throwable e)
                        System.out.println("ERROR: " + e.getMessage() + " CAUSE: " + e.getCause());
                        e.printStackTrace();
                        return;
                   call.setOperationName(new QName("bookTicket"));
                   call.addParameter("flightIDs",XMLType.SOAP_ARRAY, ParameterMode.IN);
                   call.setReturnType(XMLType.XSD_STRING);
                   String reservationID = null;
                   try{
                        reservationID = (String)call.invoke(new Object[] {params});
                   }catch(Throwable e)
                        System.out.println("ERROR: " + e.getMessage() + " CAUSE: " + e.getCause());
                        e.printStackTrace();
                        return;
                   }I get the following error:
    ERROR: java.lang.reflect.InvocationTargetException CAUSE: null
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.lang.reflect.InvocationTargetException
    faultActor:
    faultNode:
    faultDetail:
         {http://xml.apache.org/axis/}hostname:andr33a
    java.lang.reflect.InvocationTargetException
         at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222)
         at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
         at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.endElement(AbstractSAXParser.java:601)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanEndElement(XMLDocumentFragmentScannerImpl.java:1774)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDriver.next(XMLDocumentFragmentScannerImpl.java:2930)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl.next(XMLDocumentScannerImpl.java:648)
         at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.next(XMLNSDocumentScannerImpl.java:140)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:510)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:807)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:737)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:107)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1205)
         at com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl$JAXPSAXParser.parse(SAXParserImpl.java:522)
         at javax.xml.parsers.SAXParser.parse(SAXParser.java:395)
         at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
         at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
         at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
         at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
         at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
         at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
         at org.apache.axis.client.Call.invoke(Call.java:2767)
         at org.apache.axis.client.Call.invoke(Call.java:2443)
         at org.apache.axis.client.Call.invoke(Call.java:2366)
         at org.apache.axis.client.Call.invoke(Call.java:1812)
         at client.AirplaneServiceClient.main(AirplaneServiceClient.java:113)The signature of the method I am calling looks like this:
    public String bookTicket(String [] flightIDs) My CLASSPATH is set corectly and all the jars are in the right places (or at least most of them), because when I call any other method of my service, it works.
    If anyone has encountered the same problem, any help would be appreciated.
    I have tried to look in tomcat logs, but I didn't find anything relevant.
    Thanks and looking forward for some answers.

    Steven,
    Yes that is correct I receive this error message the moment I'am running JAG
    This is the stack trace as you described:
    Loading JHeadstart Addins
    Addin | Version | Status
    JHeadstart Shared Components| 11.1.1.0.31| Loaded
    JHeadstart Utilities| 11.1.1.0.31| Loaded
    JHeadstart Application Generator| 11.1.1.0.31| Loaded
    JHeadstart Development Environment| 11.1.1.0.31| Loaded
    JHeadstart Forms2ADF Generator| 11.1.1.0.31| Loaded
    20:42:35 INFO (CollectionFactory) -Commons Collections 3.x available
    20:42:35 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    20:42:35 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    20:42:35 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.set.ListOrderedSet]
    JHeadstart Debugger: no debug session exists with key: "JAG"
    20:42:42 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    20:42:42 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    20:42:42 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.set.ListOrderedSet]
    20:42:44 DEBUG (ReloadableResourceBundleMessageSource) -Clearing entire resource bundle cache
    20:42:45 DEBUG (CollectionFactory) -Creating [org.apache.commons.collections.map.LinkedMap]
    JagRunner$1[102]: Invoking garbage collector
    Regards,
    Menk

  • FaultString: java.lang.reflect.InvocationTargetException

    Well, a component that uses webservice to retieve data is failing with the following exception.
    This used to work before.
    What exactly is the faultString: java.lang.reflect.InvocationTargetException telling me?
    Any hints would be very much appreciated.
    AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.lang.reflect.InvocationTargetException
    faultActor:
    faultNode:
    faultDetail:
    {http://xml.apache.org/axis/}stackTrace: AxisFault
    faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException
    faultSubcode:
    faultString: java.lang.reflect.InvocationTargetException
    faultActor:
    faultNode:
    faultDetail:
    java.lang.reflect.InvocationTargetException
    at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:251)
    at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:168)
    at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:1001)
    at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
    at org.apache.xerces.impl.XMLNamespaceBinder.handleEndElement(Unknown Source)
    at org.apache.xerces.impl.XMLNamespaceBinder.endElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
    at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at javax.xml.parsers.SAXParser.parse(Unknown Source)
    at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:242)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:538)
    at org.apache.axis.Message.getSOAPEnvelope(Message.java:377)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2545)
    at org.apache.axis.client.Call.invoke(Call.java:2515)
    at org.apache.axis.client.Call.invoke(Call.java:2210)
    at org.apache.axis.client.Call.invoke(Call.java:2133)
    at org.apache.axis.client.Call.invoke(Call.java:1656)
    at kat.publish.KeywordSoapBindingStub.getActiveKeywords(KeywordSoapBindingStub.java:142)
    at net.earthlink.data.KATDataStrategyImpl.getKeywords(Unknown Source)
    at net.earthlink.data.KATDataStrategyImpl$KatUpdateTimerTask.run(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    java.lang.reflect.InvocationTargetException
    at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:251)
    at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:168)
    at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:1001)
    at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
    at org.apache.xerces.impl.XMLNamespaceBinder.handleEndElement(Unknown Source)
    at org.apache.xerces.impl.XMLNamespaceBinder.endElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanEndElement(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
    at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at javax.xml.parsers.SAXParser.parse(Unknown Source)
    at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:242)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:538)
    at org.apache.axis.Message.getSOAPEnvelope(Message.java:377)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2545)
    at org.apache.axis.client.Call.invoke(Call.java:2515)
    at org.apache.axis.client.Call.invoke(Call.java:2210)
    at org.apache.axis.client.Call.invoke(Call.java:2133)
    at org.apache.axis.client.Call.invoke(Call.java:1656)
    at kat.publish.KeywordSoapBindingStub.getActiveKeywords(KeywordSoapBindingStub.java:142)
    at net.earthlink.data.KATDataStrategyImpl.getKeywords(Unknown Source)
    at net.earthlink.data.KATDataStrategyImpl$KatUpdateTimerTask.run(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    MH

    Ok, problem found!
    All the libraries that are being used by the web service must be placed in the WEB-INF/lib folder.
    Hope I help.

  • Error while updating Targets-Server : java.lang.reflect.InvocationTargetException

    Hi,
    I got this error below when i try to deploy my ejb.It's happen when i select the
    targets-server in weblogic console. Can anyone help me please?
    Thank you in advance.
    Sukanya
    java.lang.reflect.InvocationTargetException: javax.management.RuntimeOperationsException:
    RuntimeException thrown by the invoke method of the Dynamic MBean
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1557)
         at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:468)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:209)
         at $Proxy10.addDeployment(Unknown Source)
         at weblogic.management.internal.DynamicMBeanImpl.updateDeployments(DynamicMBeanImpl.java:1516)
         at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:895)
         at weblogic.management.internal.DynamicMBeanImpl.setAttribute(DynamicMBeanImpl.java:847)
         at weblogic.management.internal.ConfigurationMBeanImpl.setAttribute(ConfigurationMBeanImpl.java:295)
         at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1356)
         at com.sun.management.jmx.MBeanServerImpl.setAttribute(MBeanServerImpl.java:1331)
         at weblogic.management.internal.MBeanProxy.setAttribute(MBeanProxy.java:322)
         at weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:204)
         at $Proxy76.setTargets(Unknown Source)
         at java.lang.reflect.Method.invoke(Native Method)
         at weblogic.management.console.info.FilteredMBeanAttribute.doSet(FilteredMBeanAttribute.java:92)
         at weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMBeanAction.java:135)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    --------------- nested within: ------------------
    weblogic.management.console.utils.SetException: An error occurred while updating
    Targets-Server on Proxy for mydomain:Application=Wallet,Name=wallet-ejb,Type=EJBComponent
    - with nested exception:
    [java.lang.reflect.InvocationTargetException - with target exception:
    [javax.management.RuntimeOperationsException: RuntimeException thrown by the invoke
    method of the Dynamic MBean]]
         at weblogic.management.console.actions.mbean.DoEditMBeanAction.perform(DoEditMBeanAction.java:151)
         at weblogic.management.console.actions.internal.ActionServlet.doAction(ActionServlet.java:171)
         at weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2495)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2204)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    Hi Sukanya,
    Could you please tell me how u solved this error?
    I am also getting the same error!!!
    Sherry.

  • Java ME SDK 3.0 doesn't start - java.lang.reflect.InvocationTargetException

    I want to migrate from NetBeans 6.7.1 to Java ME SDK 3.0 for several reasons.
    However when trying to start it hangs for a couple of minutes and then this message come up in a pop-up box:
    "A java.lang.reflect.InvocationTargetException exception has occurred. Click Show Details or see the messages.log file located in your C:\Documents and Settings\admin\javame-sdk\toolbar\3.0\var\log folder."
    Log file contant here. I' have read the UsersManual but this seems different.
    I run Windows XP Pro SP3. I have a F-Secure Internet 2010 FW application. Please enlighten me on what setting I shoud set in the FW or other part of my system.
    BR
    /Per
    Log Session: Friday, January 15, 2010 4:02:04 PM CET
    System Info: Product Version = Java(TM) ME Platform SDK 3.0
    Operating System = Windows XP version 5.1 running on x86
    Java; VM; Vendor = 1.6.0_17; Java HotSpot(TM) Client VM 14.3-b01; Sun Microsystems Inc.
    Runtime = Java(TM) SE Runtime Environment 1.6.0_17-b04
    Java Home = C:\Program Files\Java\jdk1.6.0_17\jre
    System Locale; Encoding = sv_SE (cdctoolbar); Cp1252
    Home Directory = C:\Documents and Settings\admin
    Current Directory = C:\Java_ME_platform_SDK_3.0\bin
    User Directory = C:\Documents and Settings\admin\javame-sdk\toolbar\3.0
    Installation = C:\Java_ME_platform_SDK_3.0\toolbar\javamesdk1
    C:\Java_ME_platform_SDK_3.0\toolbar\ide10
    C:\Java_ME_platform_SDK_3.0\toolbar\java2
    C:\Java_ME_platform_SDK_3.0\toolbar\mobility8
    C:\Java_ME_platform_SDK_3.0\toolbar\profiler2
    C:\Java_ME_platform_SDK_3.0\toolbar\platform9
    Boot & Ext. Classpath = C:\Program Files\Java\jdk1.6.0_17\jre\lib\resources.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\rt.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\sunrsasign.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\jce.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.6.0_17\jre\classes;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.6.0_17\jre\lib\ext\sunpkcs11.jar
    Application Classpath = C:\Java_ME_platform_SDK_3.0\toolbar\platform9\lib\boot.jar;C:\Java_ME_platform_SDK_3.0\toolbar\platform9\lib\org-openide-modules.jar;C:\Java_ME_platform_SDK_3.0\toolbar\platform9\lib\org-openide-util.jar;C:\Program Files\Java\jdk1.6.0_17\lib\dt.jar;C:\Program Files\Java\jdk1.6.0_17\lib\tools.jar
    Startup Classpath = C:\Java_ME_platform_SDK_3.0\toolbar\platform9\core\core.jar;C:\Java_ME_platform_SDK_3.0\toolbar\platform9\core\org-openide-filesystems.jar;C:\Java_ME_platform_SDK_3.0\toolbar\javamesdk1\core\locale\core_cdctoolbar.jar
    VARNING
    --- cut of Warnings and Info---
    [ 680219] ERROR - un.jme.toolkit.bootstrap.Batch - Problem calling start() on DeviceManagerConnection
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.jme.toolkit.bootstrap.Batch.invoke(Unknown Source)
         at com.sun.jme.toolkit.bootstrap.Batch.tryInvoke(Unknown Source)
         at com.sun.jme.toolkit.bootstrap.Batch.startObjects(Unknown Source)
         at org.netbeans.modules.javame.common.container.Module.start(Module.java:21)
         at org.netbeans.modules.javame.common.container.ContainerSupport.startModule(ContainerSupport.java:67)
         at org.netbeans.modules.javame.common.container.devicemanager.DevicemanagerHelper.getDeviceManagerConnection

    I have tried to switch off the FW -> the SDK 3.0 hangs in the initial startup splash. The red line stops at ca 75% done
    I have tried to open the port 1299 -> the SDK 3.0 hangs in the initial startup splash. The red line stops at ca 75% done
    /Per

  • Work Manager 6.1: java.lang.reflect.InvocationTargetException

    Hi all,
    Please, I need your help with this issue. I installed Work Manager 6.1 over SMP 3.0.3.
    I added a field to complex table ctCatalogGroup. The field was already contemplated on the backend so I only had to add it in Agentry. It worked fine for a while but suddenly it started giving me this error during transmit every time since then:
    My Java class looks like this:
    And I added the field in Agentry accordingly:
    Config Panel parameters for this are:
    The first thing I noticed is this error in the SMP log:
    2015/04/23 08:29:12.540: + WorkFunction=00000001496AF658
    2015/04/23 08:29:12.540: + User=invpos_out30
    2015/04/23 08:29:12.540: + Server=Agentry
    2015/04/23 08:29:12.540: + Complex Table=ctcatalogprofile
    2015/04/23 08:29:12.540: Update BHT 'ctcatalogprofile' for 'User': Client last data update 12:00:01 a.m. 01/01/1900
    2015/04/23 08:29:12.540: Update BHT 'ctcatalogprofile' for 'User': Getting back end connections
    2015/04/23 08:29:12.540: client last data update=12:00:01 a.m. 01/01/1900
    2015/04/23 08:29:12.540: Backend step is configured as a Java Class; using Java class com.syclo.sap.ComplexTable
    2015/04/23 08:29:12.540: Using Java Class com.syclo.sap.ComplexTable for ComplexTable
    2015/04/23 08:29:12.555: + BackEnd=Java-SAPJavaConnection
    2015/04/23 08:29:12.555: Exception while starting complex table update for table 'ctcatalogprofile': JavaBackEndError: JAVA EXCEPTION CAUGHT: java.lang.reflect.InvocationTargetException in AgentryComplexTableFactory::createComplexTable at AgentryComplexTableFactory.cpp:129
    As well as this other one in the events.log:
    04/23/2015 08:23:32, 0, 20, 16, Thr 9240, Threads in thread pool 'Runtime' expanded to 2. Adding thread 3580
    04/23/2015 08:25:13, 1, 29, 1, Thr 3580, java/net/SocketException, java.net.SocketException: Connection reset by peer: socket write errorAngelJavaStreamsConnection.cpp#189:AngelJavaStreamsConnection::handleException
    04/23/2015 08:25:13, 1, 4,3221225477, Thr 3580, EXCEPTION_ACCESS_VIOLATION, 000000018000DE02, 0, R, 0000000000000000, ..\agentry\threadManager.cpp#354:ThreadManager::WorkerThread::function
    04/23/2015 08:25:27, 0, 0, 6, Thr 7572, invpos_out30: relogin failed at ANGEL: B4A91958-A9A4-46F8-B323-20C61E7E76E8; attempt from ANGEL: 97E1F7AF-4E38-4ECB-8D3C-2E2D4AFEA2AE
    04/23/2015 08:25:56, 0, 0, 6, Thr 7572, invpos_out30: relogin failed at ANGEL: B4A91958-A9A4-46F8-B323-20C61E7E76E8; attempt from ANGEL: 15FAC37B-A017-46AB-B528-B2B4610423CC
    04/23/2015 08:26:27, 0, 0, 6, Thr 7572, invpos_out30: relogin failed at ANGEL: B4A91958-A9A4-46F8-B323-20C61E7E76E8; attempt from ANGEL: BFDB1CBE-12D9-4A66-8EBA-A855B2B90D23
    04/23/2015 08:29:12, 1, 20, 18, Thr 3580, JAVA EXCEPTION CAUGHT: java.lang.reflect.InvocationTargetException
    I would like to know if anyone faced something like this before or any suggestions on how to dig deeper for a solution. What confuses me is that it worked ok at first and now I can no longer start the client. That is as far as I can get.
    Best regards!
    Leonardo.

    Hi,
    Can you modify the step
    public void setProperties(Table tbl) throws Exception {
            super.setProperties(tbl);
            setShortText(tbl.getString("KURZTEXT")).trim());
    to
    public void setProperties(Table tbl) throws Exception {
            super.setProperties(tbl);
            setShortText(tbl.getString("KURZTEXT"));
    Thanks & Regards,
    Sravanthi

Maybe you are looking for