[axis2][question] is it easy to create ws client using ws-addressing in a different language than java?

2007-05-25 Thread Fabrice Airault
Hi all, Before decide if i will use axis2//addressing to write Web services, I would like to know if it's easy to write a client in a different language than java ? Fabrice begin:vcard fn:Fabrice Airault n:Airault;Fabrice org:Centile email;internet:[EMAIL PROTECTED] tel;work:+33 4 97 23 12 9

Re: [axis2][question] is it easy to create ws client using ws-addressing in a different language than java?

2007-05-25 Thread Samisa Abeysinghe
Fabrice Airault wrote: Hi all, Before decide if i will use axis2//addressing to write Web services, I would like to know if it's easy to write a client in a different language than java ? Yes you can. Try Axis2/C http://ws.apache.org/axis2/c/docs/axis2c_manual.html#quick_start Samisa... -

Axiom SOAP envelope and org.w3c.dom.*

2007-05-25 Thread Henning Jensen
Hi! I'm writing a handler for Axis2 that uses another framework for inspecting SOAP envelopes. This framework uses the org.w3c.dom.* interfaces and I have used the SAAJUtil in the Axis2 handler to get a org.w3c.dom.Document object. Document doc = SAAJUtil.getDocumentFromSOAPEnvelope(envelope

[axis2]What is the equivalent of 'ServletContextListener' in Axis2?

2007-05-25 Thread Desmond Whewell \(CV/ETL\)
Is there an equivalent in Axis2 that gives the capability that ServletContextListener gives in Servlets? I have used ServletContextListener in Tomcat as a way of copying , defined in web.xml, into System properties. These properties can then be examined throughout the buisness logic to control beh

[AXIS2] Error: Service not found

2007-05-25 Thread Fran
Hi! I created a web service using Axis2 and ADB, for client and service. I deploy my service in Axis2 and run Axis2 server, but when I try to execute my client it shows the following error: org.apache.axis2.AxisFault: Service not found operation terminated !! at org.apache.axis2.descript

AXIS2 : FAULT_ADDRESSING_HEADER_REQUIRED_REASON

2007-05-25 Thread zakaria ghandour
Hi i create process in "intalio" and i have problem with it (my process call webservice) the process and the web service are deployed on the same machine when i execute the process , i have message error in tomcat (because my webservice was deployed on tomcat/axis2) org.apache.axis2.transport.h

TCPMon Settings

2007-05-25 Thread smitha.aldrin
Hi I have some problem with TCPMon Settings. I have jboss running at 8080 and my webservice is also hosted in that . When I giving the setting as targethost:locathost,targetport:80,listenport :8080. I am getting the response as bindException. Should I run tcpmon from another system?

Re: Rest APIs

2007-05-25 Thread keith chapman
Axis 1.2 got rid of having a separate servlet for REST. Now both REST and SOAP are handled by the same servlet (If needed REST can be dissabled). In 1.1.1 axis2/rest calls the REST servlet while axis2/services calls the main servlet. This is the reason for the change. Thanks, Keith. On 5/25/07,

Re: TCPMon Settings

2007-05-25 Thread keith chapman
Hi, The targetport should be 8080 in this case. The listenport is where your client should send request to. Thanks, Keith. On 5/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi I have some problem with TCPMon Settings. I have jboss running at 8080 and my webservice is also hosted i

got a big Problem in rpc/lit binding style

2007-05-25 Thread Raj_curious
Hi all, i am deeply stuck into a problem . Got to implement rpc/lit binding style, but axis2 generator does not create correct stubs and skeleton by reading the wsdl. my original wsdl contained: http://webservices.alcatel.com/ServiceSample"; xmlns="http://schemas.xmlsoap.org/wsdl/";

Re: got a big Problem in rpc/lit binding style

2007-05-25 Thread Vikas
http://ws.apache.org/axis2/1_2/Axis2-rpc-support.html might will help you With best regards From Vikas R. Khengare - Original Message - From: "Raj_curious" <[EMAIL PROTECTED]> To: Sent: Friday, May 25, 2007 2:30 PM Subject: got a big Problem in rpc/lit binding style > > Hi all, >

