Re: java.lang.reflect.InvocationTargetException occurred when using Configure.getString()

2009-05-07 Thread Norio Sasagawa
Sorry. Test Client is not correct. The correct is as follows. -< TestClient>- import org.apache.axis.client.Call; import org.apache.axis.client.Service; import org.apache.axis.encoding.XMLType; import org.apache.axis.utils.Options; import javax.xml.namespace.QName; import javax.xml.rpc.Pa

Re: java.lang.reflect.InvocationTargetException

2008-03-12 Thread Andreas Veithen
Ajay, I think the stack trace is quite clear: java.io.EOFException at java.io.DataInputStream.readFully(DataInputStream.java:178) at com.ibm.mq.MQMessage.readStringOfByteLength(MQMessage.java: 583) at org.mibs.MQCommunicator.GetMsg(MQCommunicator.java:87) at org.mib

Re: java.lang.reflect.InvocationTargetException

2007-06-15 Thread Glen Mazza
Pardon the non-answer, but since you're new to web services and Axis anyway, why not just use Axis2 (which is much different and better) instead of trying to figure out how to get that Model T to work. Your JDK and servlet container below certainly support it. http://ws.apache.org/axis2/1_2/quick

Re: java.lang.reflect.InvocationTargetException on WS Invoke

2007-01-06 Thread Garth Keesler
Solved. Eclipse puts required jar files in Libraries under Java Resources: src but they also have to go in WebContent/WEB-INF/lib. Makes sense since that is where the war file is created from. Thanx, Garth Garth Keesler wrote: Dumb Q but I'm a noob. I've deployed several very simple services

Re: java.lang.reflect.InvocationTargetException

2006-01-21 Thread Jim Azeltine
I have a suggestion for you. I have found this approach to be invaluable to me. I am using Eclipse 3.1 with the WTP 1.0M8 plugin package. I use the "Bottom up" method of creating a new web service from a Java class. Once you get the service built (which is automatic), it is published to the local T

Re: java.lang.reflect.InvocationTargetException

2005-09-04 Thread Mike Woinoski
Andy, Do you really want a message style service? Or is your true goal to have a document/literal service where you have control over the wsdl and schema? Axis message-style services are a real pain because (a) you have to use SAAJ, and (b) they're not portable to other Java web service toolkit

Re: java.lang.reflect.InvocationTargetException

2005-09-02 Thread Robina Brintha
I have fixed it.Thanks for suggestions provided. On 9/2/05, stud aosoa <[EMAIL PROTECTED]> wrote: Thanks for your reply.Actually I dont think error in my webservice.Because I have the running version of same setup in my laptop .But the one in my office PC stopped working suddenly.Its strange.:(

Re: java.lang.reflect.InvocationTargetException

2005-09-02 Thread stud aosoa
Thanks for your reply.Actually I dont think error in my webservice.Because I have the running version of same setup in my laptop .But the one in my office PC stopped working suddenly.Its strange.:( On 9/2/05, PrioCon Development <[EMAIL PROTECTED]> wrote: Hi,   I've encountered this issue sev

RE: java.lang.reflect.InvocationTargetException

2005-09-02 Thread PrioCon Development
Hi,   I've encountered this issue several times myself. It was a while ago, but I think it was (in my situation) because we didn't added a new WS class type to the wsdd (axis) and that caused a ClassNotFoundException in Tomcat. Anyhow, you should be able to see more details about the error m

Re: java.lang.reflect.InvocationTargetException

2005-09-01 Thread Guy Rixon
On Thu, 1 Sep 2005, A Yang wrote: > Deserialization of the message payload? Yes, either in the service or in the client when the response comes back. > How important are the contents of the SOAP Envelope and Header? i.e., > does the first child element in the body have to have the same name as >

Re: java.lang.reflect.InvocationTargetException

2005-09-01 Thread A Yang
Deserialization of the message payload? How important are the contents of the SOAP Envelope and Header? i.e., does the first child element in the body have to have the same name as the method I wish to invoke? And do I have to keep the namespace in synch with my implementation somehow? I've just

Re: java.lang.reflect.InvocationTargetException

2005-09-01 Thread Guy Rixon
On Wed, 31 Aug 2005, A Yang wrote: > What does the InvocationTargetException usually indicate? It usually means a failure in deserialization. Guy Rixon [EMAIL PROTECTED] Institute of Astronomy Tel: +44-1223-337542 Madingley Road, Cam

Re: java.lang.reflect.InvocationTargetException

2005-08-16 Thread Brice Lambi
I posted this last month. --- Begin Message --- Hello, In case anyone else ever has this problem here is another update. In order to make other webapps work correctly (like gridsphere) I added xercesImpl.jar and xml-apis.jar to the CLASSPATH variable in catalina.sh. So all the edits are:

Re: java.lang.reflect.InvocationTargetException

2005-07-21 Thread Brice
Hello, In case anyone else ever has this problem here is another update. In order to make other webapps work correctly (like gridsphere) I added xercesImpl.jar and xml-apis.jar to the CLASSPATH variable in catalina.sh. So all the edits are: remove all -Djava.endorsed.dir options, and then

Re: java.lang.reflect.InvocationTargetException

2005-07-21 Thread Brice Lambi
Hello, I came up with a hack that works around my problem. When you start tomcat catalina.sh starts with the -Djava.endorsed.dirs=$CATALINA_HOME/common/endorsed, so if you remove this option (about 7 places in the file) then tomcat will not use the xerces parser, but instead use the native

Re: java.lang.reflect.InvocationTargetException

2005-07-20 Thread Thorsten Jungblut
Hi, > Hello, > I'm having some problems getting a service to run on Axis 1.2.1 (Tomcat > 5.0.28, Java 1.5.03, Linux). I get the following error message: > > java.lang.reflect.InvocationTargetException > at > org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java