Re: Axis 2: java.lang.NullPointerException at at org.apache.axis2.description.ClientUtils.inferInTransport(ClientUtils.java :85)

2007-06-13 Thread Manoj KG
Thanks for the quick response. I will try some othe simple examples. Sadly searching for the exception didn't helped me much On 6/14/07, Glen Mazza <[EMAIL PROTECTED]> wrote: Thankfully, there is rarely much new under the sun, especially for a newbie. I would Google parts of your exception me

Re: Axis 2: java.lang.NullPointerException at at org.apache.axis2.description.ClientUtils.inferInTransport(ClientUtils.java :85)

2007-06-13 Thread Glen Mazza
Thankfully, there is rarely much new under the sun, especially for a newbie. I would Google parts of your exception message to see if others had the same problem (and hopefully had gotten an answer.) For example, the strings "org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxEOFException: Unexpect

Re: Axis 2: java.lang.NullPointerException at at org.apache.axis2.description.ClientUtils.inferInTransport(ClientUtils.java :85)

2007-06-13 Thread Manoj KG
Looking for Help :-( On 6/13/07, Manoj KG <[EMAIL PROTECTED]> wrote: Thanks for your tips. I generated my stub classes using wsdl2java in command prompt. Now I am getting a different exception. Can you guide me how to solve this? INFO: Discarding unexpected response: HTTP/1.1 100 Continue o

Re: Axis 2: java.lang.NullPointerException at at org.apache.axis2.description.ClientUtils.inferInTransport(ClientUtils.java :85)

2007-06-13 Thread Manoj KG
Thanks for your tips. I generated my stub classes using wsdl2java in command prompt. Now I am getting a different exception. Can you guide me how to solve this? INFO: Discarding unexpected response: HTTP/1.1 100 Continue org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxEOFException: Unexpected EO

Re: Axis 2: java.lang.NullPointerException at at org.apache.axis2.description.ClientUtils.inferInTransport(ClientUtils.java :85)

2007-06-12 Thread Ajith Ranabahu
Hi, What are the fields in the class CheckDetails ? I have a guess that the issue could be null values inside you instance of CheckDetails so please make sure you fill all the values. The error message however should be improved if this is the case Ajith On 6/12/07, Glen Mazza <[EMAIL PROTECTED

Re: Axis 2: java.lang.NullPointerException at at org.apache.axis2.description.ClientUtils.inferInTransport(ClientUtils.java :85)

2007-06-12 Thread Glen Mazza
I would try to see if your problem is IntelliJ plugin-related or not. If you try to create your client stub using Axis2's WSDL2Java instead of the IntelliJ plugin, do you get the very same error message? Or does it work in that case? Here are the steps I used for creating a simple Axis2 web serv

Axis 2: java.lang.NullPointerException at at org.apache.axis2.description.ClientUtils.inferInTransport(ClientUtils.java :85)

2007-06-12 Thread Manoj KG
Hi All, I am a newbie to Axis 2. My goal is to talk to a web service from my java code. The following are the steps I did 1. Downloaded Axis 2 Intellij Plugin, 2. Created the stubs for my client from wsdl provided by the webservice. 3. Wrote a simple program to talk to the service. T