: 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
: 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
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
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
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]
>