Re: WSDL2Java choice handling

2007-02-08 Thread danop
After running the WSDL2Java utility, I did a text search for any references to "clear" in the generated files but was unable to find any. I have included a test version of the scenario that I am running into with the hopes of identifying where my files are in error. Can you identify in the b

Re: WSDL2Java choice handling

2007-02-07 Thread Amila Suriarachchi
On 2/8/07, danop <[EMAIL PROTECTED]> wrote: I have been running the Axis2 WSDL2Java utility on a wsdl that uses multiple xsd's that contain xsd:choices. Everything appears to be run smoothly with no errors. However, after looking at the generated files, there are no references to any of the

Re: wsdl2java generates incorrect/incomplete code

2007-01-23 Thread Amila Suriarachchi
> The XmlBeans binding still throws an Exception though. ohh thanks for remining this. I will work on it. It seems to be an xml beans problem. can you take an xmlbeans 2.2.0release and try to compile your wsdl using the scomp command comes with the xmlbeans release. -- Amila Suriarachchi,

Re: wsdl2java generates incorrect/incomplete code

2007-01-23 Thread Amila Suriarachchi
On 1/23/07, R Bruce Hoffman <[EMAIL PROTECTED]> wrote: Well, I see that when I used the Snapshot from the Jan 23, that yes, the ADB binding completes, places the ExtensionMapper in the proper class and all the source did finally compile. The XmlBeans binding still throws an Exception though.

Re: wsdl2java generates incorrect/incomplete code

2007-01-23 Thread Amila Suriarachchi
On 1/23/07, R Bruce Hoffman <[EMAIL PROTECTED]> wrote: u, ok, but could you elaborate on what the problem was that this nightly build might fix? there were three things 1. there was a problem in URLProcessor. it did not correctly convert the namespaces like urn:/fih/1_0 correctly. 2. ther

Re: wsdl2java generates incorrect/incomplete code

2007-01-23 Thread R Bruce Hoffman
Well, I see that when I used the Snapshot from the Jan 23, that yes, the ADB binding completes, places the ExtensionMapper in the proper class and all the source did finally compile. The XmlBeans binding still throws an Exception though. On Tue, 2007-01-23 at 11:39 -0500, R Bruce Hoffman wrote:

Re: wsdl2java generates incorrect/incomplete code

2007-01-23 Thread R Bruce Hoffman
u, ok, but could you elaborate on what the problem was that this nightly build might fix? On Tue, 2007-01-23 at 18:56 +0530, Amila Suriarachchi wrote: > sorry for the late reply. I had to wait until axis2 1.1 brach changes > were merged to axis2 trunk. > I fixed your problems in axis2_truck

Re: wsdl2java generates incorrect/incomplete code

2007-01-18 Thread Jeff Greif
Anne, Thank you very much for taking the time to produce such a detailed answer. The details are a little depressing for someone with software that relies on being able to dynamically consume web services. For various reasons, we don't support all possible wsdl-described services at present, so

Re: wsdl2java generates incorrect/incomplete code

