Re: XML Parsers questions, size problems

2001-07-18 Thread Blair Tingey
Check out The Mind Electric. www.themindelectric.com The have full a web services product "GLUE" all in a very small footprint. This is some great stuff! Blair on 7/18/01 8:12 AM, Laurent Perez at [EMAIL PROTECTED] wrote: > Hi > > We're working on a big java app and are heavily using SOAP cal

RE: urgent

2001-07-18 Thread R. Blaine Mincey
Title: RE: urgent I was having a very difficult time as well.  I started using Xerces 1.4.1 and everything worked.  Try getting the latest version of Xerces and give that a shot.   Blaine -Original Message-From: BKS_prasad [mailto:[EMAIL PROTECTED]]Sent: Wednesday, July 18, 2001

urgent

2001-07-18 Thread BKS_prasad
Title: urgent Hi All, I am also getting the same error  like most of them when ever I run the samples of APACHE-Soap on Jrun3.0. D:\soap-2_2>java samples.addressbook.GetAddress http://localhost:8100/soap/servlet/rpcrouter "John B . Good" Generated fault:   Fault Code   = SOAP-ENV:Server.E

RE: urgent

2001-07-18 Thread BKS_prasad
Title: RE: urgent Hi All, I am also getting the same error  like most of them when ever I run the samples of APACHE-Soap on Jrun3.0. D:\soap-2_2>java samples.addressbook.GetAddress http://localhost:8100/soap/servlet/rpcrouter "John B . Good" Generated fault:   Fault Code   = SOAP-ENV:Server

Re: A way to ping a SOAP Server?

2001-07-18 Thread Brajendra . Singh
you browse rpcrouter url. if it displays like - call me using post. i do not run using get method, then ping is successful. Brajendra Singh

Re: test

2001-07-18 Thread Oleg Dulin
You know, this person should be banned from this list. Here is why: > If you are not the intended recipient, you should > delete this message and are hereby notified that > any disclosure, copying, or distribution of this > message, or the taking of any action based on it, > is strictly prohibite

RE: Soap Install Help

2001-07-18 Thread Gokhman, Ed (CICG Direct Markets)
Hi, I am new to Apache SOAP. I have a NameValuePair object written as a java bean. The data items are: String name; // S/E Object value; // May be a Vector of NameValuePairs or class-wrappers for primitive types, i.e. // Double, or a single NameValueP

Help on header complex type

2001-07-18 Thread Adrian Pang
Hi, I have a web service that returns a rather complex type in the header: - - http://marketdata.net/encodedTypes";> 44844E TokenType I tried to get the response, using: Header respHeader = resp.getHeader(); Object r = resp.getHeader(); System.out.println(r.toString());

Soap Install Help

2001-07-18 Thread Bahal, Sanjay
Hi: I just installed Soap and am trying to run it with apache. I have followed the install instructons. The server test works fine but when I run the client test it errors out: C:\>java org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap/ rpcrouter list Exception in thread "main

Lib & OS configuration for the SOAP2.2

2001-07-18 Thread Edward Nesterov
Hello everybody! I am new to this technology and already tired. I have spent two days and still do not have working example of SOAP. My problem is in finding of combination of *.jars which are not conflicting with each other. If somebody has working environment with SOAP 2.2 which includes Jrun 3

RE: Passing function parameters using SOAP

2001-07-18 Thread Kher, Amol
I am awaiting the answer for this question too... -Amol Amol "The best time to relax... is when you dont have the time for it" -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 9:52 AM To: [EMAIL PROTECTED] Subject: Passing function pa

Re: extracting soap part from http request

2001-07-18 Thread Tom Myers
At 08:12 PM 7/18/2001 +0200, Joseph George wrote: >Hi, >How do I extract the soap part of a http request in a java servlet? For example, >suppose my client sends a soap request to >http://localhost:8080/servlets/TestServlet > and i want to print out th

RE: Problem running SOAP Admin Tool

2001-07-18 Thread Lei Chen
I’ve fixed the problem by adding try-catch blocks. These admin jsps (list.jsp, deploy.jsp and undeploy.jsp) are really buggy! I can’t believe that nobody else has noticed this problem.   -Lei   -Original Message- From: Lei Chen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18

extracting soap part from http request

2001-07-18 Thread Joseph George
Hi, How do I extract the soap part of a http request in a java servlet? For example, suppose my client sends a soap request to http://localhost:8080/servlets/TestServlet and i want to print out the body of the soap request...how do i do that in TestServlet? Thanks.   -joseph.

RE: how to construct a valid envelope object

2001-07-18 Thread Yong Chen
Try following: Envelope envelope = new Envelope(); body = new Body(); Vector v = new java.util.Vector(); Vector v.addElement(your-Elements); body.setBodyEntries(v); envelope.setBody(body); java.io.StringWriter sw = new StringWriter();

how to construct a valid envelope object

