Re: How to access HTTP response status code

2003-09-30 Thread Scott Nichol
There is not currently any way to do this. The Apache SOAP code reads the HTTP status down in HTTPUtils#post, but does not pass it back up the call stack. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. -

Re: How to descibe Element in wsdl?

2003-07-31 Thread Scott Nichol
Did you write your own serializer or use literal XML encoding? If you used the latter, to my knowledge, Apache SOAP is the only implementation that supports this, so there is no sense trying to write WSDL. If you wrote your own serializer, you can write WSDL, although if you truly send arbitra

Re: How does one register and create a Custom Provider?

2003-02-11 Thread Scott Nichol
Please post Axis questions to one of the Axis lists, axis- [EMAIL PROTECTED] or [EMAIL PROTECTED] On 11 Feb 2003 at 16:51, [EMAIL PROTECTED] wrote: > I want to extend the JavaRPC and JavaMsg providers, and possibly create a > completely new kind of provider. > > How do I register the subclassed

Re: How I can make Serialization under Weblogic

2002-12-13 Thread Scott Nichol
There appear to be multiple problems. The biggest is that the service appears to be written for document/literal, while Apache SOAP sends rpc/encoded. To have any chance of properly sending a request to a doc/lit service, you must use a nightly build of Apache SOAP, which allows you to send messa

RE: how to override code in SOAP-ENV:Server tag

2002-10-31 Thread Omprakash Bachu
al Message- From: Scott Nichol [mailto:snicholnews@;scottnichol.com] Sent: Wednesday, October 30, 2002 6:06 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: how to override code in SOAP-ENV:Server tag Fault.getDetailEntries() just returns a Vector of Element unless it knows how to deser

Re: How to integrate SOAP in a Servlet ?

2002-10-30 Thread Scott Nichol
See http://xml.apache.org/soap/faq/faq_chawke.html#Q1_4. Scott Nichol - Original Message - From: "Pierre Yves Monnet" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 30, 2002 12:22 PM Subject: Re: How to integrate SOAP in a Servlet ? Thanks for

Re: How to integrate SOAP in a Servlet ?

2002-10-30 Thread Pierre Yves Monnet
Thanks for your answer Scott ! I really appreciate your help !   > > Q1 : I found two class extending HttpServlet : RPCRouterServlet and> MessageRouterServlet : what is the difference between this two objects ?> > The RPCRouterServlet should be invoked when you are exposing "normal"> methods

Re: How to integrate SOAP in a Servlet ?

2002-10-30 Thread Scott Nichol
Pierre-Yves, I passed on this posting previously because I am not sure what you are doing with RPCRouterServlet will work. However, I might be able to answer some of your questions. Q1 : I found two class extending HttpServlet : RPCRouterServlet and MessageRouterServlet : what is the difference

Re: How to populate the elements into soap header block?

2002-10-24 Thread Scott Nichol
lt;[EMAIL PROTECTED]> Sent: Thursday, October 24, 2002 5:49 PM Subject: RE: How to populate the elements into soap header block? > Can any one answer this...? > > -Original Message- > From: Omprakash Bachu [mailto:omprakash.bachu@;mphasis.com] > Sent: Thursday, October 24,

RE: How to populate the elements into soap header block?

2002-10-24 Thread Omprakash Bachu
Can any one answer this...? -Original Message- From: Omprakash Bachu [mailto:omprakash.bachu@;mphasis.com] Sent: Thursday, October 24, 2002 3:01 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: How to populate the elements into soap header block? I got the

RE: How to populate the elements into soap header block?

2002-10-24 Thread Omprakash Bachu
I got the below thing done by making... ... ... Vector params = new Vector(); params.addElement(new Parameter("ImgRqGrp", Element.class, root, Constants.NS_URI_LITERAL_XML)); Header hdr = new Header(); Vector hdrEntriesVec = new Vector(); hdrEntriesVec.addElement(root); hdr

Re: How to set namespace

