RE: Basic configurations with WSDL2Java generated

2005-02-03 Thread uri
there is no default timeout (i.e. 0). Strange thing, the faq sais otherwise. -Original Message- From: Lam, King [mailto:[EMAIL PROTECTED] Sent: Thu 03 February 2005 19:30 To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Basic configurations with WSDL2Java generated http

RE: Basic configurations with WSDL2Java generated

2005-02-03 Thread Lam, King
http://ws.apache.org/axis/faq.html#faq17 How do I set a timeout when using WSDL2Java stubs? There is a setTimeout method on the org.apache.axis.client.Stub class, which is the class all emitted stubs extend. Here is how to set the timeout given a service named Foo: FooServiceLocator

Generate custom java class name for the stubs, message and locator from WSDL2Java tool

2005-02-03 Thread boutin denis
Hi,   Do you know if it is possible to generate custom java class name for the stubs messages & locator generated by the tool WSDL2Java ?   Regards, Denis.

Basic configurations with WSDL2Java generated

2005-01-31 Thread uri
Hi, I am using axis to code a soap client, a very simple one. I used WSDL2Java so I actually wrote no code. My app is on a web server, so obviously it's multithreaded. I have a few issues I am not sure of - * To what "level" are the generated classes thread safe? Do I need t

WSDL2Java & .NET Web Service

2005-01-31 Thread Jeff Pfost
I am new to Axis and I tried running WSDL2Java on a .NET Web Service and I pick up the error, 'Required element expected in the input XML document'. The Web Service takes 12 parameters passed in an input object.When I looked at the SOAP message the input parameters are all in the rath

proxy server and WSDL2Java

2005-01-25 Thread Stuart Barlow
Using AXIS 1.1 Our webservice client is running in an AppServer. We are using WSDL2Java to generate a set of client bindings. Is it possible to connect via a proxy server without setting the JVM level http.proxyHost System properties? ta, Stuart

Problems with Bean-like class generated from WSDL2Java

2005-01-24 Thread Wiener, Zach
.axis.message.RPCElement.getParams(RPCElement.java:347) at org.apache.axis.client.Call.invoke(Call.java:2272) at org.apache.axis.client.Call.invoke(Call.java:2171) at org.apache.axis.client.Call.invoke(Call.java:1691) How do I properly return a bean object that contains a primitive array? Wh

Uncertainty in using wsdl2java on

2005-01-24 Thread wf
Hi, I am using wsdl2java in Axis 1.2 to generate Java classes from wsdl and schema files. The schema contains:

Re: Maintain session when using stubs generated by WSDL2Java

2005-01-20 Thread Tim K. (Gmane)
rvice. Praveen - Original Message - From: "Tim K. (Gmane)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 20, 2005 1:13 PM Subject: Re: Maintain session when using stubs generated by WSDL2Java On the generated ServiceLocator call setMaintainSession(true)

Re: Maintain session when using stubs generated by WSDL2Java

2005-01-20 Thread Tim K. (Gmane)
Btw, for the first case you need to call setMaintainSession(true) on the Service _before_ you get any Stubs from it. Something like this (assuming AxisTest is my web service): AxisTestServiceLocator ats = new AxisTestServiceLocator(); ats.setMaintainSession(true); // Axis specific AxisTest stub =

Re: Maintain session when using stubs generated by WSDL2Java

2005-01-20 Thread Praveen Peddi
enable cookies for the whole client not for just one service. Praveen - Original Message - From: "Tim K. (Gmane)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 20, 2005 1:13 PM Subject: Re: Maintain session when using stubs generated by WSDL2J

Re: Maintain session when using stubs generated by WSDL2Java

2005-01-20 Thread Tim K. (Gmane)
On the generated ServiceLocator call setMaintainSession(true) Or you can cast the generated Stub to javax.xml.rpc.Stub and then call stub._setProperty(Stub.SESSION_MAINTAIN_PROPERTY, Boolean.TRUE) which is the JAX-RPC way. Both work in Axis, but the first one is Axis specific while the second o

WSDL2Java: Missing classes (no html)

2005-01-20 Thread Michael Müller
Hi, I created a simple wsdl file with gSoap and wanted to create the java classes with WSDL2Java. But WSDL2Java does not create the method. What´s wrong with the WSDL file? Regards, Alex targetNamespace="http://localhost:80/Service.wsdl"; xmlns:tns="http://localhost:

Maintain session when using stubs generated by WSDL2Java

2005-01-20 Thread Praveen Peddi
Hello all, I was using Apache SOAp on client side and Axis on server side. Since ouor soap services need enabling of cookies on client side, I was maintaining juts one Call object and calling Call.setMaintainSession(true). This enables cookies on client side.   Now we are migrating our client

WSDL2Java: Missing classes

2005-01-20 Thread Michael Müller
Hi,I created a simple wsdl file with gSoap and wanted to create the java classes with WSDL2Java. But WSDL2Java does not create the method. What´s wrong with the WSDL file? Regards,Alex  targetNamespace="http://localhost:80/Service.wsdl" xmlns:tns="http://localhost:80/Service.wsdl&

WSDL2Java and Serializer not found problem

2005-01-19 Thread Steve
Hello group, I know there are lots of posts about serializing problems but I couldn't find the answer to mine, yet. I'm using Tomcat 5.5.4 on Fedora2 and Axis1.2 RC2. I would really like to know how one should work with the files generated by WSDL2Java, I'm using the locator

Re: Difficulty changing JVM with WSDL2Java

2005-01-13 Thread ANDREW MICONE
at 1.5.0 wasn't available for this platform...sigh). The site I'm assessing is using https and basic auth for security. Remember that I have access and functionality working with the JVM 1.5.0 version. I played it safe by rerunning the WSDL2Java tool for the client stubs using the older JV

Difficulty changing JVM with WSDL2Java

2005-01-12 Thread Mike Squires
this platform...sigh). The site I'm assessing is using https and basic auth for security. Remember that I have access and functionality working with the JVM 1.5.0 version. I played it safe by rerunning the WSDL2Java tool for the client stubs using the older JVM. I created the new project