2001-07-18 Thread Shang, Wencheng (Exchange)
Quote from Writing Message Services section of Apache SOAP documentation If you want to send a SOAP Envelope back to the client, you can use the org.apache.soap.Envelope's marshall(...) method to marshall your envelope to a java.io.StringWriter, and then invoke the response context's setRootPart(.

RE: A way to ping a SOAP Server?

2001-07-18 Thread Wilkins, Craig
Do an HTTP Get on the rpcrouter. This will return some text that indicates that it only knows how to talk Post, which you can ignore but recognize that it is up. -Original Message- From: Algirdas Veitas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 18, 2001 1:22 PM To: [EMAIL PROTEC

A way to ping a SOAP Server?

2001-07-18 Thread Algirdas Veitas
soap-user, Does anyone know of a way to "ping" a SOAP Server in an interoperable manner? All that needs to happen is a handshake between client and SOAP Server, with the SOAP Server returning "yes, I am running and ready to receive requests?" Thanks in advance. Al

Problem running SOAP Admin Tool

2001-07-18 Thread Lei Chen
Hi, I am trying to set up this web admin tool. However I'm getting internal server error when click on List, Deploy or Un-deploy. Here is the error log from my Jrun 2.3.3: Tue Jul 17 16:55:26 EDT 2001: Running servlet { (Running servlet) javax.servlet.ServletException: D:\dev\jrun\jsm-default\

RE: Please,please can you help me?

2001-07-18 Thread Thomson, Stuart
See Bugzilla #2298 -Original Message- From: Rich Catlett [mailto:[EMAIL PROTECTED]] Sent: 18 July 2001 17:01 To: [EMAIL PROTECTED] Subject: Re: Please,please can you help me? You have to give whatever protection domain that is failing access to the property jaxp.debug.

Re: Please,please can you help me?

2001-07-18 Thread Rich Catlett
You have to give whatever protection domain that is failing access to the property jaxp.debug. - Rich Catlett[EMAIL PROTECTED] | Confuscious say "Man who stand | Programmer| on toilet, high on p

How to handle faults ?

2001-07-18 Thread Adam Lipscombe
Hi Folks, Further to the recent discussions on this issue (http://marc.theaimsgroup.com/?l=soap-user&m=99356898708775&w=2). I need to transmit application-specific error codes from server to client. My understanding of the SOAP spec (http://www.w3.org/TR/SOAP/#_Toc478383507) is that one should

Passing function parameters using SOAP

2001-07-18 Thread sramasu
Hello, Please look at these two scenarios: Scenario 1: In Apache SOAP, the client application invokes the call using the following code. Call.invoke("url",""); The implementation of Call , builds the SOAP message for us before it is posted to SOAP server. The Call object

Re: SOAP usage

2001-07-18 Thread Richard Bourland
Sekar, I am following two examples I have found from MS.  The first is using the WebService Behavior found at: http://msdn.microsoft.com/library/default.asp?url=/workshop/author/webservice/using.asp You can find references to the WebService behavior in the mail archives.  Also I have been following

Re: SOAP usage

2001-07-18 Thread sramasu
Richard, I agree. Can you expalin how do you use WSDL to dynamically generate your soap request. Thanks, Sekar. Richard

Re: SOAP usage

2001-07-18 Thread Richard Bourland
Sekar, I believe you are right. In my view the WSDL and UDDI concept is if you want to distribute your services to the world. For an internal app (service) I don't see the need for the WSDL and UDDI. Right now I am working on using WSDL to generate a SOAP request and call a service. I have an imp

XML Parsers questions, size problems

2001-07-18 Thread Laurent Perez
Hi We're working on a big java app and are heavily using SOAP calls to bypass proxies and communicate with a Web Service//Postgresql database. We plan to distribute the app via the Java Web Start technology, however we'd like to reduce the size of jars, to reduce the download time : Xerces is

WAS4.0 SOAP session bean provider

2001-07-18 Thread ebelisar
Hello, I have the following error when running Session Bean with SOAP on WAS 4.0, do you know what can cause such an error? java.lang.reflect.InvocationTargetException: org.omg.CORBA.BAD_PARAM: Servant is not of the expected type. minor code: 0 completed: No at com.ibm.rmi.corba.ClientDelegat

Can I send Parameters that have 'attributes' using call.setParams ?

2001-07-18 Thread Paula Young
Hi group! I have a requirement to have my SOAP client send a SOAP message with a body that looks like the following: http://example.com/TransHandler.Request";> Add

SOAP usage

2001-07-18 Thread sramasu
Hello, Is SOAP could be used in an application for just exchanging data across the wire, without using the WSDL and UDDI concept. Imagine , I do not need a web service concept, but my application need to transfer XML data across the wire to another applications. Does it make sense to use SOAP o

XML schema support for SOAP

2001-07-18 Thread sramasu
Hello, How to associate XML schema with SOAP document for validating the XML data. Does Apache SOAP XML parser support XML schema? If so, how do I specify the XML schema file ( .xsd file ) location to the SOAP server. Thanks, Sekar.

SOAP interface for Orion ejb beans

2001-07-18 Thread Jon Ward
Is there an apache soap implementation of the StatelessEJBProvider class available for Orion 1.5.2 Jon <>