MS SOAP Client / Apache SOAP server

2001-06-06 Thread Daniel Kruler
Do I need to do something special when calling methods like: int getIntegerValue() in Apache SOAP server from MS SOAP client? What about getStringValue()? MS SOAP client reads WSDL correctly, but when it invokes the method, RPCRouter doesn't instantiate the SOAP server object. M

Re: ConfigManager can not read DeployedServices.ds

2001-06-06 Thread Mike Williams
Shinta, The problem is with serialization. A class that is serialized can only be deserialized with the same version of the JVM. The DeployedServices.ds file is a serialized hash map or maps of DeploymentDescriptors. This is what's causing your problem. You should be able to simply redeplo

ConfigManager can not read DeployedServices.ds

2001-06-06 Thread Shinta Tjio
We have an installation where the first few SOAP services were deployed using JDK 1.2.2_05a for Solaris 2.8. Later on, the JVM on that machine is upgraded to JDK 1.2.2_06. I'm finding that the ConfigManager could not read the DeployedServices.ds. This is the exception thrown: java org.apache

How to set output parameters in my server code

2001-06-06 Thread Yong Chen
Title: How to set output parameters in my server code Hi, I am trying to invoke a java method of a java service on server (via .../servlet/rpcrouter to deploy this service, actually just a java class containing that method). My problem is, this method will not only return a value, it will als

Re: Slow performance with large strings

2001-06-06 Thread Tom Myers
At 05:40 PM 6/6/2001 -0400, Lee J. Willwerth wrote: >Hello all, >I have a soap based application that returns the contents of a server >side file upon request. It is deployed using apache soap 2.0 on tomcat >3.2.1. The contents of the file are returned as a String from the >method I am calling.

Adding a new class to soap server in Tomcat

2001-06-06 Thread pboerner
I am a brand new subscriber to this group so PLEASE forgive my question if it's been answered already. I've read through the archives 'till I was cross-eyed and am fairly sure the answer has not been posted... oh forgive me if I'm wrong. Anyway, here we go: I have installed tomcat 3.2.2 and a

Slow performance with large strings

2001-06-06 Thread Lee J. Willwerth
Hello all, I have a soap based application that returns the contents of a server side file upon request. It is deployed using apache soap 2.0 on tomcat 3.2.1. The contents of the file are returned as a String from the method I am calling. My problem is this. This scheme seems to work well as lo

modifying xsi/xsd attributes

2001-06-06 Thread Ed Keen
When I make a client call, the Apache library automatically assembles this envelope: http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"; xmlns:xsd="http://www.w3.org/1999/XMLSchema";> However, the server I am hitting wants the foll

RE: NoSuchMethod Exception

2001-06-06 Thread Hansen, Richard
>From the FAQ in the docs for soap 2.2: 1.5 Help! The Samples won't work. Every time I run a sample client I get this response: "Fault String = java.lang.NoSuchMethodError" Ensure that: (a) You have deployed the sample service you want to use. (b) Xerces.jar is the very first entry in your class

NoSuchMethod Exception

2001-06-06 Thread Collin Goredema
I just installed Apache Soap version 2.1 on Tomcat 3.2 on a Windows 2000 machine. I have Xerces version 1.23. When I try to run a client connecting to a deployed service, I get the following exception   Generated Fault:Fault Code = SOAP-ENV:Server.Exception:Fault String = java.lang.NoSuchM

Re: How to use EnvelopeEditors?

2001-06-06 Thread Sanjiva Weerawarana
Sorry, I wasn't implying that you did .. :-). Take a look at the "Server Configuration" section of the docs- that tells you that init parameters go into the web app config file web.xml found in the WEB-INF directory. The docs could be a bit more explicit :-). If you're deploying with the war file

Re: Réf. : Re: Question about Parameters