2007-01-18 Thread Anne Thomas Manes
See inline... On 1/17/07, Jeff Greif <[EMAIL PROTECTED]> wrote: Anne, As usual, you are a fount of useful information. Thanks for all you do to explain the various SOA standards to the world. Questions: 1. What schema is supposed to be provided by ?xsd. Keep in mind that the URL query is

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread Jeff Greif
Anne, As usual, you are a fount of useful information. Thanks for all you do to explain the various SOA standards to the world. Questions: 1. What schema is supposed to be provided by ?xsd. a. Is it the schema containing the declarations of the types or elements used as message parts?

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread R Bruce Hoffman
you call 10MB big? HA! I download System i software and Redhat distributions... that's big. Send away... my email should be able to handle anything less than a couple of GB... On Wed, 2007-01-17 at 19:56 -0500, Anne Thomas Manes wrote: > I use the Cape Clear SOA Editor tool. It's free, but not op

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread Anne Thomas Manes
The way it supposed to work is thus: - A web service has various metadata files associated with it: - WSDL defines the supported interfaces, MEPs, and bindings - XSD defines the message formats - WS-Policy defines its constraints and capabilities (policies can be embedded in the WSDL

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread Anne Thomas Manes
I use the Cape Clear SOA Editor tool. It's free, but not open source. No support. I have permission to distribute it, so I can send it to you if you like. It's a big file, though. (>10MB) Anne On 1/17/07, R Bruce Hoffman <[EMAIL PROTECTED]> wrote: Again, thank you so much for the effort and inf

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread Jeff Greif
Anne, So if you want to dynamically consume web services based on the wsdl alone, the WS-Policy constructs have to be embedded there and the client machinery has to know how to process them to determine what headers are required, if any? Is this the way it's supposed to work? Is the alternative

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread R Bruce Hoffman
Again, thank you so much for the effort and information. What tool is it that you are using to validate this stuff? And, is it a commercial product or open source tool? On Wed, 2007-01-17 at 13:20 -0500, Anne Thomas Manes wrote: > Bruce, > > I took the WSDL file, commented out the imports, past

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread Anne Thomas Manes
Bruce, I took the WSDL file, commented out the imports, pasted the schemas inline, and validated the WSDL. I found one error: There is no schema component of the name [ds:Signature] defined in the WSDL either via imported or embedded schema. I don't understand why th

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread R Bruce Hoffman
First, let me sincerely thank you for your rapid response. I had originally questioned the other developers on that repeated import of the namespace and been told it was ok. I probably have to be more forceful when my gut says it's wrong... but, as you can probably tell, I am new to this WSDL stuf

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread Anne Thomas Manes
Bruce, Giving the WSDL a quick look, I noticed that it is not valid. I don't know if this is what's causing your problem, but it's a good place to start. In your WSDL section, you attempt to import the same namespace twice. This is not allowed. If the namespace is defined in multiple schemas, a

Re: wsdl2java generates incorrect/incomplete code

2007-01-17 Thread R Bruce Hoffman
Sure... sorry. Also, when using xmlbeans binding, I get the following error: Using AXIS2_HOME: /usr/local/axis2 Using JAVA_HOME: /usr/lib/jvm/java-1.5.0-sun Retrieving schema at '../../../../fih/1.0/fih-header.xsd', relative to 'file:/home/hoffmanb/ax/wsdl/fih/c-efm/purchase-order/recei

Re: wsdl2java generates incorrect/incomplete code

2007-01-16 Thread Amila Suriarachchi
Can you attach your fih-header.xsd file? On 1/16/07, R Bruce Hoffman <[EMAIL PROTECTED]> wrote: I just can't seem to get Axis2 1.1.1 wsdl2java.sh to properly create skeleton code and Axiom or XmlBeans artifacts correctly for, what seems to be, relatively simple wsdl and xsd's. Below is the xsd

Re: wsdl2java can not generate the client function which only has output.

2007-01-16 Thread Amila Suriarachchi
Can you send your wsdl? On 1/17/07, Wang, Hailong (NIH/CIT) [C] <[EMAIL PROTECTED]> wrote: Hi Guys, This is my first time to write email to this mailing list. When I try to generate the client code for the operation which only has an output using wsdl2java, actually wsdl2java doesn't genera

Re: Re: Re: Re: Re: WSDL2Java Help

2007-01-15 Thread Paul Fremantle
ASSPATH has some problem with AXIS2, i will try old versions of AXIS2. :) cheers!! -Original Message- From: "Paul Fremantle" <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Date: Tue, 16 Jan 2007 05:36:03 + Subject: Re: Re: Re: Re: WSDL2Java Help Jiang This is some

Re: Re: Re: Re: Re: WSDL2Java Help

2007-01-15 Thread Jiang Liu
n 2007 05:36:03 + Subject: Re: Re: Re: Re: WSDL2Java Help Jiang This is something you have to watch out with XMLBeans. XMLBeans generates a lot of .xsb files which are binary mapping data between the XML and the Java objects. You need to make sure these files are in the classpath. Usually the b

Re: Re: Re: Re: WSDL2Java Help

2007-01-15 Thread Paul Fremantle
pache_xmlbeans.system.s2 2C110A411CB415190A42F6FFDBFB022.TypeSystemHolder also happened when i hand copied all required classes from AXIS2. Cheers!! -Original Message- From: "Paul Fremantle" <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Date: Tue, 16 Jan 2007 05:04:33 +

Re: Re: Re: Re: WSDL2Java Help

