RE: SOAP header and patching problem

2002-12-04 Thread St-Germain, Sylvain
I have a patch on the way, only the test case has to be finalized... I can send it to you. -Original Message- From: Julia Tertyshnaya [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 5:57 AM To: [EMAIL PROTECTED] Subject: SOAP header and patching problem Hello all, Sorry I

RE: Server side header management

2002-12-02 Thread St-Germain, Sylvain
Is it true to say that the only way to change the header information is through a handler? I am trying to write a test case that does send back a received header but I would like to avoid writing a handler if possible... Sylvain. -Original Message- From: Tom Jordahl [mailto:[EMAIL PROTEC

RE: Cannot find deserializer error

2002-11-11 Thread St-Germain, Sylvain
Axis will not register mapping for type it does not find references to in the WSDL, this is (was) mainly a problem when dealing with header, however your problem sound similar, did you use -a when you generated your code? Sylvain. -Original Message- From: dweber [mailto:dweber@;asyst-conn

RE: Packaging question

2002-11-07 Thread St-Germain, Sylvain
directory requires a 3rd party jar file.  Should this file be packaged into my jar file or placed somewhere else? -Original Message-----From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]]Sent: Thursday, November 07, 2002 2:05 PMTo: [EMAIL PROTECTED]Subject: RE: Packagin

RE: Packaging question

2002-11-07 Thread St-Germain, Sylvain
Title: RE: ResultSet arguments Axis is a web app, web app classes and jars go in the WEB-INF/classes and lib folders. Sylvain. -Original Message-From: Barry Lulas [mailto:[EMAIL PROTECTED]]Sent: Thursday, November 07, 2002 11:18 AMTo: '[EMAIL PROTECTED]'Subject: Packaging q

RE: SOAP Header

2002-11-04 Thread St-Germain, Sylvain
Once the patch submitted in http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13618 is integrated you will be happy to have all the complexTypes your WSDL contains generated... ;-) This patch will prevent you from handling the header yourself, the portType will cache them for you and roundtrip t

RE: Soap header support with generated stubs...

2002-10-17 Thread St-Germain, Sylvain
See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13618 Sylvain. -Original Message- From: Daniel Hägg [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 17, 2002 2:53 AM To: [EMAIL PROTECTED] Subject: Re: Soap header support with generated stubs... Hi! As far as I know there is no w

RE: support for user defined exceptions

2002-07-24 Thread St-Germain, Sylvain
You can easily set all attributes of the thrown soap fault. Have a look at the code below. In your service implementation you can do: AxisFault af = new AxisFault(); af.setFaultActor("Sylvain"); af.setFaultCode("This is a faultCode"); af.setFaultDetailString("This is a fault detailStr

RE: SSL and WSDL2Java

2002-07-24 Thread St-Germain, Sylvain
This class seems to be in Java 1.4... -Original Message- From: Stocker, Walter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 4:42 AM To: [EMAIL PROTECTED] Subject: SSL and WSDL2Java Hello, i am currently implementig a webservice on an ssl-secured webserver. Now i have a pr

RE: [Namespace] : personnalize namespace prefix

2002-07-22 Thread St-Germain, Sylvain
Pascal, I do not know your motivation but you seems to be taking the wrong route, namespace prefix are irrelevant, you should not rely on them, you will get burn when doing your interoperability testing, SOAP::Lite will do something else, so will dotNet Sylvain. -Original Message

RE: Including SOAP header information in WSDL

2002-07-22 Thread St-Germain, Sylvain
I doubt since Axis do not yet managed SOAP header from the WSDL. Sylvain. -Original Message-From: Jerry Thomas [mailto:[EMAIL PROTECTED]]Sent: Monday, July 08, 2002 10:58 PMTo: Apache Axis Users GroupSubject: Including SOAP header information in WSDL Apparently, .NET

RE: access soap action

2002-07-04 Thread St-Germain, Sylvain
Look at the wsdl:binding section of your WSDL, the SOAPAction is an attribute of the soap:operation element. Sylvain. -Original Message- From: Enner Lee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 3:04 PM To: [EMAIL PROTECTED] Subject: access soap action how do you find o

RE: wsdl2Java proxy classes and SOAP headers

2002-07-03 Thread St-Germain, Sylvain
No that is a different story. We are talking about automatic header handling from the WSDL file while you refer to to hability for axis to serialize objects as SOAP Headers. If you are adding your headers in the envelope manually you are fine, if you are tired of doing this and are using a well

RE: Axis - unofficial SOAP Header support...

2002-07-02 Thread St-Germain, Sylvain
Doh! Wrong client code... This setHeader() is more appropriate... ((Stub)binding).setHeader("biBusHeader", bibus, HeaderLifeCycle.REPLACE ); ...it is a little ugly... comment's welcome! Sylvain. -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]

Axis - unofficial SOAP Header support...

2002-07-02 Thread St-Germain, Sylvain
Well, due to the overwhelming demand here is the patch... It was generated from today's CVS. There is a minor fix in there as well (JavaStubWriter.java) that forces WSDL2Java (using -a) to define the mapping for all types even when not directly referred to in the WSDL. Do not hesitate to send m

RE: wsdl2Java proxy classes and SOAP headers

2002-07-02 Thread St-Germain, Sylvain
Axis does support SOAP header but not yet out of the box. I.e. wsdl2java ignores the soap:header entries in the WSDL. I have a patch for it but it has not yet made its way into the main branch. Let me know if you are interested I can post it. Sylvain. -Original Message- From: Marti

RE: Custom Exception Handling

2002-06-26 Thread St-Germain, Sylvain
Did you search the Axis maling list... http://marc.theaimsgroup.com/?l=axis-user&m=102400371914481&w=2 Sylvain. -Original Message- From: G, Sreenivasa (MED) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 4:24 AM To: '[EMAIL PROTECTED]' Subject: Custom Exception Handling Please

RE: Custom Exceptions

2002-06-13 Thread St-Germain, Sylvain
atch block. It will > however go to an AxisFault catch block. > I think that custom exception mappings is not yet supported in Axis. > > Any custom Java exception is converted to an AxisFault by the Axis > Engine and on the client you can catch an AxisFault but not an > EInva

RE: Custom Exceptions

2002-06-12 Thread St-Germain, Sylvain
Depending on the complexity of your EInvalidCustomer class you could maybe (in the mean time) stuff an XML document in the faultDetail.   I do not have Axis servers yet (mainly involved in client side stuff) so this is not something I need to get involved in yet but if I would have to throw

RE: Custom Exceptions

2002-06-12 Thread St-Germain, Sylvain
I may be misunderstanding your question but since I can throw an AxiFault shouldn't I be able to throw a descendent of AxisFault and, assuming it is a known type, expect the serialization to occur? Sylvain. -Original Message- From: Bob Cotton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, J

RE: provider RPC versus MSG

2002-06-04 Thread St-Germain, Sylvain
I do not know mozilla 1.0rc3 but if you are going from an RPC approach to document you should no longer do an operation. But rather take a DOM and stuff it into the SOAP:Body. Sylvain. -Original Message- From: Heitzso [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 3:47 PM To: [

RE: href, mozilla soap, and custom serializers

2002-06-04 Thread St-Germain, Sylvain
to quickly set PROP_DOMULTIREFS false server side I'ld appreciate the info. Thanks, Heitzso On Tue, 2002-06-04 at 13:03, St-Germain, Sylvain wrote: > Try puttin this line in your Stub's createCall method. > > import org.apache.axis.AxisEngine; > call.setOption(AxisEngine.PROP_DOMULT

RE: Soap header, Authentication

2002-06-04 Thread St-Germain, Sylvain
Have a look at the Call object. You will see that it holds an Vector of SOAPHeaderElement. Sylvain. -Original Message- From: Anna Chen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 12:18 PM To: [EMAIL PROTECTED] Subject: Soap header, Authentication Hi, could anyone tell me

RE: href, mozilla soap, and custom serializers

2002-06-04 Thread St-Germain, Sylvain
Try puttin this line in your Stub's createCall method. import org.apache.axis.AxisEngine; call.setOption(AxisEngine.PROP_DOMULTIREFS, new Boolean(false)); Sylvain. -Original Message- From: Heitzso [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 04, 2002 12:24 PM To: [EMAIL PROTECTED] Subj

Re: WSDL2Java and javadoc comments - why not?

2002-06-04 Thread St-Germain, Sylvain
I found this thread in the archive that mention that WSDL2Java was to be updated for beta2 in order to spit out documentation notes as javadoc. How do I get the doc bits like those... Details about one piece of logon information. ...carried in my java co

Running axis in two distinct webapps in tomcat.

2002-06-03 Thread St-Germain, Sylvain
Anyone has ever been sucesfull with this?    I lost the exception I get at tomcat startup, but it has to do with a configuration file... -- Sylvain This message may contain privileged and/or confidential information. If you have received this e-mail in error or are not the intended re

RE: AxisFault vs SOAP Fault

2002-06-03 Thread St-Germain, Sylvain
I did not figure how we can throw your own fault type, which seems possible from what I am reading here, however, you can get access to all of the content of the faultDetail. Here is some sample code... Element[] detail = e.getFaultDetails(); for (int i=0; imailto:[EMAIL PROTECTED]] Sent: Thurs

RE: WSDL2Java: abstract class generated for referenced type?!?

2002-05-30 Thread St-Germain, Sylvain
Use the -a switch on WSDL2Java. Sylvain. -Original Message- From: Ronald Hütter [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 30, 2002 5:19 AM To: [EMAIL PROTECTED] Subject: WSDL2Java: abstract class generated for referenced type?!? I defined a service, which uses a complex type. The c

RE: HoTo setReturnType of an Object

2002-05-24 Thread St-Germain, Sylvain
I am surprised when reading the axis users list recently by the number of people doing everything by hand and thus not benefiting from the power and ease of the Axis's WSDL2Java component? Many problems seems related to technicality that the code generated by WSDL2Java takes care of. One thing

RE: Design guidelines for web service interfaces?

2002-05-24 Thread St-Germain, Sylvain
I get it. We have avoided "boxcaring" for this first version, we came up with the same questions as you. One of the thing we did to help us out on the performance side is passing array of things. If the operation fails for one object the whole transaction fail. This being said the complex

RE: Design guidelines for web service interfaces?

2002-05-24 Thread St-Germain, Sylvain
Your question is somewhat vague so I am not too sure what kind of problem you are facing, however something I can tell you is that I could implements a rather large API using method overloading and abstract complex base types. Sylvain. -Original Message- From: Ronald Hütter [mailto:[EMAI

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--

RE: How to ask Axis to start a WebServcie

2002-05-16 Thread St-Germain, Sylvain
d'origine----- De : St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Envoyé : jeudi 16 mai 2002 16:20 À : [EMAIL PROTECTED] Objet : RE: How to ask Axis to start a WebServcie I do not know if Axis allows that but for sure you could trigger it with another serlvet which on startup would simply mak

RE: How to ask Axis to start a WebServcie

2002-05-16 Thread St-Germain, Sylvain
I do not know if Axis allows that but for sure you could trigger it with another serlvet which on startup would simply make a call to somekind of init() method in your web service to get it started... Sylvain. -Original Message- From: Benazech Cédric [mailto:[EMAIL PROTECTED]] Sent: Thur

RE: How to start learning SOAP call...

2002-05-13 Thread St-Germain, Sylvain
What I do is I have an object that I store in the Servlet application scope memory that interface with my Axis WebService. In the JSP that do the work. I simply do: // Retreive the WebService interface object that we cache as an // application scoped object. WSInterfacews = (WSInterface)appl

RE: Derivation from anyType

2002-05-07 Thread St-Germain, Sylvain
ified by myself). To resolve this issue, I need to find out whether gSOAP generated WSDL is incorrect, or Axis Java generation is incorrect, and making sure that VisualStudio.NET can grok the generated WSDL too. cheers, Simon > -Original Message- > From: St-Germain, Sylv

RE: Questions????

2002-05-07 Thread St-Germain, Sylvain
I do not think this is Axis related, looks like you are running out of memory... Maybe should try starting your VMs with those... -Xmsset initial Java heap size -Xmxset maximum Java heap size -Xssset java thread stack size have a look at java non-standard opt

RE: Derivation from anyType

2002-05-07 Thread St-Germain, Sylvain
If my memory serves me right it is JAX-RPC (which Axis implements) that do not define any java mapping for the XML xsd:anyType type. I simply avoided using it. May I ask what is the purpose of extending xsd:anyType? If you need an abstract layer maybe you should do something like:

RE: SSL Tomcat and Axis

2002-05-06 Thread St-Germain, Sylvain
HOWTO.html for some info on this. /Pankaj > -Original Message----- > From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 03, 2002 2:26 PM > To: Axis-User (E-mail) > Subject: SSL Tomcat and Axis > > > I have followed the instructions @ > ht

RE: Polymorphism support with Web Services?

2002-05-06 Thread St-Germain, Sylvain
Have a look at this thread. http://marc.theaimsgroup.com/?l=axis-user&m=101966931316371&w=2 Sylvain. -Original Message- From: Oliver Suciu [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 8:46 PM To: [EMAIL PROTECTED] Subject: Re: Polymorphism support with Web Services? You mean me

SSL Tomcat and Axis

2002-05-03 Thread St-Germain, Sylvain
I have followed the instructions @ http://xml.apache.org/soap/docs/install/FAQ_Tomcat_SOAP_SSL.html Although I can see the request coming out and back in (using tcpmon) the process never seems to terminate. Anyone successfully achieved this? -- Sylvain This message may contain privileged and/o

RE: UDDI Issues

2002-05-03 Thread St-Germain, Sylvain
If you need an internal UDDI repository I tried the one bundled with the IBM WebService toolkit and it was quite neat. Sylvain. -Original Message- From: Vinit Kumar [mailto:[EMAIL PROTECTED]] Sent: Friday, May 03, 2002 7:29 AM To: [EMAIL PROTECTED] Subject: UDDI Issues Hi All does axis

RE: How to retrieve an XML document from a service?

2002-04-30 Thread St-Germain, Sylvain
XML from the SOAP envelope? > >But wouldn't it be better if WSDL2Java would generate this code? It seems >simple enough. >Or is the .NET way not standard enough to it that way? > >-Tako > > > > -Original Message- > > From: St-Germain, Sylvain [mai

RE: How to retrieve an XML document from a service?

2002-04-30 Thread St-Germain, Sylvain
elope? But wouldn't it be better if WSDL2Java would generate this code? It seems simple enough. Or is the .NET way not standard enough to it that way? -Tako > -Original Message----- > From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] > Sent: dinsdag 30 april 2002 16:06 >

RE: How to retrieve an XML document from a service?

2002-04-30 Thread St-Germain, Sylvain
After you made your call you can get to the SOAP envelope using: service.getCall().getResponseMessage().getSOAPPart() Sylvain. -Original Message- From: Tako Schotanus [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 5:20 AM To: [EMAIL PROTECTED] Subject: How to retrieve an XML

RE: Same method names, different parameters

2002-04-25 Thread St-Germain, Sylvain
different parameters So why isn't Axis adding the "name" attribute to the and when it auto-generates the WSDL? Moreover, I know this worked before using alpha3. Can I force Axis to do that somehow? -Original Message-

RE: Same method names, different parameters

2002-04-24 Thread St-Germain, Sylvain
You need to match your operation to your portType using the name attribute so Axis can figure the mapping: Have a look a the attached wsdl. Sylvain. -Original Message- From: Lasker, Kory [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 1:19 PM To: '[EMAIL PROTECTED]' Subject:

RE: Method Over-loading

2002-04-23 Thread St-Germain, Sylvain
ne has been substantially reworked anyhow. So my post is really for whichever developer(s) is working on that code, and I'm just pointing out a place where one can get a null pointer exception. I see that my broader comment about not allowing over-loading is not so appropriate. Thanks Bob Woodley

RE: Method Over-loading

2002-04-23 Thread St-Germain, Sylvain
Robert, I am not sure I follow here, I do extensive method overloading and it works (at least it used to) consider the following signatures from my PortType class public java.math.BigInteger copy(java.lang.String search, java.lang.String target, com.cognos.developer.CopyOptions options)

RE: What should be the location of the webservice

2002-04-19 Thread St-Germain, Sylvain
Never did that but it seems that it is all in the documentation. http://cvs.apache.org/viewcvs.cgi/~checkout~/xml-axis/java/docs/user-guide.h tml Sylvain. -Original Message- From: Vaishakhi Ajmera [mailto:[EMAIL PROTECTED]] Sent: Friday, April 19, 2002 4:32 PM To: [EMAIL PROTECTED] Subje

RE: unsubscribe me SOAP Servis

2002-04-17 Thread St-Germain, Sylvain
t: RE: unsubscribe me SOAP Servis Well, we'd make another service for that. :) -Original Message----- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: 17 April, 2002 4:21 PM To: [EMAIL PROTECTED] Subject: RE: unsubscribe me SOAP Servis Yeah but how would you unsubscribe

RE: unsubscribe me SOAP Servis

2002-04-17 Thread St-Germain, Sylvain
Yeah but how would you unsubscribe from this unsubscription service? Sylvain. ;-) -Original Message- From: L Rutker [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 5:04 PM To: [EMAIL PROTECTED] Subject: Re: unsubscribe me SOAP Servis How about a SOAP service to unsubscribe

RE: How to get complex type attributes to work?

2002-04-17 Thread St-Germain, Sylvain
Sue, Looking at your types you seem to be looking for some message with attributes, reading SOAP section 5 encoding says (among other thing) that everything is sent along as elements. Because of that rule I am not using "attribute" in my complexType definition. If you can simply change that at

RE: Processing of headers

2002-04-15 Thread St-Germain, Sylvain
FYI, I am currently working on client side header support. Won't help you for now. I believe you could certainly use a handler to get the work done on the server. Sylvain. -Original Message- From: Ramon Turnes [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 11:14 AM To: '[EMA

RE: Client examples for arrays and Collections

2002-04-15 Thread St-Germain, Sylvain
Have a look a the Message sample in the distribution. Sylvain. -Original Message- From: Keld Helbig Hansen [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 3:02 AM To: [EMAIL PROTECTED] Subject: Client examples for arrays and Collections I'm a newbie to Axis, SOAP and Web Service

RE: RE: Problem with Server

2002-04-12 Thread St-Germain, Sylvain
5:39 PM To: [EMAIL PROTECTED] Subject: Re: RE: Problem with Server thank you very much Sylvain, but now I have this problem: Caught SOAP exception: SOAP Fault: User 'null' not authenticated (unknown user) somebody has idea that this bad? Victor > > De: "St-Germain, Sylva

RE: Problem with Server

2002-04-11 Thread St-Germain, Sylvain
This happen when your service is not deployed. Axis may be deployed but you need to deploy your stock quote service using something like: java -cp %cp% org.apache.axis.client.AdminClient -lhttp://localhost:8080/axis/services/AdminService deploy.wsdd And copy your classes inside axis's WEB-IN

RE: Distribution of Custom Axis builds

2002-03-28 Thread St-Germain, Sylvain
If you only have servlets in Tomcat you should be fine with just the JRE... It's for tools.jar is required only to compile thus for JSPs. Sylvain. -Original Message- From: Manuel Reyes [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 4:28 AM To: [EMAIL PROTECTED] Subject: Distri

Question about the element name of an array.

2002-03-26 Thread St-Germain, Sylvain
>From what I can see, it looks like the name of the element that contains an array is irrelevent. In the response below the "addResult" name is no wehere in my WSDL: www.macadamian.com Macadamian Tecnologies Web Site If the "addResult" name is irrelevent, anyone knows what happ

RE: [wsdl2java] anybody used it with success with one of the rece nt build? (past 4 or 5 days)

2002-03-25 Thread St-Germain, Sylvain
Nonetheless, there is a problem with WSDL2Java it should not timeout if the process has started... i.e. the stream is open, the data is comming in... Sylvain. -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002 6:37 PM To: [EMAIL

RE: [wsdl2java] anybody used it with success with one of the recent build? (past 4 or 5 days)

2002-03-25 Thread St-Germain, Sylvain
I found it The default timeout is too short for me! 45 sec is nowhere near enough for my 120kb WSDL file... I tried -O 120 and got it... Sorry for polluting the list... Sylvain. -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Monday, March 25, 2002

[wsdl2java] anybody used it with success with one of the recent build? (past 4 or 5 days)

2002-03-25 Thread St-Germain, Sylvain
Could one of the recent changes to wsdl2Java (proxy stuff and -O and ??) broke the tool for simple use case? I used to be able to do : java -cp %cp% org.apache.axis.wsdl.WSDL2Java -stav -o src file.wsdl or java -cp %cp% org.apache.axis.wsdl.WSDL2Java -stav -o src http://localhos

RE: Problem in WSDL2Java with overloaded methods

2002-03-25 Thread St-Germain, Sylvain
You need to explicitely define the mapping between your operations and your message using the name attribute.    Try the attached overloading.wsdl -Original Message-From: BEERS,NANCY (HP-NewJersey,ex2) [mailto:[EMAIL PROTECTED]]Sent: Monday, March 25, 2002 3:25 PMTo: 'Axis-Us

RE: Array elements in complexType definition...

2002-03-21 Thread St-Germain, Sylvain
Ok forget about it, This line: crashes dotNet wsdl2Whatever thingy... Sylvain. -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 3:20 PM To: Axis-User (E-mail) Subject: Array elements in complexType definition... Hi all, The

Array elements in complexType definition...

2002-03-21 Thread St-Germain, Sylvain
Hi all, The following WSDL: Generates this code: public class Policy implements java.io.Serializable { private java.lang.String id; private com.cognos.developer.Permission[] permissions; private java.lang.Object[] permissions

RE: Array deserialization problem

2002-03-20 Thread St-Germain, Sylvain
be listed in the wsdd file. I've added this work to my todo list. Russell Butek [EMAIL PROTECTED] "St-Germain, Sylvain" <[EMAIL PROTECTED]> on 03/19/2002 11:48:31 AM Please respond to [EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: Subject:RE: Array deserialization probl

RE: Array deserialization problem

2002-03-20 Thread St-Germain, Sylvain
not good enough simply to generate all derived types. The stub must register them as well. And they must be listed in the wsdd file. I've added this work to my todo list. Russell Butek [EMAIL PROTECTED] "St-Germain, Sylvain" <[EMAIL PROTECTED]> on 03/19/2002 11:48:31 AM Plea

RE: Array deserialization problem

2002-03-19 Thread St-Germain, Sylvain
Sent: Tuesday, March 19, 2002 11:12 AM To: [EMAIL PROTECTED] Subject: RE: Array deserialization problem The --all option GENERATES all mappings, but since all mappings aren't USED, we don't force anything (ie., the stub) to use them. Russell Butek [EMAIL PROTECTED] "St-Germain, Sy

RE: Array deserialization problem

2002-03-19 Thread St-Germain, Sylvain
that does generate the mapping for all types as well? Adding the mapping manually fixed my problem... I think that -all should also define all the possible mapping. Regards, Sylvain. -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 11

Array deserialization problem

2002-03-18 Thread St-Germain, Sylvain
Hi, Using today's (18-03-02) build I get an exception on the client trying to deserialize an array. The returned array contains two objects of different types and on deserializing the first element I get: org.xml.sax.SAXException: !! No Deserializer for http://developer.cognos.com/schemas/cm

RE: Array complexType

2002-03-15 Thread St-Germain, Sylvain
Have a look at www.w3.org/TR/soap section 5.4.2 Arrays Sylvain. -Original Message- From: Simon McClenahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 5:20 PM To: Axis User (E-mail) Subject: Array complexType In my WSDL embedded Schema I have: ...

RE: [server-config.wsdd]

2002-03-14 Thread St-Germain, Sylvain
that affect low-level objects that hang around longer than the Call object. The proper thing MIGHT be to have some of these methods on the service rather than the stub, but we'll have to think about it a bit. Russell Butek [EMAIL PROTECTED] "St-Germain, Sylvain" <[EMAIL PROTE

RE: [server-config.wsdd]

2002-03-14 Thread St-Germain, Sylvain
ther that's the right thing to do. It's an easy addition, so it's probably the wrong thing to do (aren't they all?). Russell Butek [EMAIL PROTECTED] "St-Germain, Sylvain" <[EMAIL PROTECTED]> on 03/14/2002 12:49:56 PM Please respond to [EMAIL PROTECTED]

RE: [server-config.wsdd]

2002-03-14 Thread St-Germain, Sylvain
157&w=2 cheers, Simon -Original Message----- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 14, 2002 9:19 AM To: [EMAIL PROTECTED] Subject: RE: [server-config.wsdd] server-config.wsdd sounds obvious it has only to do with the server side (!), it&#

RE: [server-config.wsdd]

2002-03-14 Thread St-Germain, Sylvain
server-config.wsdd sounds obvious it has only to do with the server side (!), it's my mistake... My question should have been: Does this hability exists on the client side as well? Sylvain. -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Tu

RE: Life cycle of published classes ?

2002-03-13 Thread St-Germain, Sylvain
I think this is what you are looking for: http://marc.theaimsgroup.com/?l=axis-user&m=101426238828814&w=2 -Original Message- From: Riviere Stéphane Jean [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 13, 2002 10:43 AM To: '[EMAIL PROTECTED]' Subject: Life cycle of published classes ?

[server-config.wsdd]

2002-03-12 Thread St-Germain, Sylvain
May this option have been broken recently? I do not see any differences on the request between setting it to true and false... It allways sends the refs encoding. -- Sylvain This message may contain privileged and/or confidential information. If you have received this e-mail in error or a

RE: Array deserializer (was: [WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty)

2002-03-12 Thread St-Germain, Sylvain
server. I would need to see how you set up your service, including the deployment descriptor. Also, it would be very helpful if you would compile the code with debug info, so the line numbers show up in the stack trace. Dave -Original Message----- From: St-Germain, Sylvain

RE: [WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty

2002-03-11 Thread St-Germain, Sylvain
uld you please tell me exactly the steps you went through to set up your service and your client? Please also include a dump of the soap trascation using the tcpmon tool. Dave -----Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 12:35 PM To

RE: [WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty

2002-03-08 Thread St-Germain, Sylvain
BindingStub.java? The one that axis generates for me from the wsdl looks good. It contains the propper mappings. If the binding stub is correct, perhaps what your service is sending does not match the wsdl. Dave -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent:

RE: [WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty

2002-03-08 Thread St-Germain, Sylvain
ication of the mapping. Dave -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Friday, March 08, 2002 6:21 AM To: [EMAIL PROTECTED] Subject: RE: [WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty Hi, To your que

RE: [WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty

2002-03-08 Thread St-Germain, Sylvain
want them and edit the SoapBindingStub file to fix the registered type mappings. Dave -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 12:51 PM To: [EMAIL PROTECTED] Subject: RE: [WSDL2Java] No deserializer defined for array type htt

RE: [WSDL2Java] No deserializer defined for array type http://[...]/: QueryProperty

2002-03-07 Thread St-Germain, Sylvain
It think that the uppercase for first letter rule is a cosmetic concerns that shouldn't be in the JAX-RPC spec. First it mainly applies to the Java language which at the time of designing a WSDL shouldn't be a concerns. However, I do agree with the rules that change the names that would bring

RE: [WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty

2002-03-07 Thread St-Germain, Sylvain
[WSDL2Java] No deserializer defined for array type http://[.. .]/: QueryProperty WSDL2Java complies to the JAX-RPC specification for mapping XML identifiers to Java identifiers. That specifies that class should start with a capital letter. Dave -Original Message- From: St-Germain,

[WSDL2Java] No deserializer defined for array type http://[...]/:QueryProperty

2002-03-06 Thread St-Germain, Sylvain
Hi all, I am having a problem with caracter case. My complexType is defined as "queryProperty" like : but the generated class is "QueryProperty" This seems to be the reason why I get a deserializer excep

AXIS engine could not find a target service to invoke

2002-02-27 Thread St-Germain, Sylvain
Hi all, I have a service defined by http://localhost:9090/axis/services/ContentManagerServicePortType"; /> ... and a method: http://schemas.xmlsoap.org/soap/http"/> http://developer.cognos.com/schemas/wsdl"/> http://developer.cognos.com/schemas/wsdl/add"; e

Using the generated TestCases

2002-02-25 Thread St-Germain, Sylvain
Hi all, This is a bit off-topic... Anyone is using the generated test cases generated by wsdl2java -t ? >From what I understood at junit.sourceforge.net/doc/cookbook/cookbook.htm I should be able to run junit.awtui.TestRunner providing it the generated TestCase class and through introspection

Modifying the SOAPEnvelope by hand... (document style soap calls)

2002-02-13 Thread St-Germain, Sylvain
Hi all, I need to modify my SOAPBody, before I invoke. Nothing happens when I add MessageElement to a SOAPBodyElement. Looking at the code makes me thing it should work but it does not.I simply do: [...] MessageElement promptValue = new MessageElement(); promptValue.setEnvelope(se);

RE: (Rewriten): Setting the SOAP header through an operation...

2002-02-06 Thread St-Germain, Sylvain
t in axis and how it can be implemented. This can be done in parallel (at least most of it) with the ongoing more important encoding interoperability issues. Any thoughts? Regards, Werner > -Ursprüngliche Nachricht----- > Von: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] > Gesendet:

RE: (Rewriten): Setting the SOAP header through an operation...

2002-02-06 Thread St-Germain, Sylvain
proper runtime stuff. I'm going to look at this tomorrow but don't expect much. We haven't had much call for it and it's not an interoperability issue, so it's a low priority item at the moment. Russell Butek [EMAIL PROTECTED] "St-Germain, Sylvain" <[EMAIL

RE: (Rewriten): Setting the SOAP header through an operation...

2002-02-05 Thread St-Germain, Sylvain
EMAIL PROTECTED] "St-Germain, Sylvain" <[EMAIL PROTECTED]> on 02/05/2002 12:29:58 PM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: (Rewriten): Setting the SOAP header through an operation... Hi all, Is there a syntax in the WSDL that will mak

(Rewriten): Setting the SOAP header through an operation...

2002-02-05 Thread St-Germain, Sylvain
Hi all, Is there a syntax in the WSDL that will make Axis store a method parameter in the SOAP header? Regards, Sylvain. -Original Message- From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 6:05 PM To: Axis-User (E-mail) Subject: Setting the SOAP

Setting the SOAP header through an operation...

2002-02-04 Thread St-Germain, Sylvain
Hi all, This is a little off topic but I though you might know. Is there a way in WSDL to define an operation that creates a header element? I found this in the W3C's WSDL spec www.w3.org/TR/wsdl#_soap-e ... (I slightly modified the namespaces stuff...) Look near the end for: http://cm1

RE: What should WSDL2Java generate on inheritance?

2002-02-04 Thread St-Germain, Sylvain
Tom, IMO, your statement is true except in the context of method overloading. I am trying to find a reason why someone would define types while not referring to them. The only one I see is for method overloading. This being said, I don't see any harm in generating extra classes. Certainly no

RE: What should WSDL2Java generate on inheritance?

2002-02-04 Thread St-Germain, Sylvain
Russel, You say "...But perhaps it SHOULD be generated because it COULD be used as an Object?" I say: "It SHOULD be generated because it WILL be used." -- Sylvain -Original Message- From: Russell Butek [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 1:47 PM To: [EMAIL P

RE: serializing Arrays, ArrayLists, Vectors

2002-02-04 Thread St-Germain, Sylvain
Steven, I suggests that you take a look at the echo service from the samples directory. Sylvain. -Original Message- From: Steven Gollery [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 1:41 PM To: [EMAIL PROTECTED] Subject: serializing Arrays, ArrayLists, Vectors Hello, I

RE: about method overloading

2002-02-04 Thread St-Germain, Sylvain
I would not have any reason to expect the Java code to be generated with a Folder. Folder maybe in the types section but it certainly does not appear as the message type. Rick Hansen > -Original Message----- > From: St-Germain, Sylvain [mailto:[EMAIL PROTECTED]] > Sent: Monday, Fe

RE: about method overloading

2002-02-04 Thread St-Germain, Sylvain
ading I'm confused. Are we talking about overloaded methods or inherited types? Show me your WSDL. Russell Butek [EMAIL PROTECTED] "St-Germain, Sylvain" <[EMAIL PROTECTED]> on 02/04/2002 10:16:52 AM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject:

about method overloading

2002-02-04 Thread St-Germain, Sylvain
Hi all, I came across this post that discuss an issue regarding method overloading. I need to make up my mind about the use of method overloading. It certainly comes in handy if you have a dozen apis to expose for a dozen of objects. Playing with wsdl2Java shown me that it does not (as of Ja

bug in wsdl2java

2002-02-01 Thread St-Germain, Sylvain
Hi all, I can reproduce this strange situation, I think it is a bug. Problem: Generated stub for method addFolder keeps defining the method signature with return type void when returned part name and type are the same as one of the input param. As shown below.

  1   2   >