2001-06-06 Thread Saint-Martin Cecile
> > Hi Cecile !! (just a question : aren't you french ??) My english is so bad? :) > I really thank you for your help !! your proposition works > but does it mean that we can't send a call with any types of parameter ?? > I am forced to pass only XML elements parameters ?? > in fact, I thin

RE: How to use EnvelopeEditors?

2001-06-06 Thread Michael Weir (Transform Research)
Title: RE: How to use EnvelopeEditors? I don't set out to waste your time! I'm looking at the docs! But, I see that you have to add a value to the configuration file for the RPCRouter, but it doesn't say where that file is.  (I'm pretty new to Java, so maybe I'm missing something that I ought

Apache SOAP server/MS SOAP client

2001-06-06 Thread Daniel Kruler
When I try to call Apache SOAP server from MS SOAP client (using VB) I get the following error: Application or Object error When I look at webserver console, I see that rpcrouter servlet is called, but my SOAP server never gets instantiated. My SOAP server is deployed correctly and I can call it's

Class Loading in SOAP/Tomcat

2001-06-06 Thread Javier A. Soltero
Hi All, I have a question regarding how classes which are made available via the soap interface are loaded by Apache Soap when soap runs inside the Tomcat 3.2 container. Essentially, I would like to package my soap server application as a war file which will be deployed into Tomcat. My expectati

Re: How to use EnvelopeEditors?

2001-06-06 Thread Sanjiva Weerawarana
See the docs: http://xml.apache.org/soap/docs. Click on User's Guide and then on "Using Transport Hooks"! Boy, it feels good to be able to point to the docs!! Sanjiva. - Original Message - From: "Michael Weir (Transform Research)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednes

How to use EnvelopeEditors?

2001-06-06 Thread Michael Weir (Transform Research)
Title: How to use EnvelopeEditors? I'd like to use an EnvelopeEditor to dump SOAP as it comes and goes.  It seems quite straightforward to create the necessary classes, but where are the configuration files for the RPCRouter servlet? Thanks.

RE: WSDL

2001-06-06 Thread Daniel Kruler
I am trying to connect MS SOPA proxy with Apache SOAP server, but WSDLReader can't process my WSDL. Can you take a look at my WSDL and tell me what is wrong with it? -Original Message- From: Hansen, Richard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 2:52 PM To: '[EMAIL PROT

RE: WSDL

2001-06-06 Thread Hansen, Richard
Here is what worked for me: http://www.w3.org/1999/XMLSchema"; targetNamespace="http://www.registrationservice/xsd"; xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";> > > I am defining string array in WSDL using

WSDL

2001-06-06 Thread Daniel Kruler
I am defining string array in WSDL using the following: http://www.w3.org/2000/10/XMLSchema";>

RE: Invoking Apache soap web services from browser client / IBM WSDE

2001-06-06 Thread Ding, Chengmin
I tried to use WSDE to create a Browser Based Client but I could find the instructions. Could you tell me where to start? Thanks. -Chengmin -Original Message- From: Sven Struyf [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 06, 2001 9:41 AM To: [EMAIL PROTECTED] Subject: Re: Invokin

RE: SV: SOAP between Java and C++

2001-06-06 Thread Daniel Kruler
Is there a way for me to generate C++ SOAP client if I have WSDL file? If yes, how can I do that? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

RE: VB to Apache SOAP

2001-06-06 Thread Ding, Chengmin
Hi,All, I have tried Richard's VB/Apache(StringService) soap sample and it works well. But I just found out a lot of error messages like the following in the tomcat console. I searched the archive and haven't found a fix for this problem. Has anyone else seen the same errors using the StringServic

RE: Invoking Apache soap web services from browser client / IBM WSDE

2001-06-06 Thread Christian Bernard
If you are using Internet Explorer 5.0, take a look at the Microsoft WebService behavior at http://msdn.microsoft.com/workshop/author/webservice/overview.asp. You may find more details at http://msdn.microsoft.com/workshop/author/webservice/using.asp. This behavior only needs a few JavaScript line

Re: Invoking Apache soap web services from browser client / IBM WSDE

2001-06-06 Thread Jonathan Chawke
I believe there is also another alternative that can be used as a small browser-based client: 'SoapRMI'. It is only 183KB (including an XML parser) and is available here: http://www.extreme.indiana.edu/soap/rmi/download/. And don't blame me if it all goes pear-shaped - I've never used it! Jonath

WSDL

2001-06-06 Thread Daniel Kruler
I am trying to generate WSDL, does the following WSDL look valid: http://schemas.xmlsoap.org/wsdl/"; xmlns:tns="urn:SOAPTester" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; xmlns:xsd="http://www.w3.org/2000/10/XMLSchema";>

Re: Invoking Apache soap web services from browser client / IBM WSDE

2001-06-06 Thread Sven Struyf
Tom (and all), Take a look at the 'Web Services Development Environment' at the IBM AlphaWorks website. It requires some (heavy) downloads, but it's really worth it! Among other things, it will automatically generate WSDL files from any java class or COM object, create BROWSER BASED CLIENT a

problem please give me some solution

2001-06-06 Thread pravin pachbhai
Hi, In commandline i am getting this error C:\>java org.apache.soap.server.ServiceManagerClient http://localhost:8080/soap /servlet/rpcrouter list Ouch, the call failed: Fault Code = SOAP-ENV:Server.Exception: Fault String = java.lang.NoSuchMethodError C:\> In browser i am ge

Re: Invoking Apache soap web services from browser client

2001-06-06 Thread Tom Myers
At 09:14 AM 6/6/2001 +0530, Yashasree wrote: >Hi All > >Does anyone know how to invoke a web service deployed on Apache SOAP from a client >browser. The samples that are available illustrate the usage thru a java client only. >How should the message be sent so as to make the apache soap router

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread Jonathan Chawke
I found instructions on how to do this in the "Migration" section here: http://xml.apache.org/soap/docs/guide/migration.html (see the sub-section entitled 'Getting at "environmental" information for RPC style services'). The docs point out that "Using this feature makes your service implementat

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread oh
Thank you for your response. - Original Message - From: "Doug Davis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 6:26 PM Subject: Re: How can I get the the IP of client from A Soap Service program? > Don't have time to go into it right now, but try adding

OT: getting required software installed for apache soap

2001-06-06 Thread Serdar Kilic
Excuse the OT post but I'm having serious trouble getting started. I'm pretty much at square one on trying to get started in apache soap. I've downloaded xerces, apache, *jserv*.dll, tomcat, and off course apache soap.. but I'm stuck with getting tomcat going using the jserv module. is there somet

RE: IIS and Apache SOAP Client

2001-06-06 Thread Colin Saxton
Just upgraded to 2.2 and all is well...cheers. -Original Message- From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED]] Sent: 06 June 2001 11:15 To: [EMAIL PROTECTED] Subject: Re: IIS and Apache SOAP Client Are you using Apache SOAP v2.2? I believe earlier versions have had a bug here.

Re: IIS and Apache SOAP Client

2001-06-06 Thread Sanjiva Weerawarana
Are you using Apache SOAP v2.2? I believe earlier versions have had a bug here. Sanjiva. - Original Message - From: "Colin Saxton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Thomas Greenwood" <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 4:26 AM Subject: IIS and Apache SOAP Cl

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread Sanjiva Weerawarana
This feature is document in the 2.2 docs. See in the User's Guide under the "Interoperability" section and look for 'Getting at "environmental" information for RPC style services'. Sanjiva. - Original Message - From: "Doug Davis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesda

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread Doug Davis
Don't have time to go into it right now, but try adding a SOAPContext parameter to the start of your parameters on your method - look at the template provider to see what you can pull out of the properties. You can get things like the ServletContext, HTTPRequest object... -Dug "oh" <[EMAIL PROTE

RE: IIS and Apache SOAP Client

2001-06-06 Thread Jean-Louis Vila
Yes, it's not a SOAP problem but an interoperability known problem. When you send an HTTP request avoid all blank in content-type header variable. Notice that if you send "content-type:text/xml; charset=utf-8" in an HTTP request, the common servlet method getEncoding() return null. If you remove t

NullPointerException

2001-06-06 Thread manuel . paitreault
Hi, I'm trying to create a new document from the extraction of an element of an existing Document : public Document Decomposer(Document docXML) { Document XMLElementary=null; NodeList NL= docXML.getElementsByTagName("Word"); Node NodeEntity = NL.item(0);

IIS and Apache SOAP Client

2001-06-06 Thread Colin Saxton
Apache SOAP client does not work on IIS. IIS sends: ... Content-Type:text/xml; charset=utf-8 ... Where as Apache sends ... Content-Type: text/xml; charset=utf-8 ... Notice the extra space after "Content-Type:". An Exception is thrown in the SOAP client (GetAddress example) that states the con

Re: SV: SOAP between Java and C++

2001-06-06 Thread toril . andersson
Hello David ! The Microsoft(MS) SOAP toolkit can be obtained from msdn.microsoft.com, and a step -by-step usage is provided. Works for C++, VB etc. Usage of the Apache toolkit I am sure you are aware of. Concerning interoperability: This has been discussed previously in this forum, look in the

Re: How can I get the the IP of client from A Soap Service program?

2001-06-06 Thread oh
I checked the archive of this mailing list, and I found nothing. I think it' neccessary for a service bean to get the information in the request. Is there any solution to solve it ? Maybe I have to give up trying with Apache Soap.. Any help will be appreciate. Huimin Wang, Globus,Inc --

RE: Ref. : Soap benchmarking

2001-06-06 Thread Jean-Louis Vila
No of course ... > -Message d'origine- > De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Envoyé : mardi 5 juin 2001 15:45 > À : [EMAIL PROTECTED] > Objet : RE: Ref. : Soap benchmarking > > > Is it re-compiling the JSP page? > > > -Original Message- > > From: Jean-Louis Vila [m