2002-09-04 Thread Scott Nichol
If the parser supports namespaces correctly, you should not have this problem. If you want more help on this list, the things to post are 1. versions of software used (e.g. JDK, Apache SOAP, XML parser, servlet container, OS) 2. capture of the messages being sent, e.g. using TcpTunnelGui Scott

Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-10 Thread Tatsuya Tsurukawa
"Tatsuya Tsurukawa" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Wednesday, July 10, 2002 3:49 AM >Subject: Re: How to run apache-soap on a servlet engine except Tomcat > > >> Hi All, >> >> I found our proprietary servlet engine suppor

Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-10 Thread Scott Nichol
nt: Wednesday, July 10, 2002 3:49 AM Subject: Re: How to run apache-soap on a servlet engine except Tomcat > Hi All, > > I found our proprietary servlet engine supports Servlet API 2.0. > > Does anybody know what version's Apache SOAP should I use ? > > Regards, > Tats

Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-10 Thread Yuji Sakata
> Hi All, > > I found our proprietary servlet engine supports Servlet API 2.0.> > Does anybody know what version's Apache SOAP should I use ? > SOAP 2.2 documentation say as below Apache SOAP has the following requirements: Java 1.1 or higher, and a servlet engine supporting version 2.1 or

Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-10 Thread Tatsuya Tsurukawa
Hi All, I found our proprietary servlet engine supports Servlet API 2.0. Does anybody know what version's Apache SOAP should I use ? Regards, Tatsuya Tsurukawa Tatsuya [EMAIL PROTECTED] -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-09 Thread Tatsuya Tsurukawa
Hi, Thank you for your quick response. I'd like to clarify some points again. I think it is correct that I call RPCRouterServet directly. Is it right ? I don't use configuration files like web.xml included in Tomcat. Are there any information does our servlet engine have to have in advance ?

Re: How to run apache-soap on a servlet engine except Tomcat

2002-07-09 Thread Scott Nichol
You are correct that RPCRouterServlet is the servlet that is executed to access an Apache SOAP service, although I don't know why you would need to modify it. When using HTTP as the transport, only the POST action is supported, which is why you get the message from doGet. Tomcat and Apache SOAP

Re: How to make an EJB comp into a web service?

2002-04-30 Thread Scott Nichol
I do not have direct experience with WebLogic, but have used JBoss (cf. http://www.scottnichol.com/apachesoapjboss.htm). I have not used the admin UI, so I do not know where to specify some of the parameters for the Stateless EJB Provider. The deployment descriptor I used is http://xml.apache.

Re: How can I add security to remote SOAP method invocation

2002-04-26 Thread Scott Nichol
There are a number of ways, but a common way is to use HTTP authentication. If you are not worried about someone sniffing the packets, you can run this over plain HTTP. If you are worried about sniffing, you can use SSL to encrypt the packets. Although this is a common way, it is not the only o

Re: How to retrive a Element type in MS Apache Soap

2002-04-19 Thread Scott Nichol
It looks like you are serializing an incorrect number of parameters. Where is the code you are using to read the return value? Have you tested your service with an Apache SOAP client? If you post the complete code for both the Apache SOAP client and the MS SOAP Toolkit client, it may be possibl

Re: How to get value(s) from Response XML

2002-04-09 Thread Scott Nichol
Normally, with Apache SOAP you would write a Java class into which the rowset, defined as a sequence of rows, can be de-serialized. The case below would be a bit trickier, since the return parameter XML includes the schema, so I doubt Apache SOAP would successfully parse it, but perhaps Axis coul

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-04 Thread Scott Nichol
PROTECTED]> Sent: Thursday, April 04, 2002 8:16 AM Subject: Re: How to setUp a Visual Basic Client to talk to Apache Service > > VERY COOL!!! The first email I read this morning and I'm off to a good > start alreadythanks Scott!!... > > >

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-04 Thread dswanson1
ott Nichol" cc: (bcc: Doug Swanson/US-Corporate/3M/US) Subject: Re: How to setUp a Visual Basic Client to talk to Apache

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Scott Nichol
Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 03, 2002 9:09 AM Subject: Re: How to setUp a Visual Basic Client to talk to Apache Service > Doug, > > Thanks for the kind words. I basically aimed to get something working and had > some c

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Scott Nichol
rtElement "sXML" > Serializer.SoapAttribute "xsi:type", , "xsd:string" > Serializer.writeString sSOAPMsg > Serializer.endElement > > It keeps gwetting the following error: Invalid procedure call or argument.

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Scott Nichol
esday, April 03, 2002 7:52 AM Subject: Re: How to setUp a Visual Basic Client to talk to Apache Service > > Scott, > THANK YOU for doing this...that's all I need is a good exampleI > don't suppose you have a WSDL file that "describes" one of the example &g

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread dswanson1
cc: (bcc: Doug Swanson/US-Corporate/3M/US) Subject: Re: How to setUp a Visual Basic Client to talk to Apache

RE: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-03 Thread Tiago Fernandes Thomaz
It keeps gwetting the following error: Invalid procedure call or argument. Any ideas? Tiago Fernandes Thomaz -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: quarta-feira, 3 de Abril de 2002 05:28 To: [EMAIL PROTECTED] Subject: Re: How to setUp a Visual Basic Cli

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-02 Thread Scott Nichol
Nigel, I have quickly put together a pair of Web pages regarding Apache SOAP and Visual Basic clients. They are Using a VB Client: http://mywebpages.comcast.net/scottnichol/vbclientapachesoap.htm Installing Apache SOAP, Tomcat, etc.: http://mywebpages.comcast.net/scottnichol/apachesoapinstall

