Document style deployment descriptor

2004-06-17 Thread David Song
Can anyone provide me with a sample deploy.wsdd which shows document style? Is it as simple as just saying like this: service name=Foobar provider=java:DOCUMENT will this work? Thanks! David

Difficulty developing Document Style web service using Axis 1.2

2004-06-17 Thread David Song
I am having a very hard time trying to development a Document Style web service. I was able to use Java2WSDL -y flag to generate the WSDL with Document Style. But how do I deploy the web service? I cannot find an example of deploy.wsdd which shows document style deployment. Also the

RE: Document style deployment descriptor

2004-06-17 Thread Anne Thomas Manes
No -- you need to use the java:RPC provider. Here's an example: http://www.osmoticweb.com/axis-wsdd/service.htm -Original Message- From: David Song [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 2:32 AM To: [EMAIL PROTECTED] Subject: Document style deployment descriptor Can

WS-I Test on doc/literal Web Service

2004-06-17 Thread Junaid . Bhatra
This is not a question on Axis, but rather a problem that I'm facing while running the WS-I test tool on my doc/literal Web Services. I have doc/literal Web Services with some operations whose return type is void. The WSDL looks like: message name=Request part name=input

Re: WSS4J

2004-06-17 Thread Chris Haddad
Dorner - yes, i have integrated WSS4J and Axis using SOAP handlers. what problems are you experiencing? /Chris -- Original Message -- From: Dorner Thomas [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 16 Jun 2004 13:19:51 +0200 Hi

re-use of serialiser

2004-06-17 Thread Martin Hamel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'd like to be able to use the serializer and deserializer of axis outside of an axis request. I did build many new serializers. I'm thinking about building wrapper classes around the serializers. But then I'd need to redo all the axis

Re: WS-I Test on doc/literal Web Service

2004-06-17 Thread Jim Murphy
What does your Binding look like? Jim Mindreef, Inc. [EMAIL PROTECTED] wrote: This is not a question on Axis, but rather a problem that I'm facing while running the WS-I test tool on my doc/literal Web Services. I have doc/literal Web Services with some operations whose return type is void. The

Re: WS-I Test on doc/literal Web Service

2004-06-17 Thread Junaid . Bhatra
binding name=. type=mxws:PortType soap:binding style=document transport=http://schemas.xmlsoap.org/soap/http/ operation name= soap:operation style=document/ input soap:body use=literal/

Axis 1.2 final

2004-06-17 Thread Sandeep Arshanapally
Title: Axis 1.2 final Hi, When is the 1.2 final release scheduled to come out ? Thanks, Sandeep

Populate WSDL2Java object from XML file.

2004-06-17 Thread jasenj1
How do you populate a WSDL2Java created object from an XML file? I've hunted around in the mailing list archives, and I've seen this question a few other times, but no answers that were clear enough for me to understand. Scenario: We have a WSDL which describes some service and imports some

EJB user access

2004-06-17 Thread Steve Wells
I have configured an EJB to be used as an Axis Web Service under BEA I have specified parameter name=allowedRoles value=*/ in the wsdd file I get the following error: faultstringjava.rmi.AccessException: [EJB:010160]Security Violation: User: 'anonymous' has insufficient permission to access

exceptiong handling

2004-06-17 Thread Vikas Phonsa
Hi This is not an axis specific issue but I would appreciate any help. I am using axis and am trying to implement exception handling functionality for my web service but I'm running into an issue. My Exception class is:

RE: session in AddressBook sample

2004-06-17 Thread Ivan Vasquez
I'm glad you found the answer. I haven't used the client-side handler so far. I was pretty happy when I got sessions to work, though, they are key for long-term interactions. Good luck, Ivan. -Original Message- From: Yakubovich, Alexey [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16,

RE: Exposing an EJB as a doc-literal web service

2004-06-17 Thread Rahul Jain
Anne, Hmmm. Now things are making some sense. Do other web services toolkit also differentiate between MESSAGE and DOCUMENT style services or is it just Axis-specific? Because as far as I know, I haven't heard of any MESSAGE style service as such outside of Axis docs. Everybody refers to the

purpose/usage of .wsdd file

2004-06-17 Thread pyounguk cho
Hello, Could anybody explain what deployment.wsdd file is for? Is it used to generate wsdl file on the fly? Or, is it used to map and resolve runtime information necessaryto processeach soap request sent todeployed services? The answer to the above question will help

FW: exceptiong handling

2004-06-17 Thread Vikas Phonsa
Hi This is not an axis specific issue but I would appreciate any help. I am using axis and am trying to implement exception handling functionality for my web service but I'm running into an issue. My Exception class is:

Re: Populate WSDL2Java object from XML file.

2004-06-17 Thread Matt Payne
Jasen - Since classes generated by wsdl2java are just POJOs you can use Java's built in XMLEncoder class. There are a few pointers about this here: http://mattpayne.org/b.cgi/Programming/Java/XMLEncoder.pf -Matt On Thu, 17 Jun 2004 14:39:52 -0400, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

Axis 1.2 Beta issue with derived classes

2004-06-17 Thread Saravanan Markandeyan
Title: Axis 1.2 Beta issue with derived classes Axis 1.2 beta is not returning derived class names in the multiRefs as it used to in Axis 1.1. Any input on this would be great; is this a known issue? Abstract Example below illustrates the issue: public class A { private String

RE: Axis 1.2 final

2004-06-17 Thread Galbreath, Mark A
tomorrow -Original Message- From: Sandeep Arshanapally [mailto:[EMAIL PROTECTED] Sent: Thursday, June 17, 2004 2:19 PM To: [EMAIL PROTECTED] Subject: Axis 1.2 final Hi, When is the 1.2 final release scheduled to come out ? Thanks, Sandeep application/ms-tnef

RE: Populate WSDL2Java object from XML file.

2004-06-17 Thread Anderson Jonathan
Ever looked into Axis MSG style calls? This is client code, but you can do the same thing on the server side as well, assuming you've built a MSG style service. Check out the Axis docs for more information. Service service = new Service(); Call call = (Call) service.createCall();

Re: Axis 1.2 final

2004-06-17 Thread Davanum Srinivas
Sandeep, we're currently working on the tck for saaj and jax-rpc. sometime next month would be my best guesstimate. thx, dims PS: Mark, please act responsibly :) On Thu, 17 Jun 2004 16:18:24 -0400, Galbreath, Mark A [EMAIL PROTECTED] wrote: tomorrow -Original Message- From:

RE: Axis 1.2 final

2004-06-17 Thread Sandeep Arshanapally
Title: RE: Axis 1.2 final Thanks Srinivas for your response. We were planning on moving from 1.1 final to 1.2 Beta but are struck with the issue with derived classes: Do you know what might be the problem here ? Thanks, Sandeep Axis 1.2 beta is not returning derived class names in

Re: Axis 1.2 final

2004-06-17 Thread Davanum Srinivas
Please see http://marc.theaimsgroup.com/?l=axis-devm=108721797618364w=2 - Original Message - From: Sandeep Arshanapally [EMAIL PROTECTED] Date: Thu, 17 Jun 2004 18:56:01 -0400 Subject: RE: Axis 1.2 final To: [EMAIL PROTECTED] Thanks Srinivas for your response. We were

Re: Axis 1.2 Beta issue with derived classes

2004-06-17 Thread Davanum Srinivas
Please open bug report with a sample to recreate the problem (see http://marc.theaimsgroup.com/?l=axis-devm=108721797618364w=2 for instructions) thanks, dims - Original Message - From: Saravanan Markandeyan [EMAIL PROTECTED] Date: Thu, 17 Jun 2004 16:16:12 -0400 Subject: Axis 1.2 Beta

RE: purpose/usage of .wsdd file

2004-06-17 Thread Anne Thomas Manes
A WSDL file describes the service from the clients point of view it specifies the name of each operation, and the format and encoding of the message A WSDD file describes the service from the runtime servers point of view it provides information that the runtime server uses to process

RE: Exposing an EJB as a doc-literal web service

2004-06-17 Thread Anne Thomas Manes
It's important to distinguish between the message encoding style and the programming style. You specify the message encoding style using the WSDL style and use attributes. You specify the programming style in the WSDD style attribute. There are three types of message encoding style: - rpc/encoded

RE: WS-I Test on doc/literal Web Service

2004-06-17 Thread Anne Thomas Manes
Your WSDL looks correct. Mind you, the error message makes sense. You do have a doc-lit binding, but the child element of soap:body is not an instance of the global element declaration referenced by the corresponding wsdl:part But I suspect that the analyzer tool is not properly recognizing that

Re: exceptiong handling

2004-06-17 Thread Dhanush Gopinath
Vikas, I doubt that your excpetion class should extend AxisFault. But I am not sure about it , just have a hunch . Cheers Dhanush - Original Message - From: Vikas Phonsa To: '[EMAIL PROTECTED]' Sent: Friday, June 18, 2004 1:35 AM Subject: FW: exceptiong handling