Re: WSDL2Java throws IOException

2010-02-10 Thread Venkatesh Audinarayanan
After I renamed the namespace name to fix the issue, started getting an NPE in Axis parser code (with both 1.2 and 1.4): java.lang.NullPointerException at org.apache.axis.wsdl.toJava.JavaBeanHelperWriter.getAsFieldName(JavaB eanHelperWriter.java:435) at

RE: wsdl2java -R option

2010-01-27 Thread Doughty, Michael
I use the -R option in Axis 1.5.1 and it works ok for me. However, I supply a relative path. If I try to supply an absolute path as you have here, I get a CodeGenerationException. From: rahul yadav [mailto:rahulyada...@gmail.com] Sent: Wednesday, January 27, 2010 5:07 AM To:

Re: WSDL2Java: How to generating a single serivce.xml for multiple wsdl files?

2009-12-31 Thread Amila Suriarachchi
On Wed, Dec 30, 2009 at 11:07 AM, fazlan faz...@wso2.com wrote: Hi All, I'am trying to generate a *.aar from multiple wsdl's using the wsdl2java ant task. But I;am having a problem when generating services.xml files. My requirement is to generate a single services.xml for all the

Re: WSDL2Java: How to generating a single serivce.xml for multiple wsdl files?

2009-12-31 Thread fazlan
Thanks for the update Amila! Amila Suriarachchi wrote: On Wed, Dec 30, 2009 at 11:07 AM, fazlan faz...@wso2.com wrote: Hi All, I'am trying to generate a *.aar from multiple wsdl's using the wsdl2java ant task. But I;am having a problem when generating services.xml files. My

Re: WSDL2Java

2009-12-23 Thread Demetris
Yep - I guess I answered my own question of how to manage the namespace. Since I am not really interested on using the namespace on the client side other than building local directories to store the stubs, I can simple use the --package option to generate what I need. If there is any other

Re: wsdl2java and Two Similar Elements

2009-10-29 Thread Amila Suriarachchi
On Thu, Oct 29, 2009 at 12:28 PM, Matthew McKenna mtmckenna...@mac.comwrote: Hello- I have a WSDL file that imports several XML schemas. One of those schemas has the following: xs:element name=ITEM-ID xs:complexType xs:sequence maxOccurs=unbounded xs:element ref=emsg:Item-Id/

Re: wsdl2java and Two Similar Elements

2009-10-29 Thread Matthew McKenna
When I use Axis2, I get a whole host of other problems. With Axis 1.4 (what I am currently using) I get the behavior described in my original post. Thanks Matthew McKenna mtmckenna...@mac.com On Thursday, October 29, 2009, at 03:09AM, Amila Suriarachchi amilasuriarach...@gmail.com wrote:

RE: wsdl2java issue when parsing wsdl that uses empty namespaces

2009-10-15 Thread Alick Buckley
Hi Sean, You could change PhoneType to string You lose the restriction on the possible values, but at least the SOAP agent will work. Your application that calls the Axis generated classes could handle the phone type value check. s:attribute name=PhoneType type=s:string use=required /

Re: WSDL2Java tool generating invalid package name