2007-01-15 Thread Jiang Liu
--Original Message- From: "Paul Fremantle" <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Date: Tue, 16 Jan 2007 05:04:33 +0000 Subject: Re: Re: Re: WSDL2Java Help Jiang You just need to have your classpath correct. You shouldn't need to copy class files around. Do you have

Re: Re: Re: WSDL2Java Help

2007-01-15 Thread Paul Fremantle
---Original Message- From: "Paul Fremantle" <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Date: Tue, 16 Jan 2007 04:46:38 + Subject: Re: Re: WSDL2Java Help Jiang It looks like you have run WSDL2Java successfully and the problem is running the client you've created. Try j

Re: Re: Re: WSDL2Java Help

2007-01-15 Thread Jiang Liu
can not create them automatically? cheers!! -Original Message- From: "Paul Fremantle" <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Date: Tue, 16 Jan 2007 04:46:38 + Subject: Re: Re: WSDL2Java Help Jiang It looks like you have run WSDL2Java successfully and the probl

Re: Re: WSDL2Java Help

2007-01-15 Thread Paul Fremantle
asses\" and i can not set CLASSPATH for "e:\..\bulid\classes\axis2\apache\org\xsd\" I think the proble is WSDL2Java can not generate AXIS2 classes for the client. Cheers!! -Original Message- From: "Paul Fremantle" <[EMAIL PROTECTED]> To: axis-user@ws.apache

Re: Re: WSDL2Java Help

2007-01-15 Thread Jiang Liu
uot;Paul Fremantle" <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Date: Tue, 16 Jan 2007 04:22:29 + Subject: Re: WSDL2Java Help Hey Jiang Unfortunately we need to know what the blah blah balh is! Can you post the actual fault message? Paul On 1/16/07, Jiang Liu <[EMAIL

Re: WSDL2Java Help

2007-01-15 Thread Paul Fremantle
Hey Jiang Unfortunately we need to know what the blah blah balh is! Can you post the actual fault message? Paul On 1/16/07, Jiang Liu <[EMAIL PROTECTED]> wrote: Hi, I got a wired problem when running WSDL2Java to generate service client. I am using Win XP with lastest AXIS2 and all environme

Re: WSDL2Java Client Result

2007-01-12 Thread Garth Keesler
Sorry, I stated the problem somewhat incorrectly. The actual POJO ws call is:     public Vendor wsgetVendor(String VID) throws Exception... A recent posting about returned IN/OUT params tweaked my memory. The questions remains how to access the contents of the returned object in the generated

Re: WSDL2Java Question

2007-01-12 Thread Garth Keesler
Chad, For starters, you can come over here and set up my computer! :-D A couple of questions: 1. Do you use /etc/profile for any env vars? If so, can you send them? 2. Could you send a copy of your local .profile (cleaned, if necessary)? This is obviously something I did during the instal

Re: WSDL2Java Question

2007-01-11 Thread ChadDavis
Garth, Everything is working for me, axis2-1.1.1 on Ubuntu. Let me know if I can help. Chad On 1/11/07, Garth Keesler <[EMAIL PROTECTED]> wrote: Sounds good. I hope you have better luck than I've had! :-) Let me know how it goes. Garth ChadDavis wrote: Garth, I guess they released 1

Re: WSDL2Java Question

2007-01-11 Thread Garth Keesler
Sounds good. I hope you have better luck than I've had! :-) Let me know how it goes. Garth ChadDavis wrote: Garth, I guess they released 1.1.1 two days ago.  I've noticed that the documentation was kind of in flux, and that explains your extra version number.  I've just pulled

Re: WSDL2Java Question

2007-01-11 Thread ChadDavis
Garth, I guess they released 1.1.1 two days ago. I've noticed that the documentation was kind of in flux, and that explains your extra version number. I've just pulled down 1.1.1 onto my ubuntu machine and will let you know how it goes. Chad On 1/11/07, Garth Keesler <[EMAIL PROTECTED]> wrote

Re: WSDL2Java Question

2007-01-11 Thread Garth Keesler
I hate to say this but... :-) I set up a virtual W2K box, installed jdk1.5 and Axis2 v1.1.1 and ran wsdl2java.bat against the web service site and it worked just fine, generating the skeleton client java files just as I hoped. Now I can copy the files over to the Ubuntu box and keep going. I'

