RE: Java2WSDL help

2004-08-25 Thread Anand Natrajan
CTED] : Sent: Wednesday, August 25, 2004 3:05 PM : To: [EMAIL PROTECTED] : Subject: Re: Java2WSDL help : : : As far as I know, Axis 1.2 beta doesn't work with doc/lit. I tried so : many times and I failed to get it going and I filed reports through the : JIRA and no answer so far. I am wai

RE: Java2WSDL help

2004-08-25 Thread Anderson Jonathan
approach. http://marc.theaimsgroup.com/?l=axis-user&m=108437425229600&w=2 -Jon -Original Message- From: Henry Lu [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 25, 2004 3:05 PM To: [EMAIL PROTECTED] Subject: Re: Java2WSDL help As far as I know, Axis 1.2 beta doesn't work wi

Re: Java2WSDL help

2004-08-25 Thread Henry Lu
As far as I know, Axis 1.2 beta doesn't work with doc/lit. I tried so many times and I failed to get it going and I filed reports through the JIRA and no answer so far. I am waiting for the next release to resolve this very, very important issue. -Henry >>> [EMAIL PROTECTED] 8/25/2004 2:36:19 PM

Java2WSDL help

2004-08-25 Thread
Hi, I want to convert the %AXIS_HOME%/samples/faults example from rcp/encoded to document/literal. I run the java2wsdl command but I get an error. Just curious why is it asking for typemapping info when it's create my wsdl file. Would you know how I can get pass this error message? Thanks a

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
D] > > Sent: Monday, July 12, 2004 3:01 PM > > To: [EMAIL PROTECTED] > > Subject: java2wsdl Help needed > > > > this is a simple java class , I want to generate a > > simple WSDL frile from it and then use that WSDL > to > > create stubs on the

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
IL PROTECTED] > Subject: java2wsdl Help needed > > this is a simple java class , I want to generate a > simple WSDL frile from it and then use that WSDL to > create stubs on the client side . > > The code is as follows > > > > package sample

java2wsdl Help needed

2004-07-12 Thread Mayur Shetye
this is a simple java class , I want to generate a simple WSDL frile from it and then use that WSDL to create stubs on the client side . The code is as follows package samples.myEchoInt; public class EchoIntService { public int echoInt(int i) { ret