Re: Big problem generating correct code with WSDL2Java

2005-01-12 Thread Antonio Ruiz Martínez
Hola! Thanks for your comments. Bill Keese wrote: No such operation 'SignRequest' This happens because your operation is called "getSign" not "SignRequest", right? That's right. At the beginning, it doesn't work because the deploy.wsdd gene

Re: Big problem generating correct code with WSDL2Java

2005-01-11 Thread Bill Keese
No such operation 'SignRequest' This happens because your operation is called "getSign" not "SignRequest", right? I don't really understand how this works though. I thought that you have the same name for the operation and the top element in your request. (Your names are differen

Big problem generating correct code with WSDL2Java

2005-01-11 Thread Antonio Ruiz Martínez
Hello! I'm writing you because I'm having a lot of problems to generate a simple web service from a file .wsdl that is very simple. I wonder if you could help me please. I'm going to try to describe the steps that I'm doing. For this example, I'm using axis1.2rc2. 1) The command that I'm usi

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
Ooops, Thank you, Sorry about this everyone Marika -Original Message- From: Papadakis, Elliot [mailto:[EMAIL PROTECTED] Sent: 11 January 2005 16:06 To: '[EMAIL PROTECTED]' Subject: RE: Axis installation - WSDL2Java It looks like the path to commons-discovery.jar is wron

RE: Axis installation - WSDL2Java

2005-01-11 Thread Papadakis, Elliot
ubject: RE: Axis installation - WSDL2Java Here is the axis bit of my classpath .;C:\axis-1_1\lib\axis.jar;C:\axis-1_1\lib\jaxrpc.jar;C:\axis-1_1\lib\saaj.j ar;C:\axis-1_1\lib\commons-logging.jar;C:\axis-1_1\commons-discovery.jar;C:\ axis-1_1\lib\wsdl4j.jar;C:\axis-1_1\; -Original Message- F

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
PROTECTED] Sent: 11 January 2005 15:30 To: [EMAIL PROTECTED] Subject: RE: Axis installation - WSDL2Java Not to be contrary, but clearly, you do not have them all on the classpath if you are getting this error. :-) Larry >>> [EMAIL PROTECTED] 01/11/05 7:45 AM >>> Thank you all, I am

RE: Axis installation - WSDL2Java

