Any type in AXIS

2002-05-22 Thread Jean-Marc Taillant
Hi all,   This question come after a previous question about "any" type. Could someone tell me how AXIS transform wsdl "any" type. And axis deserialize "any" type ?   Thanks in advance,   Jean Marc

RE: Returning a parameter, ie. an [out] parameter

2002-05-22 Thread Chris Warr
Well, I'm having a nice conversation with myself :) I changed the parameter type of my vb variable in my vb app, from String to Variant and the call works. I get back an IXMLDOMSelection, just gotta work out what to do with that now. Chris. -Original Message- From: Chris Warr [mailto

RE: Returning a parameter, ie. an [out] parameter

2002-05-22 Thread Chris Warr
I tried with a java client and it works fine. I was using MSSoap 2 sp2, I've now upgraded to MSSoap 3.0 beta 1 as it says it has more support for complex types. I'll let you know how I go, if anyone has any more info., feel free to let me know how to do this. Chris. -Original Message

RE: Returning a parameter, ie. an [out] parameter

2002-05-22 Thread Schuring, Tom
hi chris, i don't have a solution but you could try to create a java client with the axis classes and see if it works from java calling java ? that way you eliminate if it is a cross-system problem. tom -Original Message- From: Chris Warr [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 2

RE: Returning a parameter, ie. an [out] parameter

2002-05-22 Thread Chris Warr
I've got a little further, I've found out about Holders now. So I changed the xmlESDO parameter to StringHolder and the wsdl that got generated had the StringHolder defined as a complex type and put the parameter in the response message definition. However, it doesn't work. I still get the sam

Re: Returning a parameter, ie. an [out] parameter

2002-05-22 Thread Eric Rajkovic
Chris, You may want to try to return a complex type from ValidateTailorDetails. Java does not support in/out or out parameters. public TailorDetail ValidateTailorDetails(String esid, String ScreenID, StringxmlESDO, int index){xmlESDO = "blah";return new TailorDetail( 0, xmlESDO);}Eric. Hi, I nee

Java2WSDL problem in namespace for bindings

2002-05-22 Thread Bihani, Swastik
Hi I am running the WSDL2Java on the following class that comes along with the Apache Soap 2.2 samples. samples.mime.MimeTest However, in the bindings, I'm getting a wrong output: http://schemas.xmlsoap.org/soap/http"/> http://schemas.xmlso

Question regarding deploying service using deploy.wsdd

2002-05-22 Thread Chaudhri Rohit-CRC037
Hello, I am deploying a class as a Web Service in AXIS using the deploy.wsdd file. I specify the methods that need to be exposed in the Web Service interface using the tag. The problem that I run into is, that all the methods(private/protected/public) in the class get exposed in the Web Service,

Returning a parameter, ie. an [out] parameter

2002-05-22 Thread Chris Warr
Hi, I need to change a parameters value and return it to the caller (xmlESDO below). My Method looks like this. public int ValidateTailorDetails(String esid, String ScreenID, String xmlESDO, int index) { xmlESDO = "blah"; return 0; } I'm just letting axis generate the WSDL. I

Re: Clients using GET and POST

2002-05-22 Thread Steve Loughran
- Original Message - From: "Sudhir" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 22, 2002 2:26 PM Subject: Re: Clients using GET and POST > hey Steve, > Thanks for the comments. I might have sounded a lil subversive. :). But I > wanted to get things cleared up befo

Re: Axis Newbie

2002-05-22 Thread Sudhir
Title: Axis Newbie Brenda,  You can achieve this using wsdl4j.jar bundled with axis. or.apache.axis.wsdl.WSDL2Java.java will give a better explanation.   sudhir - Original Message - From: Brenda Bell To: Axis Mailing List (E-mail) Sent: Wednesday, May 22, 2002 6:33

"Debate foams over SOAP"

2002-05-22 Thread Ivan Filippenko
This is a bit off-topic, but on the other hand would certainly seem to have relevance for a group such as this.  If any of you have seen the following short article, or would care to take a look, I would be interested to hear your comments: http://www.idg.net/gomail.cgi?id=860672 Then again, lik

Re: Clients using GET and POST

2002-05-22 Thread Steve Loughran
- Original Message - From: "Sudhir" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 22, 2002 10:21 AM Subject: Re: Clients using GET and POST > First of all , thanks everyone for the informative replies. > I may be sounding stupid here, but. > If http://www.mysite.com/G

RE: Axis Newbie

2002-05-22 Thread Brenda Bell
Title: RE: Axis Newbie Thanks so much to you and others who responded to my questions.  I think I'm home free.

Re: Access to HttpSession

2002-05-22 Thread Mark_Palmer
Take a look at the MessageContext class in Axis. You can use the following: MessageContext.getCurrentContext().getSession() This will return an Axis "Session" object. You can use this to indirectly get/set attributes stored in the HttpSession. -Mark

Access to HttpSession

2002-05-22 Thread Craig Servin
Is there a way to get at the session data from a SOAP service written in Axis? Right now we do all of our authentication via some Filters that once you are authenticated put some objects to allow app level security queries into the HttpSession. It would be nice if we could reuse that same stru

Re: Attachment confusion...

2002-05-22 Thread Russell Butek
This is a legitimate question. The attachment sample is a DII (dynamic invocation) sample for good reason. AXIS doesn't yet support attachments in WSDL. I believe it MUST before AXIS 1.0 is released, but how soon that happens is unknown. Russell Butek [EMAIL PROTECTED] Douglas Bitting <[EMAI