2009-09-06 Thread Venkatesh Audinarayanan
Hi, Am using Axis 1.4 version. Have attached the WSDL file. I use the following command to generate proxy and stub classes java org.apache.axis.wsdl.WSDL2Java -o C:\ddrive\10.3\soap_test\axis14_latest\axis-1_4\sigan c:\Sigan.wsdl If you look at the attached WSDL (Rename file extension to

Re: WSDL2Java header creation issues

2009-08-12 Thread sksalver
You can use axis client stub class methos set header to do this. Thanks, Swapna samanth marisetty wrote: Hi, I am using WSDL2Java to create java stubs and want to write a client. I wanted to know if there is any argument that I need to use, to generate the headers. Thanks,

Re: WSDL2Java header creation issues

2009-08-12 Thread samanth marisetty
Hi, I tried to do this. header.addChildElement(userID).addTextNode(java); header.addChildElement(userPwd).addTextNode(sun); ((Stub) portType).setHeader(header); but the problem is, I get a null response back from the service. I used a tool called

Re: WSDL2Java header creation issues

2009-08-12 Thread sksalver
add the following where it says _resp = _call.invoke in your stub class //* inputXML = _call.getMessageContext().getRequestMessage().getSOAPPartAsString();

Re: WSDL2Java header creation issues

2009-08-12 Thread samanth marisetty
Hi Swapna, Thanks for you response. **I am doing something like this: WebServiceLocator service = new WebServiceLocator(); WebServiceSoap_PortType portType = null; try { portType = service.getWebServiceSoap();

Re: WSDL2Java: Different class mappings of nested complex types with identical names with JDKs of different vendors.

2009-07-31 Thread Andreas Veithen
Norman, Can you open a JIRA for this issue? Thanks. Andreas On Fri, Jul 31, 2009 at 11:32, Norman Kubicekn.kubi...@intershop.de wrote: Hi, we run in to some problems developing an Axis2 v1.5 Web service client with SUN JDK 6 (different platforms) and IBM JDK 6 (PowerPC Linux) in parallel.

Re: WSDL2Java StringIndexOutOfBoundException

2009-07-15 Thread Tina Vießmann
Ok, I've found the cause of the problem. It seems to be a problem with Axis2 1.5 itself. I've tried to build a service out of different wsdl files and got the same error every time - also with a file originally generated by Axis2 once. I've switched to version 1.4.1 and everything is fine now.

Re: WSDL2Java generates uncompilable code

2009-06-12 Thread sri ram
Hello  Again , Do i need to put in some more details Please let me know. This is a major issue. --- On Wed, 10/6/09, sri ram pinnamaraju_sri...@yahoo.co.in wrote: From: sri ram pinnamaraju_sri...@yahoo.co.in Subject: WSDL2Java generates uncompilable code To: axis-user@ws.apache.org Date:

Re: WSDL2Java generates uncompilable code

2009-06-11 Thread sri ram
resending . This issue should have been addressed before, can anyone guide me its important. --- On Wed, 10/6/09, sri ram pinnamaraju_sri...@yahoo.co.in wrote: From: sri ram pinnamaraju_sri...@yahoo.co.in Subject: WSDL2Java generates uncompilable code To: axis-user@ws.apache.org Date: Wednesday,

RE: wsdl2java

2009-05-21 Thread Caristi, Joe
The answer may be contained in the rest of the Exception stack trace. You could look there for clues and if you still can't figure it out, post the entire trace. -Original Message- From: TomazM [mailto:tomaz.majerh...@arnes.si] Sent: Thursday, May 21, 2009 10:34 AM To: axis Subject:

Re: WSDL2JAVA created uncompilable Stub

2009-04-07 Thread Jacques46
Hi Pricilla, I'll answer you to the best of my knowledge, which is limited to how I've used Axis so far. The file with the word Skeleton in it is the only file that you should have to modify. The java class that you created in the first steps (to come up with the WSDL file) probably only

Re: WSDL2JAVA created uncompilable Stub

2009-04-06 Thread pricilla p
Hi Jacques, I am new to axis. I have to develop an web service I have followed the steps you mentioned and created a wsdl, skeleton and stubs. Could you pls tell me what changes i need to make it in skeleton and stub files Also pls tell me how to deploy this web service. Thanks, Pricilla.

Re: WSDL2JAVA created uncompilable Stub

2009-04-06 Thread Amila Suriarachchi
On Tue, Apr 7, 2009 at 9:15 AM, pricilla p pricy...@gmail.com wrote: Hi Jacques, I am new to axis. I have to develop an web service I have followed the steps you mentioned and created a wsdl, skeleton and stubs. Could you pls tell me what changes i need to make it in skeleton and stub

Re: WSDL2JAVA created uncompilable Stub

2009-04-03 Thread Jacques46
Just putting in my 2 cents, because a week ago I knew nothing about Axis, and I had to overcome some of the hurdles that have been encountered by other posters in the past... I hope I can avoid other people the same wasted time that I experienced... My environment is Eclipse 3.2.2, with the

Re: wsdl2java issue in upgrading from axis 1.2 to 1.4

2009-03-31 Thread Rishi Renjith
Is there any workaround for this problem? What i was thinking was to use wsdl2java of axis1.2 and use axis 1.4 for actual SOAP requests. But when i tried it by replacing the jars, it seems not working :( On Mon, Mar 30, 2009 at 8:56 PM, Jean-christophe cazeaux jccazeau...@gmail.com wrote:

Re: wsdl2java issue in upgrading from axis 1.2 to 1.4

2009-03-30 Thread Jean-christophe cazeaux
Hello, I got exactly the same issue. This occurs with axis 1.3 and axis 1.4. If you add a foo attribute in your wsdl like this : complexType name=ItemList sequence element name=foo type=anyType/ element name=ItemEntry type=abcd:ItemEntry minOccurs=0 maxOccurs=49 nillable=true/

Re: wsdl2java

2009-03-10 Thread chathuranga
Hi Nandana, thanks for the reply. i have added the bouncycastle jar into the path. now i am getting below exception, require client's private key... org.apache.axis2.AxisFault: WSHandler: Signature: error during message * processingorg.apache.ws.security.WSSecurityException*: An unsupported

Re: wsdl2java

2009-03-07 Thread Nandana Mihindukulasooriya
Hi Chathuranga, Did you make sure bouncycatlse jars are in the class path ? If you using solaris please refer to this [1] JIRA. thanks, nandana [1] - https://issues.apache.org/jira/browse/WSS-99 On Fri, Mar 6, 2009 at 1:20 PM, chathuranga gay...@gmail.com wrote: Hi, We have a

Re: WSDL2Java - Skip Classes options

2009-02-28 Thread amit shah
Could using jibx data binding option help in this scenario (Skipping some class generations) ? On Thu, Feb 26, 2009 at 4:39 PM, amit shah amits...@gmail.com wrote: Re-replying to the mail in case I was not clear in explaining the problem. I want to generate java classes from a published wsdl

Re: WSDL2Java - Skip Classes options

2009-02-28 Thread Dennis Sosnoski
Hi Amit, Why do you want to skip generating the element? You could do this using JiBX, but any XML documents you generated without this element would be invalid (since the schema says it's a required element). - Dennis Dennis M. Sosnoski SOA and Web Services in Java Training and Consulting

Re: WSDL2Java - Skip Classes options

2009-02-28 Thread amit shah
The reason I want to skip it is because, as the class gets generated each web service call (method) takes an instance of this class as a parameter, which I don't want. Can this be done by using JiBX ? (i.e. skip the generation which I think will automatically make the service calls not take an

Re: WSDL2Java - Skip Classes options

2009-02-28 Thread Dennis Sosnoski
The latest version of JiBX (1.2, currently in beta test and soon to be production released) supports code generation from schema, and you'd easily be able to eliminate this element in that code generation. But WSDL2Java is separate, and to eliminate the parameter from the generated web

Re: WSDL2Java - Skip Classes options

2009-02-28 Thread amit shah
The wsdl is a published one (by Microsoft SQL Reporting Services 2008) and hence I cannot edit it. On Sun, Mar 1, 2009 at 10:45 AM, Dennis Sosnoski d...@sosnoski.com wrote: The latest version of JiBX (1.2, currently in beta test and soon to be production released) supports code generation from

Re: WSDL2Java - Skip Classes options

2009-02-28 Thread amit shah
In my last mail I forgot to provide the full details of the s:element which I want to skip s:element name=*TrustedUserHeader* type=*tns:TrustedUserHeader* / *-*http://ind-sd-01/reportserver/ReportExecution2005.asmx# s:complexType name=*TrustedUserHeader* *-*

Re: wsdl2java not accepting rampart-1.4.1.mar

2009-02-27 Thread Andreas Veithen
Marc, Actually there is no real problem here. The messages you get are caused by the following two issues: * The Rampart module implements the ModulePolicyExtension interface (indicating that it supports codegen policy extensions), but the implementation of the getPolicyExtension method throws an

Re: WSDL2Java - Skip Classes options

2009-02-26 Thread amit shah
Re-replying to the mail in case I was not clear in explaining the problem. I want to generate java classes from a published wsdl file (exposed by Microsoft SQL Reporting Services 2008). During the class generation, I want to skip some of these classes (for e.g TrustedUserHeader). Pasting a

Re: WSDL2Java 3 ports 1 service

2009-02-03 Thread keith chapman
If you use the -ap option (All Ports) it will generate code for all ports. Thanks, Keith. On Tue, Feb 3, 2009 at 12:35 AM, Paul French paul.fre...@kirona.com wrote: The WSDL I have has one service defined with 3 ports (I use axis2 1.4.1) i.e. wsdl:service

Re: wsdl2java no setters in ADBBean

2009-01-04 Thread Amila Suriarachchi
On Sun, Jan 4, 2009 at 12:07 PM, rogerhb ro...@niederland.com wrote: Generating java classes using wsdl2java (as ADBBeans) (Axis2 version 1.4.1) on WSDL containing the following information: xs:complexType name=PaymentAmount xs:simpleContent xs:extension base=tns:Amount/

Re: wsdl2java no setters in ADBBean

2009-01-04 Thread rogerhb
Thanks for the response I generated a Jira ticket (AXIS2-4193). -- View this message in context: http://www.nabble.com/wsdl2java-no-setters-in-ADBBean-tp21273457p21286046.html Sent from the Axis - User mailing list archive at Nabble.com.

Re: WSDL2JAVA created uncompilable Stub

2008-12-02 Thread asheikh
Hi I am having same issue, any idea how to solve this. I am using Eclipse Platform Version: 3.3.1.1, and my axis2 runtime is axis2-1.4 I have also noticed that in service.xml says !-- This file was auto-generated from WSDL -- !-- by the Apache Axis2 version: 1.3 Built on : Aug 10, 2007

Re: WSDL2JAVA created uncompilable Stub

2008-12-02 Thread Amila Suriarachchi
On Wed, Jun 11, 2008 at 4:32 PM, Adam Muller [EMAIL PROTECTED] wrote: Hi, with Axis2 1.4 - when I regenerate Stub, it cannot be compiled. I got errors like these all over it: The type WhoIsWhoServiceStub.AddressType must implement the inherited abstract method ADBBean.serialize(QName,

Re: WSDL2Java error

2008-11-21 Thread Amila Suriarachchi
On Thu, Nov 20, 2008 at 8:47 AM, warnockm [EMAIL PROTECTED] wrote: I'm trying to use WSDL2Java to create some shell java code from a WSDL file I created. I created the SOAP server in PHP and used the WSDL file to create code in c# using Visual Studio 2008. This works very well, but when i

Re: WSDL2Java error

2008-11-21 Thread warnockm
Thanks, that helps. Specifically, is it the SOAP-ENC part? It occurs when there is an array of a complex data type. I read more about this, and many people have a problem with it. What is the alternative to this? Amila Suriarachchi wrote: On Thu, Nov 20, 2008 at 8:47 AM, warnockm [EMAIL

Re: WSDL2JAVA options

2008-11-18 Thread Amila Suriarachchi
this is the default method it generates the code. this has done to avoid compilation errors. There is no option to change it. thanks, Amila. On 11/18/08, ibrahim demir [EMAIL PROTECTED] wrote: Hi All; I'm creating my classes with axis2 wsdl2java tool. But teh resultant classes are hard to

Re: [WSDL2Java] How to use an XSD contained in a JAR

2008-11-18 Thread Amila Suriarachchi
On Tue, Nov 18, 2008 at 4:19 PM, stlecho [EMAIL PROTECTED] wrote: Hi, I would like to import an XSD that is contained in a JAR. Is this possible with WSDL2Java ? I think no. This depends on whether wsdl4j supports this feature or not. Please have a look at :) thanks, Amila. Regards,

Re: WSDL2JAVA options

2008-11-18 Thread Manuel Darveau
Hi, You could import the generated classes to eclipse and format the whole code using the format tool. This can remove unneeded package prefix and do various formatting based on your preferences. Manuel On Tue, Nov 18, 2008 at 8:18 AM, ibrahim demir [EMAIL PROTECTED]wrote: Hi All; I'm

Re: [WSDL2Java] How to use an XSD contained in a JAR

2008-11-18 Thread stlecho
The wsdl4j project does not have a mailing list :o(, so I would be pleased if someone could clarify if wsdl4j supports this feature. PS: Amila, could it be that your post has been modified: Please have a look at ... ? Amila Suriarachchi wrote: On Tue, Nov 18, 2008 at 4:19 PM, stlecho [EMAIL

RE: WSDL2Java generated a big stub file. How to generate multiple small ones?

2008-11-11 Thread Raghu Upadhyayula
Gus, Use the -u option in WSDL2Java. -u Unpacks the databinding classes Thanks Raghu -Original Message- From: Gus [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2008 12:15 PM To: axis-user@ws.apache.org Subject: WSDL2Java generated a big stub file. How

RE: WSDL2Java generated a big stub file. How to generate multiple small ones?

2008-11-11 Thread Gus
Raghu Upadhyayula wrote: Gus, Use the -u option in WSDL2Java. -u Unpacks the databinding classes Thanks Raghu Thank you soo much, Raghu. I will try it now. I have been working on this for several days, but couldn't figure it out. Today, I found the Axis

Re: WSDL2Java behavior

2008-10-01 Thread Steve Cohen
Any luck in figuring out why this WSDL generates such gnarly code? It is a real pain to work with all these nested objects that WSDL2Java created for me. What should be simple setters and getters are a nightmare. Steve Cohen wrote: I'm not sure. I now see that each xxx_type1 class uses

RE: wsdl2java and basic authentication

2008-10-01 Thread Jorge Medina
Report has been created: https://issues.apache.org/jira/browse/AXIS2-4060 From: keith chapman [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2008 9:25 PM To: axis-user@ws.apache.org Subject: Re: wsdl2java and basic authentication Could you

Re: WSDL2Java behavior

2008-10-01 Thread don t
Hi, this seems to occur when the WSDL has XML schema restrictions and you then run wsdl2java with the default ADB binding. It seems the type1 classes are wrappers that enforce the XML schema restrictions in the setters. One way to work around this is create your own Java beans and use JiBX data

Re: WSDL2Java behavior

2008-10-01 Thread keith chapman
You might wanna use the -uw option (Unwrap) which generates better method signatures for you. Thanks, Keith. On Wed, Oct 1, 2008 at 9:59 PM, Steve Cohen [EMAIL PROTECTED] wrote: Any luck in figuring out why this WSDL generates such gnarly code? It is a real pain to work with all these nested

RE: wsdl2java and basic authentication

2008-09-30 Thread Jorge Medina
PROTECTED] Sent: Tuesday, September 30, 2008 11:09 AM To: Jorge Medina Subject: RE: wsdl2java and basic authentication appears you're behind a proxy server so you'll either need to specify WSDL2Java proxy settings e.g. --http-proxy-hostProxy host address if you are behind a firewall

RE: wsdl2java and basic authentication

2008-09-30 Thread Jorge Medina
I got it. There is a bug in version 1.4 The same line works fine in version 1.3 From: Jorge Medina [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2008 11:15 AM To: axis-user@ws.apache.org Subject: RE: wsdl2java and basic authentication

RE: wsdl2java and basic authentication

2008-09-30 Thread Martin Gainty
is of a confidential nature and Sender does not endorse distribution to any party other than intended recipient. Sender does not necessarily endorse content contained within this transmission. Subject: RE: wsdl2java and basic authentication Date: Tue, 30 Sep 2008 11:21:31 -0400 From: [EMAIL PROTECTED

RE: wsdl2java and basic authentication

2008-09-30 Thread Jorge Medina
Actually, I only tested with version 1.4.1 and version 1.3 Version 1.3 works fine From: Jorge Medina [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2008 11:22 AM To: axis-user@ws.apache.org Subject: RE: wsdl2java and basic authentication I got

RE: WSDL2Java behavior

2008-09-30 Thread Martin Gainty
Good Morning Mr Cohen there appears to be a double definition for City and State entities can you display the WSDL so we can reproduce here? thanks Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates

Re: WSDL2Java behavior

2008-09-30 Thread Steve Cohen
I'm not sure. I now see that each xxx_type1 class uses the xxx_type0. In any case, the WSDL in question is available here: https://duoshare.com/dsWS/services/PostML/wsdl Martin Gainty wrote: Good Morning Mr Cohen there appears to be a double definition for City and State entities can you

Re: wsdl2java and basic authentication

2008-09-30 Thread keith chapman
-- *From:* Jorge Medina [mailto:[EMAIL PROTECTED] *Sent:* Tuesday, September 30, 2008 11:15 AM *To:* axis-user@ws.apache.org *Subject:* RE: wsdl2java and basic authentication No, I have the two computers in the same network, no firewall between them. The error wouldn't be 401

RE: wsdl2java and wsdl problem

2008-09-15 Thread Shehan Simen
@ws.apache.org Subject: Re: wsdl2java and wsdl problem The type declaration is valid. s:choice indicates that the element may contain one of the elements listed in the choice group. The minOccurs=0 attribute indicates that the element is optional. It is not intended to be an array; therefore

Re: wsdl2java and wsdl problem

2008-09-12 Thread Amila Suriarachchi
Could you please log a jira with the wsdl. Did you try with any other databindings like xmlbeans or jaxbri? thanks, Amila. On Fri, Sep 12, 2008 at 9:34 AM, Shehan Simen [EMAIL PROTECTED] wrote: Hi, I have a question about wsdl. The wsdl2java fails in following case. But I feel the wsdl is

Re: wsdl2java and wsdl problem

2008-09-12 Thread Anne Thomas Manes
The type declaration is valid. s:choice indicates that the element may contain one of the elements listed in the choice group. The minOccurs=0 attribute indicates that the element is optional. It is not intended to be an array; therefore, it would be inappropriate to say maxOccurs=unbounded.

Re: wsdl2java ... _operationClient.execute

2008-09-08 Thread Aseem Sharma
Amila Suriarachchi wrote: On Tue, Aug 5, 2008 at 4:05 PM, axis-user [EMAIL PROTECTED] wrote: 2)We are using this command to generate the client stubs WSDL2Java -uri DDP.wsdl -d xmlbeans 3)When calling stub's startxyz() method through our Client Program for asynchronous calling

Re: wsdl2java bug?

2008-09-06 Thread Jeff Greif
There is no element named boolean in the XML Schema namespace, only a type named boolean. You have to provide an element QName for the message part in a doc/lit web service, so you must define an element that is of type boolean if that's the type you want. It must be in some namespace you

RE: wsdl2java bug?

2008-09-06 Thread Martin Gainty
Andrea if you could display your full wsdl we could see what your xsd maps to.. Molte Grazie Martin __ Disclaimer and confidentiality note Everything in this e-mail and any attachments relates to the official business of Sender. This transmission

Re: wsdl2java - Use lists instead of arrays for unbounded types?

2008-09-05 Thread Nick Steel
With version 1.3 I'm pretty sure you can't but I dont know about the later versions. I think you can do it with jibx2wsdl or whatever its called but again I have not tried that myself yet. bgz wrote: Is there a way for wsdl2java generated code to use Lists instead of Arrays for unbounded

Re: wsdl2java ... _operationClient.execute

2008-08-09 Thread axis-user
Amila, THANX A TON FOR PIN POINTING MY IGNORANCE/DUMPNESS Amila Suriarachchi wrote: On Tue, Aug 5, 2008 at 4:05 PM, axis-user [EMAIL PROTECTED] wrote: 2)We are using this command to generate the client stubs WSDL2Java -uri DDP.wsdl -d xmlbeans 3)When calling stub's startxyz() method

Re: wsdl2java ... _operationClient.execute

2008-08-06 Thread Amila Suriarachchi
On Tue, Aug 5, 2008 at 4:05 PM, axis-user [EMAIL PROTECTED] wrote: 2)We are using this command to generate the client stubs WSDL2Java -uri DDP.wsdl -d xmlbeans 3)When calling stub's startxyz() method through our Client Program for asynchronous calling of our web service, the request

Re: wsdl2java not creating xmime:base64Binary type correctly?

2008-07-24 Thread Thilina Gunarathne
Hi, Axis2 XMLBeans data binding no longer supports MTOM... Please refer to the latest doc[1].. Try code generating using ADB... wsdl2java.bat -d adb -uri TestService.wsdl thanks, Thilina [1] http://ws.apache.org/axis2/1_4/mtom-guide.html On Thu, Jul 24, 2008 at 12:30 PM, acm [EMAIL PROTECTED]

Re: WSDL2Java - Inheritance problem

2008-07-23 Thread Amila Suriarachchi
if you use Axis2 1.4 XMLBeans should also supports them. thanks, Amila. On Wed, Jul 23, 2008 at 8:08 AM, Matt Wlazlo [EMAIL PROTECTED] wrote: Ah, I'm using XMLBeans and not ADB, would that have anything to do with my problem? 2008/7/22 Amila Suriarachchi [EMAIL PROTECTED]: I generated

Re: WSDL2Java - Inheritance problem

2008-07-22 Thread Amila Suriarachchi
I generated with the following options and have this test -uri Pillar.wsdl -ss -sd -g -uw private void testTestClass(){ String xmlString = xsd:get xmlns:xsd=\ http://osr.nsw.gov.au/pillar/gen/xsd\;\n + xsd:id xsi:type=\xsd:idSetSess\\n +

Re: WSDL2Java - Inheritance problem

2008-07-22 Thread Matt Wlazlo
Ah, I'm using XMLBeans and not ADB, would that have anything to do with my problem? 2008/7/22 Amila Suriarachchi [EMAIL PROTECTED]: I generated with the following options and have this test -uri Pillar.wsdl -ss -sd -g -uw private void testTestClass(){ String xmlString = xsd:get

Re: WSDL2Java - Inheritance problem

2008-07-21 Thread Matt Wlazlo
Sure, it's attached. 2008/7/21 Amila Suriarachchi [EMAIL PROTECTED]: Can you send your wsdl? I think you use only Axis2 at the server side. thanks, Amila. On Mon, Jul 21, 2008 at 10:06 AM, Matt Wlazlo [EMAIL PROTECTED] wrote: 2008/7/21 Amila Suriarachchi [EMAIL PROTECTED]: On Mon,

Re: wsdl2java plugin fixed or not?

2008-07-21 Thread Lahiru Sandakith
Hi Shehan, Please send us the wsdl if possible, and the complete log message on ecipse wrokspace/.metadata/.log file We ll be able to help you more on this. I am using the plugin with ganymede for some time now. Thanks Lahiru Sandakith. On Tue, Jul 22, 2008 at 6:57 AM, Shehan Simen [EMAIL

Re: WSDL2Java - Inheritance problem

2008-07-20 Thread Amila Suriarachchi
On Mon, Jul 21, 2008 at 8:26 AM, Matt Wlazlo [EMAIL PROTECTED] wrote: Hi, I'm having trouble with passing inheritance types. I've followed this url: http://www.ibm.com/developerworks/websphere/techjournal/0401_brown/brown.html as a guide to WSDL inheritance, and everything seems to be

Re: WSDL2Java - Inheritance problem

2008-07-20 Thread Matt Wlazlo
2008/7/21 Amila Suriarachchi [EMAIL PROTECTED]: On Mon, Jul 21, 2008 at 8:26 AM, Matt Wlazlo [EMAIL PROTECTED] wrote: Hi, I'm having trouble with passing inheritance types. I've followed this url: http://www.ibm.com/developerworks/websphere/techjournal/0401_brown/brown.html as a guide to

Re: WSDL2Java - Inheritance problem

2008-07-20 Thread Amila Suriarachchi
Can you send your wsdl? I think you use only Axis2 at the server side. thanks, Amila. On Mon, Jul 21, 2008 at 10:06 AM, Matt Wlazlo [EMAIL PROTECTED] wrote: 2008/7/21 Amila Suriarachchi [EMAIL PROTECTED]: On Mon, Jul 21, 2008 at 8:26 AM, Matt Wlazlo [EMAIL PROTECTED] wrote: Hi,

Re: wsdl2java on http and https

2008-06-20 Thread keith chapman
Is the domain is a trusted domain then you will have no issues. But if the domain is not a trusted one you will have to import its cert ti your keystore first. This blog entry by dims [1] Gives you the details. On the security issue, does the WSDL have these details as policy? Thanks, Keith.

Re: wsdl2java on http and https

2008-06-20 Thread Rafaqat Ali
I created webservice and in service.xml I added information about rampart module and also PWCHandler class. Then I deployed service using options given in apache axis2 quick start guide. Should wsdl have this information ? Thanks, --RAFI PWCBHandler On Fri, Jun 20, 2008 at 12:18 PM, keith

Re: WSDL2Java for JMS Endpoint.

2008-06-16 Thread rkrish108
Hi Goutham, have you got any solution for this... I too facing the same problem. I think we can achieve this usng axis 2. but need to dig further more. Gautham.Kasinath wrote: Hello all, I have been looking around in the list for some hint to explain/resolve my problem, in vain. So here

RE: WSDL2JAVA created uncompilable Stub

2008-06-11 Thread Kraus, David
Yeah, something similar happened to me. The MTOMAwareXMLStreamWriter parameter is replaced by XMLStreamWriter in the stub code, which causes the compilation problems. I am not absolutely sure what is happening here. I tried enabling MTOM in my services.xml file, and found that wsdl2java

Re: wsdl2java - java.lang.OutOfMemoryError: Java heap space

2008-06-05 Thread Jyotsna Varma
Hi, nbsp; I have copied the stubs created using wsdl2java into the local directory. But when I compile the application, it shows the error : java.lang.OutOfMemoryError: Java heap space. Can you please tell me is this any work around for this without affecting other applications when we put this

Re: wsdl2java - java.lang.OutOfMemoryError: Java heap space

2008-06-05 Thread Jyotsna Varma
I am using axis2 1.3 version with java-1.5 and tomcat-5.5.17 Please help me. --- On Thu, 5/6/08, Jyotsna Varma lt;[EMAIL PROTECTED]gt; wrote: From: Jyotsna Varma lt;[EMAIL PROTECTED]gt; Subject: Re: wsdl2java - java.lang.OutOfMemoryError: Java heap space To: axis-user@ws.apache.org Date

RE: wsdl2java - java.lang.OutOfMemoryError: Java heap space

2008-06-05 Thread Sanjay Vivek
To: axis-user@ws.apache.org Subject: Re: wsdl2java - java.lang.OutOfMemoryError: Java heap space Hi, I have copied the stubs created using wsdl2java into the local directory. But when I compile the application, it shows the error : java.lang.OutOfMemoryError: Java

RE: wsdl2java - java.lang.OutOfMemoryError: Java heap space

2008-06-05 Thread Jyotsna Varma
Thanks Sanjay for the reply. I hope this won't affect any other application running ... --- On Thu, 5/6/08, Sanjay Vivek lt;[EMAIL PROTECTED]gt; wrote: From: Sanjay Vivek lt;[EMAIL PROTECTED]gt; Subject: RE: wsdl2java - java.lang.OutOfMemoryError: Java heap space To: axis-user@ws.apache.org

RE: wsdl2java - java.lang.OutOfMemoryError: Java heap space

2008-06-05 Thread Jyotsna Varma
I am getting the java.lang.OutOfMemoryError error when I compile the web application using ant . Why is it ? --- On Thu, 5/6/08, Sanjay Vivek lt;[EMAIL PROTECTED]gt; wrote: From: Sanjay Vivek lt;[EMAIL PROTECTED]gt; Subject: RE: wsdl2java - java.lang.OutOfMemoryError: Java heap space

Re: WSDL2Java

2008-05-19 Thread Thilina Gunarathne
May be your wsdl file is malformed. Please validate your wsdl using a tool like eclipse wsdl validator. If possible post your wsdl file... thanks, Thilina On Mon, May 19, 2008 at 1:32 PM, skpathi [EMAIL PROTECTED] wrote: hi i am getting following exception while to generate a stub using

Re: WSDL2Java on WSRP WSDL fails

2008-05-16 Thread Alexey Zavizionov
Hi Nicolas, Will search eXo wsrp project, this service is based on Axis1 1.4 Look for sources how to generate WSDL2Java. HTH, Alexey On Tue, Oct 16, 2007 at 1:34 PM, Nicolas Vahlas [EMAIL PROTECTED] wrote: Axis: Axis-1_3 or Axis-1_4 Java: JDK 1.6 or JDK 1.4 Ant: Apache Ant 1.6.5 When

Re: WSDL2Java Exception

2008-05-09 Thread Amila Suriarachchi
/wsdl:service /wsdl:definitions Thanks, Fadila -Original Message- From: keith chapman [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 07, 2008 5:32 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Exception Hi Fadila, Would it be possible for you to post your WSDL

RE: WSDL2Java Exception

2008-05-08 Thread fadila.mumbasic
-Original Message- From: keith chapman [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 07, 2008 5:32 PM To: axis-user@ws.apache.org Subject: Re: WSDL2Java Exception Hi Fadila, Would it be possible for you to post your WSDL and schema here please. That'll make it easy for us to help you

Re: WSDL2Java in Axis1.4 code generation errors.

2008-05-08 Thread Aravind . Yarram
Hi, i am also facing the same kind of issuesi havent got any help so far! Regards, Aravind R Yarram [EMAIL PROTECTED] 05/08/2008 05:09 AM Please respond to axis-user@ws.apache.org To axis-user@ws.apache.org cc Subject WSDL2Java in Axis1.4 code generation errors. Hello all,

RE: WSDL2Java in Axis1.4 code generation errors.

2008-05-08 Thread Aravind . Yarram
Ok, this for Axis 1.4 version though Regards, Aravind R Yarram email: [EMAIL PROTECTED] Krystian Szczesny [EMAIL PROTECTED] 05/08/2008 10:02 AM Please respond to axis-user@ws.apache.org To axis-user@ws.apache.org cc Subject RE: WSDL2Java in Axis1.4 code generation errors. Hi guys

RE: WSDL2Java in Axis1.4 code generation errors.

2008-05-08 Thread Krystian Szczesny
XmlSchema libraries have changed in 1.4 release to a snapshot version. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 08 May 2008 15:08 To: axis-user@ws.apache.org Cc: axis-user@ws.apache.org Subject: RE: WSDL2Java in Axis1.4 code generation errors. Ok, this for Axis 1.4 version

RE: WSDL2Java in Axis1.4 code generation errors.

2008-05-08 Thread Krystian Szczesny
PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 08 May 2008 14:38 To: axis-user@ws.apache.org Cc: axis-user@ws.apache.org Subject: Re: WSDL2Java in Axis1.4 code generation errors. Hi, i am also facing the same kind of issuesi havent got any help so far! Regards, Aravind R Yarram [EMAIL PROTECTED

Re: wsdl2java

2008-05-01 Thread Anne Thomas Manes
xs:complexType name=Course xs:sequence xs:element minOccurs=0 name=courseCode nillable=true type=xs:string/ xs:element minOccurs=0 name=schedules nillable=true type=ns0:ScheduleArray/ /xs:sequence /xs:complexType xs:complexType name=ScheduleArray xs:sequence

Re: wsdl2java problems with any wsdl file

2008-04-02 Thread Dennis Sacks
I don't know why, but after a reboot, this problem seems to have gone away, so it must have been environment. On Tue, Apr 1, 2008 at 10:30 PM, Amila Suriarachchi [EMAIL PROTECTED] wrote: Can you send the wsdl file, arguments you use and the whole stack trace? thanks, Amila. On Wed, Apr

Re: wsdl2java problems with any wsdl file

2008-04-01 Thread Amila Suriarachchi
Can you send the wsdl file, arguments you use and the whole stack trace? thanks, Amila. On Wed, Apr 2, 2008 at 12:35 AM, Dennis Sacks [EMAIL PROTECTED] wrote: Okay, I'm thinking environment, java version or something else on my machine, because I've tried other wsdl files including

RE: wsdl2java

2008-03-15 Thread Seetha Rama Krishna
Hi, Thanks for your reply. //, if you switch away from Axis to some other JAX RPC implementation of Web Services Can you please tell me what are other JAX RPC implementations Regards, ram Chandolu, Yuva [EMAIL PROTECTED] wrote: v\:* {behavior:url(#default#VML);}

Re: wsdl2java

2008-03-14 Thread Anne Thomas Manes
The WSDL2Java generated stub uses the Axis API, so the two methods result in the same performance. The advantage of using the generated stub is that you write less code, and it automatically sets the correct settings for the call based on the info in the WSDL. Anne On Thu, Mar 13, 2008 at 3:03

RE: wsdl2java

2008-03-14 Thread Chandolu, Yuva
Using Service and Call you are making your code portable between any JAX RPC based implementation of Web Services. That means, if you switch away from Axis to some other JAX RPC implementation of Web Services, your client code works (should work) without any code changes. Using Stubs your

Re: WSDL2Java Integer.MIN_VALUE for optional xsd:int

2008-03-09 Thread Amila Suriarachchi
On Thu, Mar 6, 2008 at 11:18 PM, ahong [EMAIL PROTECTED] wrote: I'm migrating from Axis2 1.1 to 1.3 and notice that WSDL2Java, with adb, will set an optional xsd:int element value to Integer.MIN_VALUE if it's absent. This is a change from the previous in 1.1, which is uninitialized and

  1   2   3   4   5   6   7   >