Re: How to setUp a Visual Basic Client to talk to Apache Service

2002-04-01 Thread Scott Nichol
Nigel, Do you want to use VB.NET, or VB 6 with the SOAP Toolkit? I wrote a sample client with a beta of the SOAP Toolkit. With a small modification or two, I believe it would work with the released STK, too. Scott Nichol - Original Message - From: "Cornyn" <[EMAIL PROTECTED]> To: <[EM

Re: how to use soap with c

2001-12-27 Thread Radovan Janecek
I would recommend you WASP Server for C++. Written in very portable way. BSD license. SOAP and WSDL tools. Binary builds for Win2k, Linux, Solaris, WinCE... Source distribution contains project files for Visual C++. the newest version is on EAP: http://www.systinet.com/eap/waspc_30/index.html th

Re: how to use soap with c

2001-12-26 Thread Paco Avila
You can use EasySoap++ From SourceForge. -- GRIDSYSTEMS Francisco Jose Avila Bermejo Parc Bit - Son EspanyolResponsable Área Desarrollo 07120 Palma de Mallorca [EMAIL PROTECTED] Baleares - España Tel:+34-971435085 Fax:+34-971435082 ww.gridsystems.com --

Re: How to handle multiple request in "Application" scope

2001-09-27 Thread Scott Nichol
As you say, Application scope means that a single instance of the service class will be created to handle requests. However, this single instance *can* handle multiple requests. Multiple threads can execute code in the service simultaneously, unless your code does synchronization to prevent it.

RE: How to handle multiple request in "Application" scope

2001-09-27 Thread Hansen, Richard
No, it means that SOAP server calls the service methods of the single instance as many times as it needs to handle the number of client requests. Your service code must be thread safe. Rick Hansen > -Original Message- > From: Naresh Agarwal [mailto:[EMAIL PROTECTED]] > Sent: Thursday, Se

Re: how to invoke the method in Server-side(Apache) from Client-side(VB) using WSDL.

2001-08-20 Thread Naresh Agarwal
hi i had come across with the same problem but finally i had manages to run VB Client with Apache Server. The problem is that Apache Server generates two WSDL files, one for the interface and other for the implementation; whereas MS Soap tool kit accepts only one... So u will have to merge the t

Re: How

2001-08-14 Thread senthil
Hi Ramesh Babu Pls, Logon to http://xml.apache.org/mail.html Regards B.Senthil Kumar - Original Message - From: "ramesh.babu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 14, 2001 2:59 PM Subject: How > How can i register to get all the mailing info. > anybody can

Re: How to use Apache SOAP with iPlanet Web Server

2001-08-06 Thread Warwick Slade
Since war files are not supported configure the servlet via rules.properties /soap/rpcrouter=soaprpc /soap/msgrouter=soapmsg servlet.properties servlet.soaprpc.code=org.apache.soap.server.http.RPCRouterServlet servlet.soapmsg.code=org.apache.soap.server.http.MessageRouterServlet Then just ensu

Re: How to desrialize xml element attributes ?

2001-08-06 Thread Jung Frau
Mehashah, > How can we desirialize xml attributes such as > > This xml fragment above is not section 5 compliant; so I'd suggest that you use the LITERAL XML encoding to obtain a DOM; and then work off the DOM to get the attributes. Jungfrau _

RE: How to help

2001-07-11 Thread Eduardo Yánez
, 11 de Julio de 2001 06:37 p.m. To: '[EMAIL PROTECTED]' Subject: RE: How to help How about writing some sample code -Original Message- From: Eduardo Yanez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 3:01 PM To: [EMAIL PROTECTED] Subject: How to help Hi SOAP devel

RE: How to help

2001-07-11 Thread Khamesra, SandeepX
How about writing some sample code -Original Message- From: Eduardo Yanez [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 3:01 PM To: [EMAIL PROTECTED] Subject: How to help Hi SOAP developers! If i?m also an XML-Java developer, how could i help to the project?? Regards, E.

Re: How to map Element Object?

2001-07-09 Thread dswanson1
As far as I know support for complex types needs to be custom...not sure if you can even deserialize an Element...might want to just pass back a string and load it into a dom on the client...we're using Apache clients with Microsoft Soap servers...passing dom documents (small) back and forth...bu

Re: How to serialize/deserialize this Class?

2001-07-06 Thread rajendra shah
"Class Employee referes to itself through manager, subordinates. I know that XML does not permit nesting, i.e, within employee tag you can not again have employee tags. " I know for sure that XML allows nesting so that X can contain Y and Y can inturn contain X. Raj >From: Soumen Sarkar <[EMA