Re: java.lang.NullPointerException at org.apache.axis.wsdl.wsdl2ws.WrapperUtils.getClassNameFromParamInfoConsideringArrays

2007-10-12 Thread Kumar.Rajeev
Thanks a lot Nadir for your quick reply Following is the link I am using for axisC++ binary. http://www.apache.org/dist/ws/axis-c/axis-c-win32-current-bin.zip Are you referring to a different link for latest binaries? I also tried to use java org.apache.axis.wsdl.WSDL2Java http://nydebl1:80

Re: java.lang.NullPointerException at org.apache.axis.wsdl.wsdl2ws.WrapperUtils.getClassNameFromParamInfoConsideringArrays

2007-10-12 Thread Nadir Amra
Kumar, Can you please try the latest code in SVN and see what you get? If the problem persists with latest code, open a JIRA and attach WSDL (as simplified as possible). Without my able to recreate the problem there will be no fix, so do not open a JIRA if you cannot attach WSDL. Nadir K. Am

java.lang.NullPointerException at org.apache.axis.wsdl.wsdl2ws.WrapperUtils.getClassNameFromParamInfoConsideringArrays

2007-10-12 Thread Kumar.Rajeev
I get following error while using axis C++ for generating C++ stubs. Any help on this will be highly appreciated. C:\axisC++\lib\axis>java org.apache.axis.wsdl.wsdl2ws.WSDL2Ws -lc++ -sserver -oserver http://nydebl1:8097/wsdl/629/2007/adm/adm.wsdl java.lang.NullPointerException at org.a

Re: re[4]: the problem of enabling MTOM in web service client in AXIS2/C

2007-10-12 Thread donald yang
Hi Dimuthu, Thanks for your reply. The web services that I wrote are POJO web services. Then I deploy them into TOMCAT+AXIS2/JAVA 1.2. best regards yong On 10/12/07, Dimuthu Gamage <[EMAIL PROTECTED]> wrote: > > Hi Yong, > > I thought your service is generated from WSDL2Java for the soap1.1 port

Re: re[4]: the problem of enabling MTOM in web service client in AXIS2/C

2007-10-12 Thread Dimuthu Gamage
Hi Yong, I thought your service is generated from WSDL2Java for the soap1.1 port. If that is what actually happened you may need to regenerate the service with the desired port name. Thanks Dimuthu On 10/12/07, Yong Yang <[EMAIL PROTECTED]> wrote: > > Hi Dimuthu, > > Currently the web service cl

re[4]: the problem of enabling MTOM in web service client in AXIS2/C

2007-10-12 Thread Yong Yang
Hi Dimuthu, Currently the web service client is written using AXIS2/C 1.0 while the web service is written using AXIS2/JAVA 1.2. I didn't use the generated code from the wsdl. What I have done is to change the soap version from 1.2 to 1.1. Then it works. But I set the soap version to 1.2, it d

Re: re[2]: the problem of enabling MTOM in web service client in AXIS2/C

2007-10-12 Thread Dimuthu Gamage
Hi, It seems you have are working on the generated code from the wsdl. In WSDL2Java you can provide the port name with -pn option. So regenerate the code with the port name. Thanks Dimuthu On 10/12/07, Yong Yang <[EMAIL PROTECTED]> wrote: > > Hi Sahan, > > Thank you very much for your reply.

re[2]: the problem of enabling MTOM in web service client in AXIS2/C

2007-10-12 Thread Yong Yang
Hi Sahan, Thank you very much for your reply. When I set the soap version to 1.1, it works fine. Currently I wrote the web service using AXIS2/JAVA 1.2 and the generated wsdl has three ports, HTTP PORT, SOAP1.1, SOAP1.2. That means the web service server also supports SOAP1.2. Th