RE: [Axis2] JMS tutorial? [signed]

2006-02-10 Thread Michael Laccetti [c]
> I run axis2 in a few web applications - hibernate, struts, > spring etc. Its just a matter of having the modules and > services directory, along with axis2.xml, under your apps > WEB-INF. You'll also need to add the relevant parts from the > axis2.war web.xml into your apps web.xml . If you

RE: [Axis2] JMS tutorial? [signed]

2006-02-10 Thread Michael Laccetti [c]
> Hi Michael, > > Nice to hear that. But we have lot more to come and > stabilize, so I don't think this is the perfect time for > someone to come in to conclusion abt Axis2. We are getting > more and more better, with the valuable comments and > feedbacks from the users here. > > -- Chinthak

Re: Arbitrary Authenitcation Types (based on SOAP Headers)

2006-02-10 Thread Scott McCoy
That is the client answer, sure.Virtually what I was looking for, but I wanted the server answer.!I want to use wsdl2java to build a service I will deploy with axis, rather than connect to.  I am trying to figure out the most pragmatic fasion for building a "component", that I could stuff (possibly

Re: [axis2] skip tests while building

2006-02-10 Thread Davanum Srinivas
"maven -Dmaven.test.skip=true" On 2/10/06, Noah Levitt <[EMAIL PROTECTED]> wrote: > How do you build axis2 without going through all the tests? > > Noah > -- Davanum Srinivas : http://wso2.com/blogs/

[axis2] skip tests while building

2006-02-10 Thread Noah Levitt
How do you build axis2 without going through all the tests? Noah

Re: A request for comments on some wanted features

2006-02-10 Thread robert
Em Sexta 10 Fevereiro 2006 12:23, o Rodrigo Ruiz escreveu: > Hi all, > > I have some web services with the following requirements: > > - Ability to receive very large attachments (several GB length). > - Security provided by WSS4J Message level security on attachments of several GB length ? Web se

Re: SOAP messages format

2006-02-10 Thread Anne Thomas Manes
You need to add one more level of wrapping so that your echoed values are returned in a single return bean:                                      On 2/

RE: Arbitrary Authenitcation Types (based on SOAP Headers)

2006-02-10 Thread Rave, Mark
I don't know if this is what you are asking but it can't hurt to offer it. I used WSDL2Java to generate the stubs and I also had to have authentication information in the SOAP header, this is how I did it but it might not be the best way: SomethingService service = new SomethingServiceLocato

Re: Arbitrary Authenitcation Types (based on SOAP Headers)

2006-02-10 Thread Scott McCoy
I didn't get a response to this, so I thought I'd re-post it.I just want a handler, before my handler, to get some values from the header and have the ability to stop the request.How does that happen? On 2/8/06, Scott McCoy <[EMAIL PROTECTED]> wrote: Hello All,    I have a specification that demand

[Axis2-0.94] how to send faults?

2006-02-10 Thread Andreas Bobek
Hi all, I want to send WS* specific faults to clients (e.g. wsa:DestinationUnreachable in case of WS-Addressing or wse:FilteringNotSupported in case of WS-Eventing). Have I to use AxisEngine.createFaultMessageContext() or have I to use a specific mechanism. I can't find a related documentation

Re: SOAP messages format

2006-02-10 Thread [EMAIL PROTECTED]
H ...I made a new testing WSDL file (see attached file) and generated a WS using Axis from Eclipse. The test resulted in that I can send a SOAP message with two parameters, I can see the server receives them, but the response contains only the first parameter of the two expected.Any ideas/sugge

Re: Help! - WebSphere 5.1.1 issue with attachments

2006-02-10 Thread Mukesh Kumar Maniraj
Sorry, I meant responseMsg.countAttachments(), not esponseMsg.addAttachmentPart(), -Mukesh On 2/9/06, Pradeep Reddy <[EMAIL PROTECTED]> wrote: Mukesh!Thanks for the response.If i dont call responseMsg.addAttachmentPart(), i wont be able to add the attachment to the response. Is there any other way

RE: custom SoapFault in Axis2

2006-02-10 Thread donnerdrummel2000-mailing
Hi Magnus, The problem you probably have is that your fault is a SOAP 1.1 fault. The Axis2 AxisFault is mapped to SOAP1.2 Fault wich is a superset of the 1.1 one. To create a 'real' SOAP1.1 Fault have a look at org.apache.axis2.soap.impl.dom.soap11.SOAP11FaultImpl Ted --- Magnus Olsson <[EMAIL PR

Re: [1.3] How to pass the authentication information, i.e. username, to the service?

2006-02-10 Thread Paul Spencer
Rodrigo, You had a type-o in the method name. The correct method is: MessageContext.getCurrentContext().getUsername(); This is exactly what I was need :) Thank you, Paul Spencer Rodrigo Ruiz wrote: Hi Paul, The method is: MessageContext.getCurrentContext.getUserName(); Regards, Rodri

Axis2: NullPointer in Eclipse code generation

2006-02-10 Thread Damien Evans
Hi,   I’m doing some MTOM stuff, and am starting to experiment with Axis2 (v0.9.4) as the toolkit.  So far I like everything I see.   When I tried using the Eclipse plugin to generate code for either of the attached WSDL files from whitemesa.net, I get a NullPointerException dialog box.

custom SoapFault in Axis2

2006-02-10 Thread Magnus Olsson
Hi, is it possible to create the following SOAP Fault in axis2? http://schemas.xmlsoap.org/soap/envelope/>"> http://www.company.se/faultcodes/2005-12-01/>"> c:InvalidInsuranceId Illegal insurance number http://schemas.foo.org/foo/2005-12-01/>">

content-transfer-encoding: base64

2006-02-10 Thread Argo
Hi all, Is it possible specify to Content-Transfer-Encoding:base64 for ws attachment with Axis 1.3? I have a generated client class with method with DataHandler. DataHandler DataSource is simple ByteArrayDataSource. Bytes are encoded as base64. -- Argo

Re: [Axis2] JMS tutorial?

2006-02-10 Thread robert
> I do accept that we lag in documentations, coz we are concentrating more > and more on improving Axis2. Iksrazal (ohh, sorry Lazarski ;-) ) and > Chatra and helping with us to improve our documentations these days. > I run axis2 in a few web applications - hibernate, struts, spring etc. Its jus

