RE: RE : wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-17 Thread Eric Rajkovic
age d'origine-De : Eric Rajkovic [mailto:[EMAIL PROTECTED] Envoyé : jeudi 16 décembre 2004 15:54À : [EMAIL PROTECTED]Objet : RE: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation Christian,   the soapAction attribute is on

RE: wsdl2java does not understand the 'soapAction' attribute in /definitions/portType/operation

2004-12-16 Thread Eric Rajkovic
Title: Message Christian,   the soapAction attribute is only valid for the binding element, not the portType element   replace     http://localhost:8090/action/HelloWorld.Execute" parameterOrder="nameParam"> with     and it should work.   Also, you could use WS-I tool to validate you

RE: java.lang.NoClassDefFoundError: javax/wsdl/OperationType

2004-12-14 Thread Eric Rajkovic
Jason, You should find the javax.wsdl package inside wsdl4j.jar Check for the line starting with 'Found IBM's WSDL4Java ...' under axis/happyaxis.jsp Hth, eric -Original Message- From: Jason Bodnar [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 2:30 PM To: [EMAIL PROTECTE

Re: Returning array of complex types

2004-09-21 Thread Eric Rajkovic
Fabio, The "39b"-"0" and "4ac"-"0" are the chunking size, related to chunked transfer. They are the chunk-size - last-chunk, as defined in the Hypertext Transfer Protocol -- HTTP/1.1 specification. see http://www.faqs.org/rfcs/rfc2616.html, section 3.6.1 Chunked Transfer Coding From the parser err

Re: FW: another doc/literal issue

2003-07-10 Thread Eric Rajkovic
on to dispatch messages. 'SOAPAction is purely a hint to processors' (see http://www.ws-i.org/Profiles/Basic/2003-06/BasicProfile-1.0-BdAD.html#refinement34343864). */Eric Rajkovic <[EMAIL PROTECTED]>/* wrote: Cory, With .Net, there are two flavors of document/literal requests

Re: FW: another doc/literal issue

2003-07-10 Thread Eric Rajkovic
Cory, With .Net, there are two flavors of document/literal requests you can generate. Once you have genereted the web reference, you can look at the generated code (Web Reference\com.travelnow.test\Reference.cs) to figure out which style is in use. Look at the value for the ParameterStyle attribu

Re: Doc/Lit webservice generating wrong SOAP response

2003-03-25 Thread Eric Rajkovic
Davin, This is the size of the chunks (HTTP 1.1). You can look at [1] for some example hope this help, eric [1] http://apache-server.com/Podium/show.php?p=HTTP&slide=8 Davinder Singh wrote: Hi, I have developed a document/literal webservice which generates the following response when called b

Re: SOAPAction Header

2003-03-05 Thread Eric Rajkovic
Nicola, the SOAPAction has to be set in the HTTP header, not the SOAP header. from Amazon's WSDL: It's the same value for all operation, but it need to be there on the wire. eric Nicola Muratori wrote: hi i'm trying the amazon web service kit, but i can't do any search because the server re

Re: Async web services, do they exist?

2002-11-26 Thread Eric Rajkovic
If you want to run asynch on the server, you have to create a separate thread or push the data from the request into some queueing mechanism. The current implementation is still sending an empty SOAP body back to the caller and block until wait10sec returns. in your stateless service class

Re: Document style web services

2002-11-21 Thread Eric Rajkovic
Anne, Just a little addition to your comment on WS-I BP: "WS-I has just published its Basic Profile draft, which only supports document-style" In the current published revision, the profile support both rpc and document styles. It only restrict the use to literal. eric

Re: Date is not Correct in Soap Message send to server

2002-10-23 Thread Eric Rajkovic
because CEST is UTC +2, those two dates are equivalent. 2002-06-11T22:00:00.000Z = 2002-06-12T00:00:00.000+2:00 on the wire, axis always use Zulu (UTC, GMT) to transmit date. If you want to send the day date, you should use a string as you will get different result from different platforms. eri

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

wsdl2java / Missing classes in generated stub?

2002-02-12 Thread Eric Rajkovic
. Is this a know issue or did I miss something in the setup? Any help or pointer to other resource welcome. Thanks, [1] - http://www.pocketsoap.com/registration/service.wsdl Eric Rajkovic email: [EMAIL PROT