Re: Stub ,skeleton generation from WSDL

2007-12-25 Thread Eran Chinthaka
Hi, Jalopy is used to pretty print/format the codes generated from the code generation engine. Seems there is a problem in this pretty printing, but I guess this won't affect the code generation process. Forget about these options and proceed with what you were doing. I think you won't have

RE: Stub ,skeleton generation from WSDL

2007-11-16 Thread amardeep
- From: amardeep [mailto:[EMAIL PROTECTED] Sent: 16 November 2007 07:13 To: axis-user@ws.apache.org Subject: Stub ,skeleton generation from WSDL Hi all, I have a problem with generating stubs and skeleton from WSDL .I am using axis2 v1.3 along with jdk1.6. The problem is too

RE: Stub ,skeleton generation from WSDL

2007-11-16 Thread sietsenicolaas.tenhoeve
2007 07:13 To: axis-user@ws.apache.org Subject: Stub ,skeleton generation from WSDL Hi all, I have a problem with generating stubs and skeleton from WSDL .I am using axis2 v1.3 along with jdk1.6. The problem is too many exceptions are thrown. I couldn't resolve the problem .If anyone could

Stub ,skeleton generation from WSDL

2007-11-15 Thread amardeep
Hi all, I have a problem with generating stubs and skeleton from WSDL .I am using axis2 v1.3 along with jdk1.6. The problem is too many exceptions are thrown. I couldn't resolve the problem .If anyone could please help me out. The exception are: C:\Java\jdk1.5.0_05wsdl2Java -uri

stub + skeleton

2006-02-23 Thread david duncan
just finished axis User Guidewith a few questions :-there are 2 ways to deploy / call a webservice 1) (without using / generatestub + skeletons)-- example1 in axis samples -- call web service using -- Callcall= (Call) service.createCall();2) (generate stub + skeletons using WSDL2Java)

Re: stub + skeleton

2006-02-23 Thread Anne Thomas Manes
The Call interface is a low-level, dynamic interface, and it can be trickier when using complex types. The stub interface is more like RMI. Simpler, easier, but less dynamic and less control.Anne On 2/23/06, david duncan [EMAIL PROTECTED] wrote: just finished axis User Guidewith a few questions :