2005-01-11 Thread Larry Meadors
Not to be contrary, but clearly, you do not have them all on the classpath if you are getting this error. :-) Larry >>> [EMAIL PROTECTED] 01/11/05 7:45 AM >>> Thank you all, I am using JBOSS and I do have all of the jars in the class path Exception in thread "main" java.lang.NoClassDefFoundErro

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
Thank you all, I am using JBOSS and I do have all of the jars in the class path   Marika   From: sunil [mailto:[EMAIL PROTECTED] Sent: 11 January 2005 11:39 To: [EMAIL PROTECTED] Subject: Re: Axis installation - WSDL2Java   Hi,  You need to include the following

Re: Axis installation - WSDL2Java

2005-01-11 Thread sunil
-api.jar;.;   I hope that works. - Original Message - From: Marika Ludmann To: [EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 4:57 PM Subject: Axis installation - WSDL2Java I am new to Axis and Web services development. I have however done web development

Re: Axis installation - WSDL2Java

2005-01-11 Thread Larry Meadors
Better yet- look at the WSDL2Java batch file, it has all the dependencies in it. >>> [EMAIL PROTECTED] 01/11/05 6:05 AM >>> Marika Ludmann wrote: > *I am new to Axis and Web services development. I have however done > web development (JSP, Servlets). I also done some we

Re: Axis installation - WSDL2Java

2005-01-11 Thread karim
build, is based on.* *I realise I can use the Axis WSDL2Java tool to create proxy and skeleton classes .* * * *But when I try to run the command and get the exception:* * * *C:\>java org.apache.axis.wsdl* * * *.WSDL2Java MyClient.wsdl* * * *Exception in thread &q

Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
can use the Axis WSDL2Java tool to create proxy and skeleton classes .   But when I try to run the command and get  the exception:   C:\>java org.apache.axis.wsdl   .WSDL2Java MyClient.wsdl   Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/di  

Re: Problem generating code with WSDL2java

2005-01-10 Thread Antonio Ruiz Martínez
Hello! Another time, thanks a lot for you help! It's very useful for me. I did the thing you told me but now I have got another problem. It is the following: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-ins

Re: Problem generating code with WSDL2java

2005-01-07 Thread Anne Thomas Manes
You need to add an definition to the WSDD that maps the message element qname to the method name. See http://www.osmoticweb.com/axis-wsdd/operation.htm - Anne

Re: Problem generating code with WSDL2java

2005-01-05 Thread Antonio Ruiz Martínez
d it with a client but it didn't work, it returned a exception. In the e-mail I have put all the information that I have: the return of the exception, the request, the bad deployment file. Some people recommend me to check if the .wsld is correct and I think the file is correct. I'm very

Re: Problem generating code with WSDL2java

2005-01-05 Thread Anne Thomas Manes
ommend me to check if the .wsld is correct and I think > the file is correct. > I'm very puzzled because I don't know if it is a problem of my .wsdl or > it is a problem of the wsdl2java tool. I'll be very grateful if you can > guide me or give me a tip. > Could you help

Problem generating code with WSDL2java

2005-01-04 Thread Antonio Ruiz Martínez
is correct. I'm very puzzled because I don't know if it is a problem of my .wsdl or it is a problem of the wsdl2java tool. I'll be very grateful if you can guide me or give me a tip. Could you help me, please? Regards, Antonio. The exception: HTTP/1.1 500 Error Intern

Re: Bug in WSDL2JAVA?

2005-01-04 Thread Antonio Ruiz Martínez
To: [EMAIL PROTECTED] Subject: Bug in WSDL2JAVA? Hello! I'm using wsdl2java to generate source code from a wsdl, and I don't known why in the source code and in the deploy file, with qname appears something as ns:>SignResponse when I understand that I shoud be ns:SignRequest. Cou

Re: Bug in WSDL2JAVA?

2005-01-04 Thread Antonio Ruiz Martínez
To: [EMAIL PROTECTED] Subject: Bug in WSDL2JAVA? Hello! I'm using wsdl2java to generate source code from a wsdl, and I don't known why in the source code and in the deploy file, with qname appears something as ns:>SignResponse when I understand that I shoud be ns:SignRequest. Cou

RE: Bug in WSDL2JAVA?

2005-01-04 Thread Bouche Paul
rtínez [mailto:[EMAIL PROTECTED] > Sent: Dienstag, 4. Januar 2005 11:30 > To: [EMAIL PROTECTED] > Subject: Bug in WSDL2JAVA? > > > Hello! > > I'm using wsdl2java to generate source code from a wsdl, > and I don't > known why in the source code

Bug in WSDL2JAVA?

2005-01-04 Thread Antonio Ruiz Martínez
Hello! I'm using wsdl2java to generate source code from a wsdl, and I don't known why in the source code and in the deploy file, with qname appears something as ns:>SignResponse when I understand that I shoud be ns:SignRequest. Could you tell me if there is a bug or I'

Re: WSDL2Java & import

2004-12-29 Thread Anne Thomas Manes
gt; Hello everybody, > > I'm using WSDL2Java and I'd like to know how to import a schema that is not > present in my .wsdl file. I have already imported the schema with "import" > in my .wsdl file but It doesn't work at all. Is there another way to make >

WSDL2Java & import

2004-12-28 Thread laura baño
Hello everybody,   I'm using WSDL2Java and I'd like to know how to import a schema that is not present in my .wsdl file. I have already imported the schema with "import" in my .wsdl file but It doesn't work at all. Is there another way to make it? Could anyone hel

WSDL2JAVA and default constructor with inheritance properties

2004-12-27 Thread Philippe Couas
Title: Message Hi, How force WSDL2Java to create a constructor with inheritance properties ? I have two object : GenObj with getter and setter for code propertites. LteObj extend GenObj and add new properties AXIS utilites don't create default constructor with inheritance properties

[WSDL2Java] missing type or ref attribute for node 'unknown'

2004-12-20 Thread F.K.
Oups ... I've just noticed my WSDL file wasn't attached to the message. --- Hi, I'm having trouble generating a client for my ws. The WSDL is attached to this mail. Here is the error stack trace : WSDL2Java: [java] java.io.IOException: Error: missing type or re

[WSDL2Java] missing type or ref attribute for node 'unknown'

2004-12-20 Thread F.K.
Oups ... I've just noticed my WSDL file wasn't attached to the message. --- Hi, I'm having trouble generating a client for my ws. The WSDL is attached to this mail. Here is the error stack trace : WSDL2Java: [java] java.io.IOException: Error: missing type or re

[WSDL2Java] missing type or ref attribute for node 'unknown'

2004-12-20 Thread toto toto
Hi, I'm having trouble generating a client for my ws. The WSDL is attached to this mail. Here is the error stack trace : WSDL2Java: [java] java.io.IOException: Error: missing type or ref attribute for node 'unknown'

Re: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-18 Thread Anne Thomas Manes
> >> > >> Change the type to an element in the wsdlns namespace, and you > >> shouldn't get the error. > >> > >> As in: > >> > >> > >> > >> > >> > >> > >>

Re: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-18 Thread TMG
error. As in: Sincerely, Tom Gordon FYI: wsdl spec - http://www.w3.org/TR/wsdl#_message Faucher, Christian wrote: Greetings, I am trying to generate Java stubs from WSDL (see attached WSDL). I get the following error from wsdl2java (see below), running Axi

RE: RE : wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-17 Thread Eric Rajkovic
0.1.3 preview [http://www.oracle.com/technology/products/jdev/howtos/10g/WS_WSI/WSI_HowTo.html].   Eric   From: Faucher, Christian [mailto:[EMAIL PROTECTED] Sent: Friday, December 17, 2004 5:53 AMTo: [EMAIL PROTECTED]Subject: RE : wsdl2java does not understand the 'soapAction

creating session aware clients with wsdl2java?

2004-12-17 Thread Andy Kriger
wsdl2java. When I run the Client code, I am seeing new Sessions every call and getMaintainSession shows false. This is the code where I create the binding (using wsdl2java generated classes)... POCServiceLocator loc = new POCServiceLocator(); loc.setMaintainSession(true); POCServiceSoapBindingStub

RE : wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-17 Thread Faucher, Christian
ine-De : Eric Rajkovic [mailto:[EMAIL PROTECTED] Envoyé : jeudi 16 décembre 2004 15:54À : [EMAIL PROTECTED]Objet : RE: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation Christian,   the soapAction attribute is only valid for th

Wsdl2java w/ ParamDesc.setHeader(true) problems

2004-12-17 Thread Michael Merz
Repost with more descriptive header. -michael -Original Message- From: Michael Merz Sent: Friday, December 17, 2004 10:23 AM To: [EMAIL PROTECTED] Cc: Beehive Developers Subject: FW: More Axis questions... I don't understand some of the behavior of wsdl2java when run against a ru

Re: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-17 Thread Anne Thomas Manes
apAction attribute belongs in the wsdl:binding/soap:binding/soap:operation element. Anne On Thu, 16 Dec 2004 09:13:28 -0500, Faucher, Christian <[EMAIL PROTECTED]> wrote: > > Greetings, > > I am trying to generate Java stubs from WSDL (see attached WSDL). I get the > fo

wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-16 Thread Faucher, Christian
Title: Message   Greetings,   I am trying to generate Java stubs from WSDL (see attached WSDL).  I get the following error from wsdl2java (see below), running Axis 1.2 RC2.  My WSDL is generated from XAware product, and seems to work, at least from what WSDL test tools from XAware tell me

RE: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-16 Thread Eric Rajkovic
alidateConformance(Unknown Source) at org.wsi.test.analyzer.BasicProfileAnalyzer.main(Unknown Source)   eric From: Faucher, Christian [mailto:[EMAIL PROTECTED] Sent: Thursday, December 16, 2004 6:13 AMTo: [EMAIL PROTECTED]Subject: wsdl2java does not understand the 'soapAction' attribute in /definitions/po

RE : wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-16 Thread Faucher, Christian
ROTECTED]Objet : Re: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operationChristian,Maybe the third time is the charm :).Change the message to be:                  I had the right words, wrong wsdl :).Tom GordonTMG wrote:> Sorr

Re: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-16 Thread TMG
n FYI: wsdl spec - http://www.w3.org/TR/wsdl#_message Faucher, Christian wrote: Greetings, I am trying to generate Java stubs from WSDL (see attached WSDL). I get the following error from wsdl2java (see below), running Axis 1.2 RC2. My WSDL is generated from XAware product, and seems to

Re: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-16 Thread TMG
t the following error from wsdl2java (see below), running Axis 1.2 RC2. My WSDL is generated from XAware product, and seems to work, at least from what WSDL test tools from XAware tell me. Any idea? Christian Faucher WSDLException (at /definitions/portType/operation): faultCode=INVALID_WSDL:

wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-16 Thread Faucher, Christian
Title: Message   Greetings,   I am trying to generate Java stubs from WSDL (see attached WSDL).  I get the following error from wsdl2java (see below), running Axis 1.2 RC2.  My WSDL is generated from XAware product, and seems to work, at least from what WSDL test tools from XAware tell me

Extending xsd:dateTime using WSDL2Java

2004-12-09 Thread Elliot Metsger
Everyone, I've got a wsdl that extends xsd:dateTime, and lets pretend for the time being that I am not able to modify the wsdl: I'm trying to use WSDL2Java (from Axis 1.2 RC2) to generate stubs. The generated Java code for this extension of xsd:dateTime looks like: pu

Service(wsdlLoc) and header params (was: wsdl2java: Tweaking what's generated)

2004-12-08 Thread Michael Schuerig
On Tuesday 07 December 2004 23:49, Michael Schuerig wrote: > On Tuesday 07 December 2004 10:32, [EMAIL PROTECTED] wrote: > > Have you looked at the Service constructors that take a WSDL? This > > might be the best route for you, rather than using WSDL2Java. You > > can build

Re: wsdl2java: Tweaking what's generated

2004-12-07 Thread Michael Schuerig
On Tuesday 07 December 2004 10:32, [EMAIL PROTECTED] wrote: > Have you looked at the Service constructors that take a WSDL? This > might be the best route for you, rather than using WSDL2Java. You can > build a client very simply. Thanks for pointing this out. I didn't realize th

Re: SaxException with WSDL2Java Axis 1.1 <> .NET

2004-12-07 Thread ANDREW MICONE
they have written their clients by hand instead of generating the Java and deployment files from WSDL2Java. -- Andy

SaxException with WSDL2Java Axis 1.1 <> .NET

2004-12-07 Thread ANDREW MICONE
tp://ww.ExchangeNetwork.net/schema/v1.0/node.xsd}NodeDocument I can't get at any more information in the validator client, but it works with other implementations using Axis 1.0, but they have written their clients by hand instead of generating the Java and deployment files from WSDL2Java. -- Andy

Re: wsdl2java: Tweaking what's generated

2004-12-07 Thread tony . q . weddle
Have you looked at the Service constructors that take a WSDL? This might be the best route for you, rather than using WSDL2Java. You can build a client very simply. For example (with a service operation that returns a list of types): ... import org.apache.axis.client.Call; import

wsdl2java: Tweaking what's generated

2004-12-06 Thread Michael Schuerig
I want wsdl2java to generate code that interoperates nicely with code that already exists in my application. Thus, I don't want it to generate specific classes, but rather bind to my existing ones, possibly using custom deserializers. I can achieve this goal partly by these steps - type

Re: WSDL2JAVA Problem

2004-12-06 Thread tony . q . weddle
er as a CDATA section, in your XML schema. Tony Conrad <[EMAIL PROTECTED]> wrote on 04/12/2004 03:38:18: > I am having problems with the following. > I have used WSDL2Java to generate client code. I am not able to send a > xml document without > the following problem. > I am s

How to get response use code generated by WSDL2JAVA

2004-12-04 Thread Conrad
new Object(); resp = callme.handleMessage(docElement); The value of resp is always = null I know the service is returning a response using tcp monitor I thought I would be able to access the reponse via the resp object. All the code for the client is generated using WSDL2JAVA now should I be calling the

WSDL2JAVA Problem

2004-12-03 Thread Conrad
I am having problems with the following. I have used WSDL2Java to generate client code. I am not able to send a xml document without the following problem. I am sending but the code sends <help></help> here is the code Object part = (Object) " javax.xml.rpc.Service service = n

WSDL+Castor+complex schema = design or WSDL2Java issue

2004-12-03 Thread Chris Kelly
I have a doc-lit service that mostly uses WSDL2Java-generated classes. However, for a parameter to one method I use Castor instead of the Axis-generated classes. That parameter is defined in a large (1000+ lines), third-party schema. Let's call that parameter "BigParam".

Re: PS -- oops WSDL2Java

2004-12-02 Thread ANDREW MICONE
wing errors. Any advice on how to get just WSDL2Java compiled? [javac] /home/andym/ws-axis/java/src/org/apache/axis/message/Text.java:30: org.apache.axis.message.Text is not abstract and does not override abstract method getUserData(java.lang.String) in org.w3c.dom.Node [javac] public clas

Re: PS -- oops WSDL2Java

2004-12-02 Thread ANDREW MICONE
Great! That clears it up. Unfortunately I can't get a clean compile out of the latest CVS checkout. Inbetween the warnings about enum and deprecation warnings (yes, yikes, JDK1.5). I get the following errors. Any advice on how to get just WSDL2Java compiled? [javac] /home/andym/ws-axis

Re: PS -- oops WSDL2Java

2004-12-02 Thread Davanum Srinivas
back to match axis 1.1, but I don't know what the current status of > that is. > > Cheers > Simon > > > > > -Original Message- > > From: ANDREW MICONE [mailto:[EMAIL PROTECTED] > > Sent: Thursday, December 02, 2004 4:06 PM > > To: [EMAIL

RE: PS -- oops WSDL2Java

2004-12-02 Thread Simon Fell
rom: ANDREW MICONE [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 02, 2004 4:06 PM > To: [EMAIL PROTECTED] > Subject: PS -- oops WSDL2Java > > Sorry, misleading header, I was talking about WSDL2Java. > Also, I noticed that the other server returns type as > "xsd

PS -- oops WSDL2Java

2004-12-02 Thread ANDREW MICONE
Sorry, misleading header, I was talking about WSDL2Java. Also, I noticed that the other server returns type as "xsd:string[8]" and Axis returns it as "soapenc:string[8]". Is that related? Please help. -- Andy >>> [EMAIL PROTECTED] 12/02/04 03:23PM >>> I

RE: Axis 1.2 WSDL2Java problem (probably)

2004-11-29 Thread Dominik Kacprzak
PROTECTED] Subject: Re: Axis 1.2 WSDL2Java problem (probably) Tim K. (Gmane) se proiznese na 25.11.2004 18:12: > Have you tried Axis 1.2RC2 (released on Nov 17 I think), or even a > nightly build? This looks like an Axis bug and I would be surprised if > it's not already fixed. > &

Re: Axis 1.2 WSDL2Java problem (probably)

2004-11-25 Thread Viktor Vojnovski
Tim K. (Gmane) se proiznese na 25.11.2004 18:12: Have you tried Axis 1.2RC2 (released on Nov 17 I think), or even a nightly build? This looks like an Axis bug and I would be surprised if it's not already fixed. You can look for a similar bug or file one if there isn't one already. Tried both. Do

Re: Axis 1.2 WSDL2Java problem (probably)

2004-11-25 Thread Tim K. (Gmane)
Viktor Vojnovski wrote: Tim Gmane se proiznese na 25.11.2004 17:42: Please post the Java class you are trying to expose. I realize it may contain proprietary information, so you should try writing a simple example that reproduces the problem or posting snippets from the bean that has the CPF att

Re: Axis 1.2 WSDL2Java problem (probably)

2004-11-25 Thread Viktor Vojnovski
problem. Here it is.. -- Viktor [sparks et on tochka net tochka mk] "Daj bidi originalen:)" - Oli /** * TipoParametar.java * * This file was auto-generated from WSDL * by the Apache Axis 1.2RC1 Sep 29, 2004 (08:29:40 EDT) WSDL2Java emitter. */ package BTDtipovi; public class Tip

Re: Axis 1.2 WSDL2Java problem (probably)

2004-11-25 Thread Tim Gmane
Viktor Vojnovski wrote: I am getting this (partial output) while trying to access wsdl of a newly deployed service. Any ideas why? Caused by: Bean attribute CPF is of type java.lang.String, which is not a simple type at org.apache.axis.encoding.ser.BeanSerializer.writeAttribute(BeanSeri

Axis 1.2 WSDL2Java problem (probably)

2004-11-25 Thread Viktor Vojnovski
I am getting this (partial output) while trying to access wsdl of a newly deployed service. Any ideas why? Caused by: Bean attribute CPF is of type java.lang.String, which is not a simple type at org.apache.axis.encoding.ser.BeanSerializer.writeAttribute(BeanSerializer.java:460)

WSDL2JAVA

2004-11-23 Thread Levy, Avi
Hi all,   Has anyone use WSDL2JAVA to generate a message style web service.   I would like to generate code so that my service class will deall with the incoming SOAPRequest and write some xml back to SOAPResponse.   Writing the code manualy is possible and not hard. However, I would

Re: 1.2RC2 wsdl2java generated setter method name change

2004-11-18 Thread Davanum Srinivas
Joe, Can you please post a bug report with a stripped down WSDL which recreates the problem? thanks, dims On Wed, 17 Nov 2004 23:50:44 -0800, Joe Nall <[EMAIL PROTECTED]> wrote: > This type (extracted from a large schema) generates a setter called > setMessage1() in 1.2RC2 instead of setMessage

1.2RC2 wsdl2java generated setter method name change

2004-11-17 Thread Joe Nall
This type (extracted from a large schema) generates a setter called setMessage1() in 1.2RC2 instead of setMessage() (1.2b, 1.1). Intentional or bug? joe Represents an error in both human and computer readable formats. Human readable text describing

wsdl2java doesn't generated enums

2004-11-17 Thread Brian Pugh
rg/soap/encoding/".equals(namespace);} Using my modified jar with that change, the stubs where generated as I expected. So my question is whether this is a known bug (I couldn't find anything in Jira)?  If not, am I doing something wrong?  It seems that if I use java2wsdl to generate w

Re: Wsdl2Java does not generate service locatosr for all services

2004-11-15 Thread Vy Ho
I have to take this back. The service locator is used for all port types. So, using this, I could get all 3 references to the ports.

Wsdl2Java does not generate service locatosr for all services

2004-11-15 Thread Vy Ho
I have a wsdl file with 3 porttypes, 3 bindings (1 for each) and under service, there are also 3 ports (1 for each). However, when generate Java files for this wsdl, it does not generates the service locators for 2 of the 3 ports listed under One way I could fix this is to split this wsdl int

Problem in generating client using WSDL2Java

2004-11-15 Thread Manish Singhal
ice using this, it throws the following error:   java.lang.NoClassDefFoundError: Geo/Access/GeoAccess_Impl.   I guess,I am missing some step which I should perform.If anybody can tell me how can I get rid of this and what is the procedure for accessing a webservice hosted somewhere using the client gener

WSDL2Java produces source with incorrect parameter names

2004-11-15 Thread Luca Manganelli
I have the WSDL (at the end of this message). I think there's a WSDL2Java bug: when I invoke the "Ciao" operation, my ActiveBPEL server (with its Axis server) returns me an error: AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.generalExceptio

RE: wsdl2java - are generated JUnit tests complete?

2004-11-12 Thread Levitt, David Bookspan - Garden City
Original Message- From: KHSergel [mailto:[EMAIL PROTECTED] Sent: Friday, November 12, 2004 12:50 PM To: [EMAIL PROTECTED] Subject: Re: wsdl2java - are generated JUnit tests complete? Hello, the JUnit test cases should work without further modification, but will only test the accessibility of

Re: wsdl2java - are generated JUnit tests complete?

2004-11-12 Thread KHSergel
: Levitt, David Bookspan - Garden City <[EMAIL PROTECTED]> An: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Datum: Freitag, 12. November 2004 16:41 Betreff: wsdl2java - are generated JUnit tests complete? Should the JUnit test cases generated by WSDL2Java work without further modification?

How to activate Axis generation of JavaDoc when doing WSDL2Java?

2004-11-12 Thread Tardif, Sebastien
I have a WSDL like this: ... Contain all operations in docHarbor Web Services. The mode of operation is stateless so you have to provide a Credential instance to every operation. Contain all operations in docHar

wsdl2java - are generated JUnit tests complete?

2004-11-12 Thread Levitt, David Bookspan - Garden City
Should the JUnit test cases generated by WSDL2Java work without further modification? If not, what modifications are usually needed to produce a working test case? [environment: JDK 1.5; Axis 1.2RC1; Eclipse or Ant 1.6.2; WinXP] --[Eclipse 3.0 JUnit 'Failure Trace&#x

RE: Specifying a File URL to wsdl2java...

2004-11-11 Thread Levitt, David Bookspan - Garden City
hursday, November 11, 2004 1:29 PM To: [EMAIL PROTECTED] Subject: Specifying a File URL to wsdl2java... I'm trying to create client-side stubs for a web-service which is describe by a wsdl file that I have on my local hard drive. Is there anyway to give wsdl2java a file url? Thanks, Mike-

RE: Specifying a File URL to wsdl2java...

2004-11-11 Thread Greg Michalopoulos
WSDL2Java accepts a filename as an argument. -Original Message- From: Michael Burbidge [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 1:29 PM To: [EMAIL PROTECTED] Subject: Specifying a File URL to wsdl2java... I'm trying to create client-side stubs for a web-service

Specifying a File URL to wsdl2java...

2004-11-11 Thread Michael Burbidge
I'm trying to create client-side stubs for a web-service which is describe by a wsdl file that I have on my local hard drive. Is there anyway to give wsdl2java a file url? Thanks, Mike-

Re: wsdl2java serialization process

2004-11-10 Thread Kirubakaran . Pakkirisamy
       GenderType.class,                        GenderTypeName ) );        }                 }    /**     * Transforms an instance of a type generated by Axis     * WSDL2Java into an XML representation, using only Axis APIs.     * Note that this implementation only works on Axis data types

wsdl2java serialization process

2004-11-10 Thread Michael . S . Ward
Title: Message Hi,   How do I envoke the serialization process for objects created by the WSDL2Java process.  I would like to write the SOAP request and response objects out as XML to log4j during the processing of the request.  These are complex objects generated directly from a wsdl.  It

Re: WSDL2Java server side classes

2004-11-09 Thread Dan Ciarniello
the client side, you can throw away the other 3 classes. Rather than "throwing away" code, I would prefer to be able to tell WSDL2Java to not generate the client-side code if it's not required. Dan. begin:vcard fn:Dan Ciarniello n:Ciarniello;Dan org:CityXpress Corp adr;dom:;;

Re: WSDL2Java server side classes

2004-11-09 Thread Kim Tan
side, you need 2, one interface, and one the actual implementation. if you are not implementing the client side, you can throw away the other 3 classes."Koney, Satish" <[EMAIL PROTECTED]> wrote: Hello All,Why does Axis produce 5 classes when WSDL2Java invoked with -s option?I mean

Re: WSDL2Java server side classes

2004-11-09 Thread tony . q . weddle
The WSDL2Java tool always generates classes that can be used on the client, regardless of whether or not you specify the -s option. Classes that it generates for the defined types can be used on the server or client. The locator and stub can be used on the client. I don't think there is a w

  1   2   3   4   5   6   7   8   9   10   >