Re: Help with SwA

2007-05-25 Thread Xinjun Chen
I have a related question regarding SwA support. In the axis2.xml, if I set enableSwA to true, my response can arrive at the client with attachment, but then all the requests (no matter there is any attachment) are considered as multipart requests and I get "Bad Request" error. The "Bad Request" e

Re: Rest APIs

2007-05-25 Thread Ognjen Blagojevic
Can anybody help me to enable rest APIs in my webservices with Axis2? What seems to be the problem? Rest is already enabled. In axis2 1.1.1, you could test it at http://127.0.0.1:8080/axis2/rest/Version/getVersion and in 1.2, it is http://127.0.0.1:8080/axis2/services/Version/getVersion

RE: [axis2]What is the equivalent of 'ServletContextListener' in Axis2?

2007-05-25 Thread Desmond Whewell \(CV/ETL\)
Sorry, I omitted to say I'm using Axis2 1.2 as a war file on Tomcat 5.5 From: Desmond Whewell (CV/ETL) [mailto:[EMAIL PROTECTED] Sent: 25 May 2007 10:17 To: axis-user@ws.apache.org Subject: [axis2]What is the equivalent of 'ServletContextListener' in Axis2? Is

RE: TCPMon Settings

2007-05-25 Thread smitha.aldrin
Hi Keith Server is running on 8080 and to this server only client sending request. So listen port is also 8080.Or is it going to be something else? Regards Smitha From: keith chapman [mailto:[EMAIL PROTECTED] Sent: Friday, May 25, 2007 3:22 PM To: axis

RE: TCPMon Settings

2007-05-25 Thread smitha.aldrin
Hi Keith I understood the problem and I modified the client code to send it to 8081 and made TCPMon listen on that port. Thanks for the reply Regards Smitha From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, May 25, 2007 3:26 PM To:

Re: got a big Problem in rpc/lit binding style

2007-05-25 Thread Raj_curious
hi vikas, u probably didnt read my total mesg, i hv already followed the steps given at this link and changed my wsdl file accordingly. i hv given both wsdl snippets ..before and after change. Pls have a look ..u might suggest me something. thanks, rajesh Vikas-12 wrote: > > http://ws.apache

Re: Rest APIs

2007-05-25 Thread keith chapman
Hi, This code works for 1.2. If you have a WSDL 2 document (which you can write pretty easily) you can use wsdl2java on ut to generate stubs and skeletons. OMElement data = ... ; EndpointReference epr = ...; Options options = new Options(); options.setTo(epr)

Re: Rest APIs

2007-05-25 Thread Vikas
Hi Friends, Can we call REST service by POST way? In axis2 1.1.1, http://127.0.0.1:8080/axis2/rest/Version/getVersion and in 1.2, it is http://127.0.0.1:8080/axis2/services/Version/getVersion this is HTTP GET way of calling. Then i) Can we call same service with HTTP POST way? ii) H

wsdl2java code generation

2007-05-25 Thread Mert Çalışkan
Hello all, I've a problem with JavaCode generation while using wsdl2java. It seems like a bug but I'm not sure about the behaviour. The problematic fragment of the wsdl that I'm using is below.

Re: [AXIS2] Error: Service not found

2007-05-25 Thread Fran
2007/5/25, Fran <[EMAIL PROTECTED]>: Hi! I created a web service using Axis2 and ADB, for client and service. I deploy my service in Axis2 and run Axis2 server, but when I try to execute my client it shows the following error: org.apache.axis2.AxisFault: Service not found operation terminated !

Re: Help with SwA

2007-05-25 Thread Thilina Gunarathne
The following is the code snippet where I try to enable SwA only for one service. /** in axis2.xml, enableSwA is set to false **/ Please add the enableSwA parameter to your services.xml to enable SwA only for that service. Also you can add it under a respective operation element in the services.

Re: AXIS2 : FAULT_ADDRESSING_HEADER_REQUIRED_REASON

2007-05-25 Thread Brian De Pradine
Hello Zakaria, The message indicates that a required ws-addressing header was missing in the request message and so an exception was returned to the client. On the client the resource bundle containing the actual error message could not be found. What version of axis2 are you using? Cheers Br

Web Service Versioning the Amazon way

2007-05-25 Thread Jonas Lindskog
Hello! As the newbie I am I got stuck on the following... I want to implement versioning the amazon way that is: New versions get a new targetNamespace in the WSDL file. Old versions are still deployed but all versions are accessed using the same url. http://localhost:8080/axis2/services/MySer

[Axis2] Howto register own xsd referenced from own wsdl

2007-05-25 Thread Tobias Seng
Hi, I tried to register a webservice aar containing an own wsdl and an own xsd. If the wsdl does not import the xsd everything works fine. I can call http://localhost/axis2/services/TestWS?wsdl and http://localhost/axis2/services/TestWS?xsd=myxsd.xsd and I get the expected result. But if I

Re: Axis2 1.2 sanity check: Can generated POJO service/client handle 0-length array?

2007-05-25 Thread Jarek Kucypera
Dennis Sosnoski wrote: I haven't tried out the Axis2 POJO support, but in general anything you do using POJOs directly is going to be both inflexible and very limited in terms of the XML support. With all respect, xml here is the tool, not the purpose. I would like to expose my serwice with

Re: Axis2 1.2 sanity check: Can generated POJO service/client handle 0-length array?

2007-05-25 Thread Glen Mazza
Am Freitag, den 25.05.2007, 12:31 +0200 schrieb Jarek Kucypera: > Dennis Sosnoski wrote: > > > I haven't tried out the Axis2 POJO support, but in general anything > > you do using POJOs directly is going to be both inflexible and very > > limited in terms of the XML support. > > With all resp

Getting an Error while deploying JNI based web service

2007-05-25 Thread Kashif Saleem
Hi, I just converted my JNI based program into web service.It deployed successfully but when I click to see the WSDL of the deployed service.I got the following error : AXIS error Sorry, something seems to have gone wrong... here are the details: Exception - java.lang.NoClassDefFoundError I

EndpointReference Constructor Can't be Found

2007-05-25 Thread Doug Schaible
Good Morning All, Looking at the EndpointReference doc here: http://ws.apache.org/axis2/0_93/api/org/apache/axis2/addressing/EndpointReference.html The constructor takes a String, but if I try to use it I get the error below. If I create a null EndpointReference and then use setAddress it works.

Re: Axis2 1.2 sanity check: Can generated POJO service/client handle 0-length array?

2007-05-25 Thread Jarek Kucypera
Glen Mazza wrote: I believe that's called "contract last" development No, IMO it depends on how you (miss)use the concept of "contract" or interface, not on which language you use to write the contract. I would be very glad to be able to write the contract in Java and expose it as wsdl via ax

Re: Web Service Versioning the Amazon way

2007-05-25 Thread Stefan Magnus Landrø
Maybe you could use some sort of servlet filter for this purpose? 2007/5/25, Jonas Lindskog <[EMAIL PROTECTED]>: Hello! As the newbie I am I got stuck on the following... I want to implement versioning the amazon way that is: New versions get a new targetNamespace in the WSDL file. Old versions

Re: AXIS2 : FAULT_ADDRESSING_HEADER_REQUIRED_REASON

2007-05-25 Thread zakaria ghandour
i use Axis 1.2 do you have any solution ? thanks -- View this message in context: http://www.nabble.com/AXIS2-%3A-FAULT_ADDRESSING_HEADER_REQUIRED_REASON-tf3815153.html#a10801531 Sent from the Axis - User mailing list archive at Nabble.com. -

Re: Axis2 1.2 sanity check: Can generated POJO service/client handle 0-length array?

2007-05-25 Thread Dennis Sosnoski
Jarek Kucypera wrote: Dennis Sosnoski wrote: I haven't tried out the Axis2 POJO support, but in general anything you do using POJOs directly is going to be both inflexible and very limited in terms of the XML support. With all respect, xml here is the tool, not the purpose. I would like to

[AXIS2] Problem with a HashMap in Web Services

2007-05-25 Thread Fran
Hi! I have the following problem: - I have three classes: ClassA, ClassB and ClassC - ClassA is the service - ClassB is a class that receive the ClassA data - ClassB has a HashMap - ClassC is a class that save three atributes: String attA, String attB, String attC In this case it would be like

Re: AXIS2 : FAULT_ADDRESSING_HEADER_REQUIRED_REASON

2007-05-25 Thread zakaria ghandour
i use Axis2 1.2 do you have any solution ? thanks -- View this message in context: http://www.nabble.com/AXIS2-%3A-FAULT_ADDRESSING_HEADER_REQUIRED_REASON-tf3815153.html#a10801670 Sent from the Axis - User mailing list archive at Nabble.com. ---

Re: Java2Wsdl with DataHandler method

2007-05-25 Thread Thilina Gunarathne
Is the wsdl -> server code the approach that we should be taking? WSDL first is the most recomended approach.. But you can also live with what you are doing.. As I said earlier DataHandler should be mapped to a base64Binary typed element.. AFAIK Axis2 is doing it correctly in the 1.2 release..

install plugin eclipse axis2-eclipse-codegen-wizard-1.2.zip

2007-05-25 Thread zakaria ghandour
Hi i downloaded axis2-eclipse-codegen-wizard-1.2.zip from axis web site i extracted it i drag and drop it into c:/eclipse/plugins i restarted eclipse but eclipse didn't reconized the plugin can somebody tell me how to install it thanks -- View this message in context: http://www.nabble.com/in

Re: Axis2 1.2 sanity check: Can generated POJO service/client handle 0-length array?

2007-05-25 Thread Davanum Srinivas
Jarek, When you get a chance, please let us know what breaks or does not work via JIRA. thanks, dims On 5/25/07, Jarek Kucypera <[EMAIL PROTECTED]> wrote: Glen Mazza wrote: >I believe that's called "contract last" development > No, IMO it depends on how you (miss)use the concept of "contract"

Re: Axis2 1.2 sanity check: Can generated POJO service/client handle 0-length array?

2007-05-25 Thread Jarek Kucypera
Dennis Sosnoski wrote: But generally the idea of deploying POJOs directly is a very limited approach, at best only suitable for small applications, and if you're doing anything substantial you're probably going to need to start controlling the XML conversions at some point. No, why ? Do y

Re: wsdl2java code generation

2007-05-25 Thread Davanum Srinivas
Mert, could you please log a bug with your complete wsdl and the options you use when running WSDL2Java? thanks, dims On 5/25/07, Mert Çalışkan <[EMAIL PROTECTED]> wrote: Hello all, I've a problem with JavaCode generation while using wsdl2java. It seems like a bug but I'm not sure about the b

Re: Axiom SOAP envelope and org.w3c.dom.*

2007-05-25 Thread Davanum Srinivas
Henning, Could you please post a stripped down sample in JIRA? I hope you are using Axis2 1.2 recently released. thanks, dims On 5/25/07, Henning Jensen <[EMAIL PROTECTED]> wrote: Hi! I'm writing a handler for Axis2 that uses another framework for inspecting SOAP envelopes. This framework use

Re: [axis2]What is the equivalent of 'ServletContextListener' in Axis2?

2007-05-25 Thread Davanum Srinivas
Try ServiceLifeCycle: http://wso2.org/library/333 -- dims On 5/25/07, Desmond Whewell (CV/ETL) <[EMAIL PROTECTED]> wrote: Sorry, I omitted to say I'm using Axis2 1.2 as a war file on Tomcat 5.5 From: Desmond Whewell (CV/ETL) [mailto:[EMAIL PROTECTED] Sent:

Addressing Exception

2007-05-25 Thread smitha.aldrin
Hi I am getting the following exception at the server java.lang.NoClassDefFoundError: org/apache/axis 2/addressing/EndpointReferenceHelper And at the client ...Is it possible for anyone to give me some clue? Exception in thread "main" org.apache.axis2.AxisFault: A header represe

Re: [Axis2] Howto register own xsd referenced from own wsdl

2007-05-25 Thread Davanum Srinivas
Did you try the obvious? And drop both the wsdl and xsd into the aar? and check if the following works? http://localhost/axis2/services/TestWS?wsdl thanks, dims On 5/25/07, Tobias Seng <[EMAIL PROTECTED]> wrote: Hi, I tried to register a webservice aar containing an own wsdl and an own x

RE: [axis2]What is the equivalent of 'ServletContextListener' in Axis2?

2007-05-25 Thread Desmond Whewell \(CV/ETL\)
Thank you, I will study that. Was that information available on the Axis2 site? I always look there first for reference documentation. I will add the wso2 site to my trawl net. Cheers, Des -Original Message- From: Davanum Srinivas [mailto:[EMAIL PROTECTED] Sent: 25 May 2007 13:29 To:

Re: install plugin eclipse axis2-eclipse-codegen-wizard-1.2.zip

2007-05-25 Thread Charitha Kankanamge
Hi Zakaria, The follwoing link will help you. http://ws.apache.org/axis2/tools/1_2/eclipse/wsdl2java-plugin.html regards Charitha zakaria ghandour wrote: Hi i downloaded axis2-eclipse-codegen-wizard-1.2.zip from axis web site i extracted it i drag and drop it into c:/eclipse/plugins i resta

Re: [Axis2] Howto register own xsd referenced from own wsdl

2007-05-25 Thread Davanum Srinivas
Try http://localhost/axis2/services/TestWS/myxsd.xsd because we need to know which aar the xsd is in... -- dims On 5/25/07, Tobias Seng <[EMAIL PROTECTED]> wrote: Yes I tried this, and both http://localhost/axis2/services/TestWS?wsdl http://localhost/axis2/services/TestWS?xsd=myxsd.xsd

StAXOMBuilder getDocument returns incorrect OMElement

2007-05-25 Thread Doug Schaible
Is there a version of StAXOMBuilder that returns a org.apache.axiom.om.OMElement when you call getDocumentElement()? Currently the one that I have is returning a org.apache.axis2.om.OMElement. I need to convert an XML document that is currently stored as a String to a OMElement. Any help is

Re: [Axis2] Howto register own xsd referenced from own wsdl

2007-05-25 Thread Tobias Seng
Yes I tried this, and both http://localhost/axis2/services/TestWS?wsdl http://localhost/axis2/services/TestWS?xsd=myxsd.xsd works. But I think the address for the xsd than should be http://localhost/axis2/services/myxsd.xsd and this does not work. Thanks Tobias Did you try the obviou

Re: [Axis2] Howto register own xsd referenced from own wsdl

2007-05-25 Thread Tobias Seng
http://localhost/axis2/services/TestWS/myxsd.xsd does not work. And of cause this is not the problem. Using any WS client or IDE analysing the wsdl containing an import like I think they would try to load the xsd from http://localhost/axis2/services/myxsd.xsd So my idea was to address

Re: install plugin eclipse axis2-eclipse-codegen-wizard-1.2.zip

2007-05-25 Thread zakaria ghandour
thanks -- View this message in context: http://www.nabble.com/install-plugin-eclipse-axis2-eclipse-codegen-wizard-1.2.zip-tf3815768.html#a10802967 Sent from the Axis - User mailing list archive at Nabble.com. - To unsubscribe,

Re: [Axis2] Howto register own xsd referenced from own wsdl

2007-05-25 Thread Davanum Srinivas
Are u using 1.2 final? Can you create a JIRA and upload your aar? is your myxsd.xsd and wsdl inside the META-INF directory of the aar? i think i added support for the following too... http://localhost/axis2/services/TestWS/my.wsdl http://localhost/axis2/services/TestWS/myxsd.xsd thanks, dims On

Re: [Axis2] Howto register own xsd referenced from own wsdl

2007-05-25 Thread Davanum Srinivas
or was it ...need to check the code again. http://localhost/axis2/services/my.wsdl http://localhost/axis2/services/myxsd.xsd -- dims On 5/25/07, Davanum Srinivas <[EMAIL PROTECTED]> wrote: Are u using 1.2 final? Can you create a JIRA and upload your aar? is your myxsd.xsd and wsdl inside the

Re: AXIS2 : FAULT_ADDRESSING_HEADER_REQUIRED_REASON

2007-05-25 Thread Brian De Pradine
Hello Zakaria, To identify the immediate problem you can use TCPMon to look at the fault message that is being returned to the client. This will allow you to identify the header that the server is complaining about and to take corrective action in your application. As far as the missing resour

RE: AXIS2 : FAULT_ADDRESSING_HEADER_REQUIRED_REASON

2007-05-25 Thread smitha.aldrin
Hi I also have got a similar problem .But TCPMon is showing HTTP/1.1 202 Accepted Server: Apache-Coyote/1.1 X-Powered-By: Servlet 2.4; JBoss-4.0.2 (build: CVSTag=JBoss_4_0_2 date=200505022023)/Tomcat-5.5 Content-Type: text/xml;charset=UTF-8 Transfer-Encoding: chunked Date: Fri, 25 May 2

RE: raw XML from apache axis

2007-05-25 Thread Rich Adili
See http://blogs.cocoondev.org/dims/archives/004668.html From: Jaya Pattaswamy [mailto:[EMAIL PROTECTED] Sent: Friday, May 25, 2007 10:11 AM To: axis-user@ws.apache.org Subject: raw XML from apache axis Hi, Can any one tell me on how to capture the reque

raw XML from apache axis

2007-05-25 Thread Jaya Pattaswamy
Hi, Can any one tell me on how to capture the request and response XMLs Using Apache Axis without Using TCPMon or SOAP Monitor? I want to store these request and response in a Database. Thanks and Regards, Jaya SunCom is the wireless company that's committed to doing things differentl

Re: Axis2 service level access by IP address

2007-05-25 Thread Luis Mariano Luporini
Well Paul, that is really great to hear. I will be trying these products. I do not think I'll have a particular config, but anyway your help is really appreciated. I come from a C background and sometimes I'm a little hesitant when a Java project involves with scalability matters. But again, I kn

soapAction versus wsaAction

2007-05-25 Thread Gul Onural
In the wsdl, what is the difference between soapAction and wsaAction ? Gul

Re: Axis2 1.2 sanity check: Can generated POJO service/client handle 0-length array?

2007-05-25 Thread Jarek Kucypera
Davanum Srinivas wrote: When you get a chance, please let us know what breaks or does not work via JIRA. Sure, in a week or two I plan to have it analysed. J.K. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional comm

[Axis2]Service does not return WSDL

2007-05-25 Thread José Antonio Sánchez
I have some services developed with Axis2 1.1 with the useOriginalwsdl element set to true in the services.xml file. In axis2 1.1, when I wrote the ?wsdl URL in my browser I got the original WSDL as it was requested but with Axis2 1.2 I get the following message: Unable to generate WSDL 1.1 for

Getting an Error while deploying JNI based web service

2007-05-25 Thread Genious Soul
Hi, I just converted my JNI based program into web service. It deployed successfully but when I click to see the WSDL of the deployed service.I got the following error : AXIS error Sorry, something seems to have gone wrong... here are the details: Exception - java.lang.NoClassDefFoundError

Re: raw XML from apache axis

2007-05-25 Thread Demetris G
The link Rich is showing below is the painless way to do - else open a server socket listeing to 127.0.0.1:port, read the http headers, the read the number of bytes dictated by the Content-Length after the blank line at the end of the http headers and store them all in a StringBuffer like one

RE: soapAction versus wsaAction

2007-05-25 Thread Gul Onural
If you use http (or https) as transport mechanism, are these two (syntactically) look the same in the wsdl ? From: Ted Jones [mailto:[EMAIL PROTECTED] Sent: Friday, May 25, 2007 1:42 PM To: axis-user@ws.apache.org Subject: RE: soapAction versus wsaAction One ma

RE: soapAction versus wsaAction

2007-05-25 Thread Ted Jones
One major difference is the wsaAction is transport neutral. If you use JMS to execute a web service, the soapAction would not available without some intermediary router logic. As long as you are using WS-Addressing, the wsaAction will always be available. Ted Fro

Problem w/axis 1.4 and array

2007-05-25 Thread Robert Baruch
Yuck, apparently the attachment got flagged as spam by the mail server. Instead, see this URL for the zip file: http:// chuffyrodents.org/test.zip Begin forwarded message: From: Robert Baruch <[EMAIL PROTECTED]> Date: May 25, 2007 2:28:19 PM EDT To: axis-user@ws.apache.org Subject: Problem w

RE: soapAction versus wsaAction

2007-05-25 Thread Ted Jones
The values need to be valid URIs. They may or may not look the same. Based on what I have seen, the WSDL generated by Axis2 with addressing engaged will create equivalent values for both SOAP and WSA Actions. From: Gul Onural [mailto:[EMAIL PROTECTED] Sent: Frid

Problem w/axis 1.4 and array

2007-05-25 Thread Robert Baruch
Hi all, I'd be lazy and not bother to download and unzip the zip file, so here's the WSDL by itself: http://www.test.com/soap/TestService.wsdl"; xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; xmlns="http:// schemas.xmlsoap.org/wsdl/" xmlns:ns="http://www.w3.org/2001/12/soap- envelop

PGP

2007-05-25 Thread Doug Kunzman
Hi - I have used gnu to verify my download, and wanted to be sure that [EMAIL PROTECTED] signiture is correct as follows, C:\Documents and Settings\dkunzman\Desktop>gpg axis-bin-1_4.zip.asc gpg: Signature made 04/22/06 22:07:13 using DSA key ID 12F3E1DD gpg: Good signature from "David Blevins <[E

[axis2] Web Doc Errors, Web Doc Clarification, and Logging Question

2007-05-25 Thread Nathan Hook
I've been working with axis2 now for a few weeks and overall, I've found the experience enjoyable, but quite frustrating at times. One of the frustrating times came today with trying to implement the logging of the raw SOAP XML messages that are received and sent by the server. There are erro

RE: Problem w/axis 1.4 and array

2007-05-25 Thread Raghu Upadhyayula
Hi Robert, Here is your updated wsdl which will generate a Record[] & transid in the TestResponse. You have to define the Record element separately & then include that as an array in your TestResponse. Specified in bold below. http://www.test.com/so

Re: Problem w/axis 1.4 and array

2007-05-25 Thread Robert Baruch
Hi Raghu, Excellent, that definitely solved the problem. I'd like to know (as an intellectual exercise) why defining minOccurs/maxOccurs in the sequence element isn't allowed, though. Or is it just a limitation of axis 1.4? Thanks! --Rob On May 25, 2007, at 5:34 PM, Raghu Upadhyayula wr

soap or soapenv

2007-05-25 Thread Harrie Hazewinkel
Hallo, I would like to know if someone can tell me the difference between the usage of 'soap' and 'soapenv'? I see the usage of 'soapenv' in the axis2 package, but .NET uses 'soap' and does not accept the 'soapenv'. Is there some parameter one can set for this? message http://schemas.xmlsoap.

register DataHandler

2007-05-25 Thread jy
Hello, We are getting SOAP message with multiple attachements. We are using XMLBean to parse the SOAP message. We also need to access the custom headers in the subsequent part of this multi-part request. It seems like we can do that by implementing a custom DataHandler, but I don't know how to

Re: Help with SwA

2007-05-25 Thread Xinjun Chen
I don't have service.xml. I write a custom MessageReceiver to process the request and response MessageContext. In this way, is the way you suggested still workable? Regards, Xinjun On 5/25/07, Thilina Gunarathne <[EMAIL PROTECTED]> wrote: > The following is the code snippet where I try to enab

HttpClient, PostMethod to SOAP Request

2007-05-25 Thread Christian Ribeaud
Hi, I desperately try to convert a working HttpClient POST method making an authentication with 'application/soap+xml' as content type into a working SOAP Request. The 'client' making the authentication is an instance of org.apache.axis2.transport.SimpleAxis2Server and the link it tries to reach