Re: WSDL2Java Question

2007-01-11 Thread Garth Keesler
Started over. Built a clean Ubuntu Edgy box with jdk1.5.0_10 and Axis2 v1.1.1. Put env stuff in .profile. Same result. Installed j2sdk1.4.2_13, changed .profile, same result. Unrecognized option -uri. I'm going to try it on XP and see what happens. If it works, I can always xfer the generated

Re: WSDL2Java Question

2007-01-10 Thread ChadDavis
you do on Windows). Worth a shot though. -Original Message- From: ChadDavis [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 5:25 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question What directory did you execute this command from? It looks like its from your home d

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
do on Windows). Worth a shot though. -Original Message- From: ChadDavis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2007 5:25 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question What directory did you execute this command from? It looks like its from your home dire

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
dl2java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d xmlbeans -o ../samples -p org.apache.axis2.userguide   From: Garth Keesler [mailto:[EMAIL PROTECTED]]  Sent: Wednesday, January 10, 2007 4:08 PM  To: axis-user@ws.apa

RE: WSDL2Java Question

2007-01-10 Thread Ted Jones
Seems like you would get a better error if the wsdl was not resolvable (at least you do on Windows). Worth a shot though. -Original Message- From: ChadDavis [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 5:25 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question

Re: WSDL2Java Question

2007-01-10 Thread ChadDavis
-uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d xmlbeans -o ../samples -p org.apache.axis2.userguide From: Garth Keesler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 4:08 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question

RE: WSDL2Java Question

2007-01-10 Thread Ted Jones
No. They are mutually exclusive events. From: Garth Keesler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 5:17 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question I tried but Sun's download servers are "offline for system upg

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
0, 2007 4:30 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question I really appreciate your patience... Here's what I get: [EMAIL PROTECTED]:~$ wsdl2java.sh -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d xmlbeans -o ../samples -p org.apache.axis2.userguide  Usi

RE: WSDL2Java Question

2007-01-10 Thread Ted Jones
Hmmm... not sure about that one. Can you try setting JAVA_HOME to a 1.4 JDK and see if that makes a difference? From: Garth Keesler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 4:30 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
guide From: Garth Keesler [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2007 4:08 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question If I take those instructions literally, here's what I get: [EMAIL PROTECTED]:~$ WSDL2Java -uri ../samples/wsdl/Axis2SampleD

RE: WSDL2Java Question

2007-01-10 Thread Ted Jones
, January 10, 2007 4:08 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question If I take those instructions literally, here's what I get: [EMAIL PROTECTED]:~$ WSDL2Java -uri ../samples/wsdl/Axis2SampleDocLit.wsdl -ss -sd -d xmlbeans -o ../samples -p org.apache.axis2.userguide bash: WSDL

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
EMAIL PROTECTED]] Sent: Wednesday, January 10, 2007 3:47 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question Pertinent env vars: JAVA_HOME=/usr/dev/jdk1.5.0_10 JAR_HOME=/usr/dev/jars LANG=en_US.UTF-8 GDMSESSION=default JUNIT_HOME=/usr/dev/junit4.1 HISTCONTROL=ignor

RE: WSDL2Java Question