Attachment confusion...

2002-05-22 Thread Douglas Bitting
Hi. Forgive me if this has already been asked and answered. I looked through the archives, but could not find what I was looking for. I'm kinda new to all this, so forgive me if this is a silly question. I'm looking at the attachments example, and I'm wondering about the generated WSDL (i.e.

Question about Arrays

2002-05-22 Thread Barbara Noble
I am trying to send back and forth to my service a complex object. This complex object has within it an array. The wsdl seems to be created correctly; it follows. However, when I run my test client, and send the complex object of type Bd, I get the following error: ERROR BeanSerializer

Re: Clients using GET and POST

2002-05-22 Thread Sudhir
First of all , thanks everyone for the informative replies. I may be sounding stupid here, but. If http://www.mysite.com/GetOrderStatus?OrderNumber=100 can be used for accessing a web service, then what is the difference between a normal web based app and this kind of web service? then can we term

RE: Failing on step 5 of install steps

2002-05-22 Thread Chris Carver
Thanks Dan,   That was it! Well, first I had to upgrade Java from 1.2.2 to Java 1.4. I still got the error, but your step instructions fixed that.   Chris   -Original Message- From: Dan Chisholm [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 7:34 PM To: [EMAIL PROTEC

Re: Clients using GET and POST

2002-05-22 Thread Steve Loughran
- Original Message - From: "Tako Schotanus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 22, 2002 12:47 AM Subject: RE: Clients using GET and POST >Ah, it all becomes a lot clearer now. After reading the MSDN article I also understand yesterday's post >about SOAP no

RE: return types of void

2002-05-22 Thread Agrawal, Anuj (Anuj)** CTR **
Thanks! That got rid of the NullPointerExceptions. 8) > -Original Message- > From: Russell Butek [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 21, 2002 1:04 PM > To: [EMAIL PROTECTED] > Subject: Re: return types of void > > > I would have guessed that this message clause is illegal.

Any element

2002-05-22 Thread Jean-Marc Taillant
Hi all, I have a problem when i try to deserialize "any" wsdl type, i have a complex type ( used in my SOAP response) as follow:                 and i my SOAP response i got the following ( all the request is ok):             ( in this case it is an XML tree, but c

RE: Axis Newbie

2002-05-22 Thread Provencher, Samuel
Here's the that URI for wsdl4j... http://www-124.ibm.com/developerworks/projects/wsdl4j -Original Message- From: Stefan Henke [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 10:26 AM To: [EMAIL PROTECTED] Subject: AW: Axis Newbie Hi Brenda, maybe you should look at wsdl4j whi

AW: Axis Newbie

2002-05-22 Thread Stefan Henke
Hi Brenda, maybe you should look at wsdl4j which is included in axis. I don´t know any url for wsdl4j. The only thing I know is that it does the job you need and it was created by ibm and meanwhile it´s opensource (´but I´m not sure). Hope this helps Stefan -Ursprüngliche Nachricht- Von:

Re: Axis Newbie

2002-05-22 Thread Paul Hunnisett
I'm currently looking at JAXR as a UDDI API - I'll let you know if it's any good. Paul Hunnisett On Wed, 2002-05-22 at 14:33, Brenda Bell wrote: > This is somewhat related to Paul's question about UDDI, but I'm hoping > someone will point me in the right direction to solve my problem. > > I hav

Axis Newbie

2002-05-22 Thread Brenda Bell
Title: Axis Newbie This is somewhat related to Paul's question about UDDI, but I'm hoping someone will point me in the right direction to solve my problem. I have been searching everywhere for toolkits and API's that will let me do UDDI queries and parse WSDL files into an object model. For

RE: WSDL2Java: how to manage schema restriction/facets

2002-05-22 Thread St-Germain, Sylvain
I faced that problem a little while ago and I am under the impression that the setter should be generated accordingly to perform validation. This would allow Axis to support other restrictive types like xsd:TOKEN, xsd:NMTOKEN, xsd:NCName as well as custom ones. Sylvain. -Original Message--

AW: Axis and UDDI

2002-05-22 Thread Stefan Henke
Hi Paul, AFAK, Axis has no support for uddi and/or jaxr. I think you have to use other libraries like uddi4j to get support for uddi. Stefan > -Ursprüngliche Nachricht- > Von: Paul Hunnisett [mailto:[EMAIL PROTECTED]] > Gesendet: Mittwoch, 22. Mai 2002 15:00 > An: [EMAIL PROTECTED] > Be

Axis and UDDI

2002-05-22 Thread Paul Hunnisett
What support does Axis have for UDDI? Does it support JAXR? Paul Hunnisett

RE: Clients using GET and POST

2002-05-22 Thread Tako Schotanus
Ah, it all becomes a lot clearer now. After reading the MSDN article I also understand yesterday's post about SOAP not needing WSDL and vise versa. The fact that AXIS being a SOAP toolkit only supports the SOAP binding for WSDL is only logical. (That doesn't mean I wouldn't still like GET and

RE: More problems with document style

2002-05-22 Thread Ramon Turnes
Your SOAP message definitely does not look OK. You are trying to invoke a service named AdvertisementService and this information is not carried by the SOAP message. Your SOAP message should look like this: POST /axis/services/AdvertisementService HTTP/1.0 Content-Length: 2418 Host: localhost Co