Re: [1.3] How to pass the authentication information, i.e. username, to the service?

2006-02-10 Thread Rodrigo Ruiz
Hi Paul, The method is: MessageContext.getCurrentContext.getUserName(); Regards, Rodrigo Ruiz Paul Spencer wrote: I have a webservice the requires authentication. My service need access to the username for auditing purposes. I am using the WSDLJava utility to generate the source. How c

[1.3] How to pass the authentication information, i.e. username, to the service?

2006-02-10 Thread Paul Spencer
I have a webservice the requires authentication. My service need access to the username for auditing purposes. I am using the WSDLJava utility to generate the source. How can my service get access to the authenticated username? Paul Spencer

A request for comments on some wanted features

2006-02-10 Thread Rodrigo Ruiz
Hi all, I have some web services with the following requirements: - Ability to receive very large attachments (several GB length). - Security provided by WSS4J I am currently using Axis 1.2, and planning to use Axis 2 once a stable release is published. Playing with these services, I have not

Re: Element undefined in WSDL2Java

2006-02-10 Thread Chris Mannion
Thanks Anne,   I was hoping I was doing something stupid but I just couldn't see it. Chris MannionIT Junction020 8452 4274 - Original Message - From: Anne Thomas Manes To: axis-user@ws.apache.org Sent: Friday, February 10, 2006 1:30 PM Subject: Re: Element undefin

Re: Element undefined in WSDL2Java

2006-02-10 Thread Anne Thomas Manes
Your namespace declaration for the xsd schema is wrong.It should be:xmlns:xsd="http://www.w3.org/2001/XMLSchema" AnneOn 2/10/06, Chris Mannion < [EMAIL PROTECTED]> wrote:Hi AllI'm trying to use the WSDL2Java tool to generate both client stubs and server-side skeletons from a wsdl file that I have w

Element undefined in WSDL2Java

2006-02-10 Thread Chris Mannion
Hi All I'm trying to use the WSDL2Java tool to generate both client stubs and server-side skeletons from a wsdl file that I have written and I'm getting a confusing error. The error message is java.io.IOException: Element {urn:formTypeWs}Transactions is referenced but not defined. at org.apache.a

problem sending attachments with Axis 1.2 when using non Axis clients

2006-02-10 Thread Frederik Colardyn
Hello,   We've got a problem when using Axis 1.2 as a webservice to send attachments to non Axis clients.   Our wsdl defines the binary attachment as xsd:hexBinary, which translates to when deployed and asking the wsdl from the webservice.   The problem is the soap envelope it sends back to