2007-01-10 Thread Ted Jones
Keesler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 3:55 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question I use AXIS2 v1.1.1. Dumb Q but do I want Axis 1.* stubs? I've never gotten far enough with the tool to see what it produces. Thanx, Garth Ted Jones

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
nural [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2007 3:38 PM To: axis-user@ws.apache.org Subject: RE: WSDL2Java Question Most probably...   What I have defined to get wsdl2Java working :   AXIS2_HOME environment variable pointing to axis2 installation director

RE: WSDL2Java Question

2007-01-10 Thread Ted Jones
you point to the Axis 1.* installation. From: Garth Keesler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 3:47 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question Pertinent env vars: JAVA_HOME=/usr/dev/jdk1.5.0_10 JAR_HOME=/usr/dev

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
As much reading as I've done on CLASSPATH, it remains a bit of a mystery and I can never quite get it configured correctly. I always do it specifically in any build.xml files and that seems to work for me. However, I'm wide open to suggestion on what it should be. Thanx, Garth Bell, Douglas w

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
and %AXIS2_HOME%\bin in my PATH From: Garth Keesler [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2007 4:33 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question Yes, both AXIS_HOME and JAVA_HOME point to their correct directories. However

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
defined to get wsdl2Java working :   AXIS2_HOME environment variable pointing to axis2 installation directory and %AXIS2_HOME%\bin in my PATH From: Garth Keesler [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 10, 2007 4:33 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java

RE: WSDL2Java Question

2007-01-10 Thread Ted Jones
If you want Axis 1.* stubs, then AXIS_HOME should point to your Axis 1.* location (not Axis2). From: Gul Onural [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 3:38 PM To: axis-user@ws.apache.org Subject: RE: WSDL2Java Question Most probably

RE: WSDL2Java Question

2007-01-10 Thread Bell, Douglas
Do you have the Axis jar on your classpath? - Doug From: Garth Keesler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 1:23 PM To: Axis User Subject: WSDL2Java Question The examples below are straight from http://ws.apache.org/axis/java/reference.

RE: WSDL2Java Question

2007-01-10 Thread Gul Onural
To: axis-user@ws.apache.org Subject: Re: WSDL2Java Question Yes, both AXIS_HOME and JAVA_HOME point to their correct directories. However they are defined in /etc/profile and not in my local profile. Could that be it? Thanx Gul Onural wrote: Have you defined AXIS_HOME environment

Re: WSDL2Java Question

2007-01-10 Thread Garth Keesler
Yes, both AXIS_HOME and JAVA_HOME point to their correct directories. However they are defined in /etc/profile and not in my local profile. Could that be it? Thanx Gul Onural wrote: Have you defined AXIS_HOME environment variable pointing to your axis2 installation ? From: Ga

RE: WSDL2Java Question

2007-01-10 Thread Gul Onural
Have you defined AXIS_HOME environment variable pointing to your axis2 installation ? From: Garth Keesler [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 10, 2007 4:23 PM To: Axis User Subject: WSDL2Java Question The examples below are straight from http://w

Re: WSDL2Java

2007-01-02 Thread Amila Suriarachchi
On 12/29/06, Doug Kunzman <[EMAIL PROTECTED]> wrote: Does anyone know if it is possible to use WSDL2Java to process two WSDL files into one application? no. WSDL2Java can only be used to generate the code for one wsdl file (actually for one service and port). If I have to build a single

RE: WSDL2Java

2006-12-29 Thread Douglas Kunzman
Yes - I want to keep them seperated becuase they are defined by the government as seperate interfaces. Doug -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Friday, December 29, 2006 4:58 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Hi Doug Would be

Re: WSDL2Java

2006-12-29 Thread Javier Kohen
El vie, 29-12-2006 a las 16:58 -0500, Martin Gainty escribió: > Hi Doug > > Would be difficult (maybe possible but personally I dont know how) if you > have 2 differing schemas > If the (targetNamespace) schema is the same then you're better off combining > the 2 > Is there any specific reason w

Re: WSDL2Java

2006-12-29 Thread Martin Gainty
Hi Doug Would be difficult (maybe possible but personally I dont know how) if you have 2 differing schemas If the (targetNamespace) schema is the same then you're better off combining the 2 Is there any specific reason why you would want to keep them separate and distinct? M- -

Re: Wsdl2java ant task many namespaceToPackages

2006-12-26 Thread Mehar SVLN
try this out namespaceToPackages="http://webservices.swa.src/xsd/=swa.webservices.xsd , http://persistence.swa.src/xsd/=swa.persistence.xsd=swa.persistence.xsd " this works

Re: WSDL2Java DUplicate Operation

2006-12-20 Thread Anne Thomas Manes
Axis2 does not support overloaded operations. If you can't change the WSDL, either you'll need to interface with the service using the low-level interface (constructing the message via OMElement) or use a different toolkit. On 12/20/06, Diego Belliardo <[EMAIL PROTECTED]> wrote: I have a probl

Re: WSDL2Java Issue

2006-12-20 Thread Anne Thomas Manes
-- From: Amila Suriarachchi To: axis-user@ws.apache.org ; Nate - Hotmail Sent: Wednesday, December 20, 2006 1:41 AM Subject: Re: WSDL2Java Issue On 12/19/06, Nate - Hotmail <[EMAIL PROTECTED]> wrote: > > > When I execute the WSDL2Java command, I get the skeleton code, but the &

Re: WSDL2Java Issue

2006-12-20 Thread Nate - Hotmail
following command to get the result: WSDL2Java -uri test.wsdl -ss -sd Thank you, Nate Douglas - Original Message - From: Amila Suriarachchi To: axis-user@ws.apache.org ; Nate - Hotmail Sent: Wednesday, December 20, 2006 1:41 AM Subject: Re: WSDL2Java Issue

Re: WSDL2Java Issue

2006-12-20 Thread Nilesh Ghorpade
Hi Nate, The code should be generated properly with the correct method signatures. Please specify the AXIS version you are using as well as the WSDL. Regards, Nile Nate - Hotmail <[EMAIL PROTECTED]> wrote: When I execute the WSDL2Java command, I get the skeleton c

Re: WSDL2Java Issue

2006-12-19 Thread Amila Suriarachchi
On 12/19/06, Nate - Hotmail <[EMAIL PROTECTED]> wrote: When I execute the WSDL2Java command, I get the skeleton code, but the generated signatures are all void when they shouldn't be. Is this normal for the code generation, and I just change the signatures as I need them, no it should gener

RE: WSDL2Java cannot create stubs

2006-12-07 Thread Jacob, Binu
[mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 12:36 AM To: axis-user@ws.apache.org Subject: Re: WSDL2Java cannot create stubs Post your wsdl and tell us which databinding you are using and maybe we can help. Robert On 12/6/06, Jacob, Binu <[EMAIL PROTECTED]> wrote: > >

Re: WSDL2Java cannot create stubs

2006-12-06 Thread robert lazarski
Post your wsdl and tell us which databinding you are using and maybe we can help. Robert On 12/6/06, Jacob, Binu <[EMAIL PROTECTED]> wrote: Hi All, With axis2 1.1, I can not create stubs for one of my wsdls. The same wsdl had no problems with axis2 1.0. I get the following error when I

Re: WSDL2Java and ExtensionMapper location

2006-12-04 Thread Nuno Martins
Hi, Anyone can help? Regards Carlos Ribeiro wrote: Hi, I'm having problems with the WSDL2Java script. In my WSDL I have : http://www.w3.org/2001/XMLSchema"; attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://aaa.bbb.ccc";> If I d

Re: WSDL2Java in AXIS2_1.1

2006-11-28 Thread keith chapman
e stub,build.xml and the service.xml. So that I can directly create a aar and then deploy it. Thanks, Chinmay - Original Message From: keith chapman <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Sent: Tuesday, November 28, 2006 5:55:37 PM Subject: Re: WSDL2Java in AXIS2_1.1 If

Re: WSDL2Java in AXIS2_1.1

2006-11-28 Thread c b
- Original Message From: keith chapman <[EMAIL PROTECTED]> To: axis-user@ws.apache.org Sent: Tuesday, November 28, 2006 5:55:37 PM Subject: Re: WSDL2Java in AXIS2_1.1 If you want to expose existing Java classes as a web service then it might be better to use the Java2WSD

Re: WSDL2Java in AXIS2_1.1

2006-11-28 Thread keith chapman
If you want to expose existing Java classes as a web service then it might be better to use the Java2WSDL tool... Thanks, Keith. On 11/28/06, c b <[EMAIL PROTECTED]> wrote: Hi, I have just moved from Axis 1.4 to Axis2. In the WSDL2Java tool, we used to have an "-i" option in Axis 1.4, which a

Re: WSDL2Java: generates code with compile error

2006-11-17 Thread Ramesh Gurunathan
Hello Dims, I dropped jalopy.jar in the classpath but still no effect. Do I need to do anything more this? Please advice. Thanks Ramesh On 11/18/06, Davanum Srinivas <[EMAIL PROTECTED]> wrote: Please open a JIRA bug and upload your wsdl. If you drop jalopy jar in your classpath, the code is a

Re: WSDL2Java: generates code with compile error

2006-11-17 Thread Davanum Srinivas
Please open a JIRA bug and upload your wsdl. If you drop jalopy jar in your classpath, the code is automatically beautified. -- dims On 11/17/06, Michael Moser <[EMAIL PROTECTED]> wrote: And I get similar compile errors on code generated for the client: In the generated code for class Classifi

Re: WSDL2Java: generates code with compile error

2006-11-17 Thread Michael Moser
And I get similar compile errors on code generated for the client: In the generated code for class ClassifiedServiceStub there are multiple locations that read: --- ... //adding SOAP headers _serviceClient.addHeadersToEnvelope(env); // <<< does not exist ...

Re: WSDL2Java: generates code with compile error

2006-11-17 Thread Michael Moser
Sorry - I have to take my last append back - the errors still DO exist (and are also regenerated, if one deletes the code and regenerates again). I had been looking using the wrong eclipse "perspective"... Michael "Michael Moser" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Str

Re: WSDL2Java: generates code with compile error

2006-11-17 Thread Michael Moser
Strange - since I tried again (and to verify I tried a few more times) the code generated is now always OK. Beats me, what went wrong the first time... Michael - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comman

Re: [WSDL2Java] False Codegenration for

2006-11-10 Thread Davanum Srinivas
Please try the 1.1 RC2 or the nightly. thanks, dims On 11/10/06, Lijun Liao <[EMAIL PROTECTED]> wrote: Hi, I have followed the AIXS2 version 1.0 userguide to generate code from WSDL file, and I have detected that the code to parsing the incomming message of type is false. According to the W3C

RE: WSDL2Java support JMS binding

2006-11-09 Thread Spies, Brennan
@ws.apache.org Subject: Re: WSDL2Java support JMS binding You can follow the JIRA: https://issues.apache.org/jira/browse/AXIS2-1381 thanks, dims On 11/9/06, Kang, Kamaljeet K. <[EMAIL PROTECTED]> wrote: > > > Hi, > > I would like to know, when is axis2 WSDL2Java tool going to

Re: WSDL2Java support JMS binding

2006-11-09 Thread Davanum Srinivas
You can follow the JIRA: https://issues.apache.org/jira/browse/AXIS2-1381 thanks, dims On 11/9/06, Kang, Kamaljeet K. <[EMAIL PROTECTED]> wrote: Hi, I would like to know, when is axis2 WSDL2Java tool going to support JMS binding from WSIF? thanks Kamal

RE: wsdl2java behavior for multiple services in the same wsdl

2006-10-20 Thread Gul Onural
Title: RE: wsdl2java behavior for multiple services in the same wsdl Just in case others try to do same thing  : I had to run the wsdl2java for each service in the wsdl file, using the -sn option, to be able to generate code for *all* the services in the wsdl file. Gul

RE: WSDL2Java Error

2006-10-17 Thread Gul Onural
: Tuesday, October 17, 2006 4:23 PMTo: axis-user@ws.apache.orgSubject: RE: WSDL2Java Error Paul,   wsdl:import is only used for importing other wsdl files, not xsd. If you want to import/include xsd, you should do so inside the section.     Brennan Spies Sr. Programmer Analyst Shared Application

RE: WSDL2Java Error

2006-10-17 Thread Spies, Brennan
Title: WSDL2Java Error Paul,   wsdl:import is only used for importing other wsdl files, not xsd. If you want to import/include xsd, you should do so inside the section.     Brennan Spies Sr. Programmer Analyst Shared Application Services   -Original Message- From: Ste

RE: WSDL2Java does not generate stub for PortType

2006-09-29 Thread Yadav, Yogendra \(IT\)
Ok thanx, I have created new jira issue 1274. https://issues.apache.org/jira/browse/AXIS2-1274 -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Friday, September 29, 2006 3:35 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java does not generate stub for

Re: WSDL2Java does not generate stub for PortType

2006-09-29 Thread Davanum Srinivas
Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Friday, September 29, 2006 1:18 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java does not generate stub for PortType Please use a nightly build and open a JIRA issue if you see a problem with that. thanks, -- dims On 9/29/06, Yadav, Yogen

RE: WSDL2Java does not generate stub for PortType

2006-09-29 Thread Yadav, Yogendra \(IT\)
Same problem with nightly build too. I can't login to jira to open issue, never logged in before, how do I get login id ? -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: Friday, September 29, 2006 1:18 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java

Re: WSDL2Java does not generate stub for PortType

2006-09-29 Thread Davanum Srinivas
Please use a nightly build and open a JIRA issue if you see a problem with that. thanks, -- dims On 9/29/06, Yadav, Yogendra (IT) <[EMAIL PROTECTED]> wrote: I am using AXIS2 1.0. I ran wsdl2java on OnlineBanking.wsdl (attached) like this: wsdl2java -d xmlbeans -uri OnlineBanking.wsdl -p com.

Re: wsdl2java ant task and http basic Authentication

2006-09-26 Thread Olivier Mocquais RD-BIZZ
yes, I can do that, but I want to automate this action with an ant task (wsdl2java) VF wrote: Hi Olivier, Isnt it possible to download this wsdl file on local disc and then generate stubs etc from local file? -Original Message- From: Olivier Mocquais RD-BIZZ [mailto:[EMAIL PROTECTED]

RE: wsdl2java ant task and http basic Authentication

2006-09-26 Thread VF
Hi Olivier, Isnt it possible to download this wsdl file on local disc and then generate stubs etc from local file? -Original Message- From: Olivier Mocquais RD-BIZZ [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 26, 2006 2:11 PM To: axis-user@ws.apache.org Subject: wsdl2java ant task

Re: wsdl2java (for some reason) regenerates the wsdl file which doesn't validate

2006-09-20 Thread Ali Sadik Kumlali
Title: wsdl2java (for some reason) regenerates the wsdl file which doesn't validate Hi Gul,Could you please have a look at this: https://issues.apache.org/jira/browse/AXIS2-680Regards,Ali Sadik Kumlali- Original Message From: Gul Onural <[EMAIL PROTECTED]>To: axis-user@ws.apache.orgSent: We

Re: wsdl2java completes, but the resulting code is not matching the wsdl

2006-09-15 Thread Anne Thomas Manes
Axis2 does not support SOAP Encoding, so, yes, this simple WSDL is enough to break Axis2. Anne On 9/15/06, STEINER Stephan <[EMAIL PROTECTED]> wrote: I'm afraid my first attempt in using axis2 has been somewhat less than successful. I created the client side stub from the attached WSDL file

Re: wsdl2java completes, but the resulting code is not matching the wsdl

2006-09-15 Thread Davanum Srinivas
Oh. Please use the nightly build. -- dims On 9/15/06, Davanum Srinivas <[EMAIL PROTECTED]> wrote: Stephan, run with "-g" it's not there because you are not using it in any of the methods. throw in a "-u" option as well so that you can look at the individual classes in an unpacked fashion. --

Re: wsdl2java completes, but the resulting code is not matching the wsdl

2006-09-15 Thread Davanum Srinivas
Stephan, run with "-g" it's not there because you are not using it in any of the methods. throw in a "-u" option as well so that you can look at the individual classes in an unpacked fashion. -- dims On 9/15/06, STEINER Stephan <[EMAIL PROTECTED]> wrote: I'm afraid my first attempt in usin

Re: WSDL2Java does not generate WSDD files!

2006-09-15 Thread Nirmit Desai
IL" <[EMAIL PROTECTED]> PM cc Subject Please respond t

Re: WSDL2Java does not generate WSDD files!

2006-09-15 Thread Roberto Flores
(appending to last response: using Axis2)2006/9/16, Roberto Flores <[EMAIL PROTECTED]>: Hello, I used the version in the Axis2 base distribution version 1.0, which I downloaded from the official page here: http://ws.apache.org/axis2/tools/index.html the file name is: axis2-std-1.0-bin.zip2006/9/15,

Re: WSDL2Java does not generate WSDD files!

2006-09-15 Thread Roberto Flores
Hello, I used the version in the Axis2 base distribution version 1.0, which I downloaded from the official page here:http://ws.apache.org/axis2/tools/index.html the file name is: axis2-std-1.0-bin.zip2006/9/15, Sergey GMAIL <[EMAIL PROTECTED]>: Hello, Roberto. What version of the Axis do y

Re: WSDL2Java does not generate WSDD files!

2006-09-15 Thread Sergey GMAIL
Hello, Roberto. What version of the Axis do you use?  > I can succesfully generate the classes but no wsdd appears (which is what I actually want). I did specify --server-side and -ss. There is a weird warning about not log4j being found though, could this be the cause? also, everyone

<    1   2   3   4   5   6   7   >