RE: java2wsdl Help needed

2004-07-13 Thread Bill Werth
: Tuesday, July 13, 2004 6:35 AM To: '[EMAIL PROTECTED]' Subject: RE: java2wsdl Help needed In case you needed it, here is a simple straight-forward example for you to follow: http://www.onjava.com/pub/a/onjava/2002/06/05/axis.html?page=2 -Original Message- From: Mayur Shetye [mai

RE: java2wsdl Help needed

2004-07-13 Thread Meloro, John
: java2wsdl Help needed Thanks Laxma and Christophe. I also have generated similar WSDL using toold from JDeveloper but it also makes another Iservice1.java file. I still am confused about a few things . To implement a webservice >>> 1. I write the interface 2. I write the implementati

RE: java2wsdl Help needed

2004-07-13 Thread Mayur Shetye
Thanks Laxma and Christophe. I also have generated similar WSDL using toold from JDeveloper but it also makes another Iservice1.java file. I still am confused about a few things . To implement a webservice >>> 1. I write the interface 2. I write the implementation of the interface, 3.I gener

Re: java2wsdl Help needed

2004-07-12 Thread Laxma Reddy Dendi
try this java org.apache.axis.wsdl.Java2WSDL -o wp.wsdl -l"http://localhost:8080/axis/services/EchoIntService"; -n "EchoIntService" -p"samples.myEchoInt" "EchoIntService" samples.myEchoInt.EchoIntService from your axis_devhome. regards Laxma --- Mayur Shetye <[EMAIL PROTECTED]> wrote: > this is

RE: java2wsdl Help needed

2004-07-12 Thread Christophe Roudet
Try to turn your service into an interface: package samples.myEchoInt; public interface IEchoIntService { public int echoInt(int i); } Christophe > -Original Message- > From: Mayur Shetye [mailto:[EMAIL PROTECTED] > Sent: Monday, July 12, 2004 3:01 PM > To: [EMAIL PROTECTED] >