Re: speed up build process

2008-02-17 Thread Mark Nüßler
hello users, k, i am able to generate makefiles on the fly next step for me is to understand what [1] does. i can't read ruby, but i think i know what the skript should do. when i start the skript in a folder, where all files from adb Calculator are (with stub or with skel) i only get an nearly

Re: speed up build process

2008-02-17 Thread Dimuthu Gamage
Hi Mark, You seems working on a nightly build on Nov, 12. We have done one or two API changes since then, e.g. there axis2_stub_Calculator_create is replaced with axis2_stub_create_Calculator, axis2_stub_Calculator_div is replaced with axis2_stub_op_Calculator_div you will be able to generate

RE: Axis2 client hangs with multiple requests in one session

2008-02-17 Thread Pär Malmqvist
Nice in some way to here that I am not the only one having problem with the Axis2 client hanging after the third request when AxisFaults are received... I think this is a bug in the transport layer and I have solved it by working around.(My application should not get an AxisFault that often

RE: [ws]Creating request response

2008-02-17 Thread Aditya Anad
Hi, Thanks for reply.But I didn't meant that.I have to manually write a wsdl from give request respone.So just need some information how it get generated, so that I can do the same Regards aditya From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 4:30 PM To:

Re: WSDL parser

2008-02-17 Thread Sukma Agung Verdianto
Hi Demetris, You can try to use wsdl4j (http://sourceforge.net/projects/wsdl4j) to get the operations of specified wsdl file. (AFAIK, Axis2 uses this in their wsdl2java code) public static void main(String[] args) throws Exception { WSDLFactory fac = WSDLFactoryImpl.newInstance(); WSDLReader

Re: WSDL parser

2008-02-17 Thread Martin Gainty
$AXIS2_HOME/bin/wsdl2java -uri NameOfWsdl.wsdl M- - Original Message - From: Demetris G [EMAIL PROTECTED] To: axis-user@ws.apache.org Sent: Sunday, February 17, 2008 2:09 AM Subject: WSDL parser Hi all, I am trying to use the wsdlParser from the Axis API to parse the methods

RE: Axis2 client hangs with multiple requests in one session

2008-02-17 Thread Landslide
Yes, doing the following after each AxisFault would help me prevent the Axis2 client to hang: client.cleanupTransport(); and my server side still gets all the preset cookie values. -- View this message in context:

Problems Using CommonsHTTPSender as http Handler for Axis Client [CRITICAL]

2008-02-17 Thread Sri Rama Kanth N
Hi, I have used Axis 1.4 as Web service Client for consuming some external web services. I have to use a proxy host(in our network) to connect to external services which is currently handled by setting it in the System Properties. Things were working fine with the defualt HttpSender which

Re: [ws]Creating request response

2008-02-17 Thread Anne Thomas Manes
Please clarify: Do you need to manually write a WSDL based on a SOAP message? Or do you want to automatically generate a WSDL based on a SOAP message? The first step in this process is to define an XML Schema definition for the SOAP message instance document. This article

Re: Array Of Long getting serialized to Array of long

2008-02-17 Thread Anne Thomas Manes
Switch to literal encoding. Anne On Feb 15, 2008 1:40 AM, kiran kumar [EMAIL PROTECTED] wrote: FYI.. sending it to axis-user as well. -- Forwarded message -- From: kiran kumar [EMAIL PROTECTED] Date: Thu, Feb 14, 2008 at 6:39 PM Subject: Array Of Long getting serialized

Re: Axis2 1.3 -- Is ordering of elements madatory in SOAP BODY

2008-02-17 Thread Anne Thomas Manes
Your schema specifies that the element order is mandatory (xs:sequence). If you want to remove that constraint, specify xs:all instead. But you may encounter interoperability issues if you do. Anne On Feb 12, 2008 5:29 AM, Ram Thakkalapalli (rthakkal) [EMAIL PROTECTED] wrote: Hello, Here is

Re: WSDL / SOAP reply namespaces problem.

2008-02-17 Thread Anne Thomas Manes
Amila is correct. A valid response would look semantically equivalent to this: soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; soapenv:Body getUserResponse

Re: URL encoding in RESTful service

2008-02-17 Thread Anne Thomas Manes
You should only use urlencoded with GET. For POST, you send the input message in the HTTP message body, not in the URL. See http://ws.apache.org/axis2/1_3/rest-ws.html Anne On Feb 13, 2008 4:31 AM, Steve [EMAIL PROTECTED] wrote: Hello, My web service client is sending

Re: Is Axis for Me?

2008-02-17 Thread Anne Thomas Manes
One caveat. If the existing web services deployed in WebLogic were implemented using rpc/encoded, then you will not be able to use Axis2. In that situation, you can use Axis instead. Anne On Feb 12, 2008 9:14 AM, Murphy Steve [EMAIL PROTECTED] wrote: Azeez, Thanks so much for both of

Re: document/literal web service

2008-02-17 Thread Anne Thomas Manes
In the WSDD, specify service name=MyService style=wrapped use=literal The wrapped style supports an RPC-like programming interface. For the client, use WSDL2Java to generate a client proxy. The DII call interface wasn't designed to work with document/literal. Anne On Feb 11, 2008

Array of Complex Type Method Arguments in Axis2 POJO

2008-02-17 Thread Joey Whelan
Hello - I'm struggling with being able to pass an array of complex object types in an Axis2 POJO. I've attempted multiple different workarounds (array wrapper, arraylists, wrapper of arraylists, etc), but all result in errors. Can anyone point out the error I'm making in the code below or

Re: newbie question

2008-02-17 Thread Anne Thomas Manes
Do you have a WSDL that goes with the service? You can use WSDL2java to generate a client proxy for you. That will make things easier for you. I'm not sure you can use the DII call interface to invoke this service. The service is a document/literal service, and the call interface is designed to

Re: WSDL parser

2008-02-17 Thread Demetris G
Thanks Martin and Sukma - I will try the two methods you send me and see how they work. I will share on the list the results on anything I find Regards Martin Gainty wrote: $AXIS2_HOME/bin/wsdl2java -uri NameOfWsdl.wsdl M- - Original Message - From: Demetris G [EMAIL PROTECTED] To:

RE: [ws]Creating request response

2008-02-17 Thread Aditya Anad
Thanks , I guess this will work for me. Regards Aditya -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: Sunday, February 17, 2008 11:23 PM To: axis-user@ws.apache.org Subject: Re: [ws]Creating request response Please clarify: Do you need to manually write a

[axis]CallBackHandler

2008-02-17 Thread Aditya Anad
Hi all, I have small query. When you are writing a custom handles say a callBackHandler , where u place this handler so that web engine finds it? Regards Aditya CAUTION - Disclaimer * This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended

HashMap with Axis2

2008-02-17 Thread Ajit.Kamalakant
Hi group, Has anybody used HashMap successfully for with Axis 2? Please let me know. Thanks, Ajit DISCLAIMER: This message contains privileged and confidential information and is intended only for an individual named. If you are not the intended recipient, you should not

Policies in services.xml

2008-02-17 Thread Christian Mielke
Hello, I want to use WS-Policy for my Web-Services. So I add a policy inside my WSDL and then I use WSDL2JAVA to generate my code. When I use this tool, the services.xml gets also generated, but why isn't the used policy of the WSDL also written in the generated services.xml so that I only have