Réf. : Re: Question about Parameters

2001-06-05 Thread manuel . paitreault
> Hi Cecile !! (just a question : aren't you french ??) 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 think I don't understand exactly what

SV: SOAP between Java and C++

2001-06-05 Thread Patrik Lindefors
Hi David! One of the nice things about SOAP is that it isn't language dependent but that you can write a SOAP client or service in the language of your desire. You would have to have an XML parser though and also one or more Serializers who can understand the SOAP protocol. I think Microsoft h

SV: What Xerces version for Apache SOAP 2.2

2001-06-05 Thread Patrik Lindefors
Hi Luis! We've moved to 1.4 and it works just fine for us! Yours, Anders -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Skickat:den 5 juni 2001 15:05 Till: [EMAIL PROTECTED] Amne: What Xerces version for Apache SOAP 2.2 Hi, what version of Apa

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

2001-06-05 Thread oh
- Original Message - From: "Pae Choi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 11:55 AM Subject: Re: How can I get the the IP of client from A Soap Service program? > See getRemoteAddr() of javax.servlet.ServletRequest. And its subclass, > javax.servlet

Invoking Apache soap web services from browser client

2001-06-05 Thread Yashasree
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 understand the request sent from a client browser

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

2001-06-05 Thread Pae Choi
See getRemoteAddr() of javax.servlet.ServletRequest. And its subclass, javax.servlet.http.HttpServletRequest. :-) Pae -Original Message- From: oh <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, June 05, 2001 7:41 PM Subject: How can I get the the IP of client

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

2001-06-05 Thread oh
I want to get the IP or hostname of client from A Soap Service program. How can I get it? If I can get the HttpRequest object which processed by RPCRouter? Thanks, Huimin Wang Globus,Japan - To unsubscribe, e-mail: [EMAIL P

Proxy Servlet check

2001-06-05 Thread venkat reddy
Hi ALL, Scenario :: I have a couple of SOAP Services that should be allowed access only if the user has logged in and has access permissions to the ROUTER Servlet. If the user does not have access priveleges, since the proxy servlet already got the SOAP ENV with the request from a SOAP C

SOAP GURUS >> Help needed URG....

2001-06-05 Thread venkat reddy
Hi All, I've put up this question four times before but could not get an answer. The subject for my earlier mails are as follows :: "Proxy request routing" and "PROXY between the CLIENT and the SERVER". Please take a look for an understanding of the scenario more in detail. I once again pr

RE: WSDL

2001-06-05 Thread Hansen, Richard
Not really. Over at http://www.pocketsoap.com/wsdl/ there is a validator, but the last time I used it it did not . The best thing I came up with was to create a VB app that tries to create a high level client from WSDl. Then I try to figure out the WSDL problem from any errors that occur. Rick Ha

RE: WSDL

2001-06-05 Thread Daniel Kruler
Ae there any tools fo validating WSDL? -Original Message- From: Peter Tandara-Kuhns [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 4:28 PM To: [EMAIL PROTECTED] Subject: RE: WSDL It is used to specify the value of the SOAPAction HTTP header. It allows services to be filtered at

RE: WSDL

2001-06-05 Thread Peter Tandara-Kuhns
It is used to specify the value of the SOAPAction HTTP header. It allows services to be filtered at the servlet level, before the SOAP envelope is parsed. See section 6.1.1 of the SOAP spec for details. I think the value is currently ignored by the Apache server code (true?). -Original Mess

RE: Need help on win2000 soap run with tomcat

2001-06-05 Thread Matthew J. Duftler
Hi Shyam,   It would be helpful to others who may be having similar troubles if you would post what the solution to your problem was.   Thanks, -Matt -Original Message-From: Shyam Sarkar [mailto:[EMAIL PROTECTED]]Sent: Tuesday, June 05, 2001 10:39 AMTo: [EMAIL PROTECTED]Subje

RE: WSDL

2001-06-05 Thread Daniel Kruler
What is the purpose of ? What should be specified in the quotes? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: usage of custom classes in requests

2001-06-05 Thread Sanjesh Pathak
How about using either an XML string or an XML Element as the input parameter. This way the client programs do not have to worry about the custom classes. What I did was to use an XML Element as the input parameter to the SOAP service. And on the server, extract the values from the Element into c

RE: WSDL

2001-06-05 Thread Daniel Kruler
How would I define String[][]? Is the following correct? -Original Message- From: Hansen, Richard [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 1:26 PM To: '[EMAIL PROTECTED]' Subject: RE: WSDL Here are a c

RE: usage of custom classes in requests, WSDL issue

2001-06-05 Thread Ed Keen
Andrew, I spent nearly a week trying to get an Apache server and MS client to work using WSDL with complex parameter types. It worked fine with native types. I'm sure there is a way to make it work (I probably didn't wave the dead chicken over it long enough or say the right incantation), but it

RE: usage of custom classes in requests, WSDL issue

2001-06-05 Thread Andrew Burke
Ed- I am interested in WSDL files because of an interest in "Web Services". The WSDL file is a definition of a sites services, generally provided via SOAP over HTTP (redundant, perhaps). And if I have a WSDL of a site which will provide, say, stock quotes, I would like to access those services. An

Re: SOAP XML Envelopes

2001-06-05 Thread Pae Choi
Opps... I meant "I am *NOT* certain ..." ;-) Pae -Original Message- From: Pae Choi <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Tuesday, June 05, 2001 12:39 PM Subject: Re: SOAP XML Envelopes >I am certain unless we actually put our hands in the invoke() >method

Re: SOAP XML Envelopes

2001-06-05 Thread Pae Choi
I am certain unless we actually put our hands in the invoke() method. Because the building SOAP envelop is encapsulated inside of invoke() call. This means the REQUEST message has not built before the invoke() call. Any other suggestions? Pae -Original Message- From: [EMAIL PROTECTED]

thoughts on handling different soap schemas

2001-06-05 Thread Douglas L Thompson
A couple of comments about the current implementation of different soap schemas (aka 1999 and 2000): I was heartened to see that the support for different soap schemas is much more extensive in 2.2. However, there still isn 't a way to set the type of schema generated without recompiling the en

SOAP XML Envelopes

2001-06-05 Thread v . javier . colmenares
Hi, Is there a way to display the SOAP envelope (XML Files) for the request message and the response message before and after calling call.invoke(url,"")?, using the Java APIs. Thanks, V. Javier Colmenares Accenture Communications & High Tech - Washington, DC Phone: (703) 947-2667 email:

RE: usage of custom classes in requests, WSDL issue

2001-06-05 Thread Ed Keen
Andrew, Since you are using the Apache library (Java) on the client side, why do you need to worry about WSDL? That is only required for Microsoft clients using the high-level api. The lowest level point of interface has to be the parameter names themselves. Otherwise, how does the server kno

RE: WSDL

2001-06-05 Thread Daniel Kruler
Is WSDL generated with GLUE, compatible with Apache SOAP? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: WSDL and MS SOAP

2001-06-05 Thread Christian Weyer
Yeah, that has already been cleared on the list. I just mixed it up, sorry ... Christian Ed Keen wrote: > > This is not true. You only need WSDL if you decide to use Microsoft's > "high-level" api. If you go with their "low-level" api (as documented in > the help file that comes with their to

RE: usage of custom classes in requests, WSDL issue

2001-06-05 Thread Andrew Burke
As I see it, this is definitely a problem. First, as you noted, there is the problem of the distribution of the custom classes. But isn't there also the issue of how those classes are registered for the serialization? Here is an example of some Apache SOAP code, which, as I understand things, ess

RE: WSDL

2001-06-05 Thread Nirmal Mukhi
Hello, Within the WSDL section you can specify an XML schema type or an XML element. See http://www.w3.org/XML/Schema for details on what you can express using schema. I'm not sure of what support it has for built-in complex types like arrays, hashtables, etc. Nirmal.

RE: Question about Parameters

2001-06-05 Thread Das, Kuntal
Look at comments below . Thanks, Kuntal Das Charles Schwab & Co., Inc. Wireless Technology 45 Fremont, SF Email : [EMAIL PROTECTED] Phone : (415)667-4322 Live life to the brim. -Original Message- From: [EMAIL PROTECTED] [ mailto:[EMAIL PROTECTED]

RE: WSDL

2001-06-05 Thread Hansen, Richard
Here are a couple examples of arrays. Don't know if you can directly specify vectors or hashtables as I don't believe they are SOAP defined types. > -Orig

RE: WSDL

2001-06-05 Thread Hansen, Richard
That's the way I understand it. But that is better than changing each client I guess. > -Original Message- > From: Daniel Kruler [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05, 2001 12:05 PM > To: [EMAIL PROTECTED] > Subject: RE: WSDL > > > So everytime I deploy a service on a diff

RE: WSDL

2001-06-05 Thread Daniel Kruler
How do I specify arrays, vectors and hashtables in WSDL ? -Original Message- From: Nirmal Mukhi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 1:09 PM To: [EMAIL PROTECTED] Subject: RE: WSDL Hi, Yes, that is the URI for a SOAP server with a SOAP service that supports the port

RE: WSDL

2001-06-05 Thread Nirmal Mukhi
Hi, Yes, that is the URI for a SOAP server with a SOAP service that supports the port type that this port refers to. The location of the SOAP server is thus hardcoded in the port definition. But you could separate the service definition (which includes such port definitions) and keep it in a WSD

RE: WSDL

2001-06-05 Thread Daniel Kruler
So everytime I deploy a service on a different webserver, I have to change WSDL? -Original Message- From: Hansen, Richard [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 1:02 PM To: '[EMAIL PROTECTED]' Subject: RE: WSDL The address location holds the URL that a client reading th

RE: WSDL

2001-06-05 Thread Hansen, Richard
The address location holds the URL that a client reading the WSDL will use to connect to the service. What you have looks right to me. Rick Hansen > -Original Message- > From: Daniel Kruler [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, June 05, 2001 11:52 AM > To: [EMAIL PROTECTED] > Subj

RE: WSDL

2001-06-05 Thread Daniel Kruler
What location should be specified in http://localhost:4040/soap/servlet/rpcrouter"/> in the ? Is the URL of the SOAP server hardcoded in WSDL? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL

Re: Done it - soap and tomcat on win2K

2001-06-05 Thread Sanjiva Weerawarana
This is clearly indicated in the installation instructions :-). Sanjiva. - Original Message - From: "Neil Benn" <[EMAIL PROTECTED]> To: "Soap-User (E-mail)" <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001 11:48 AM Subject: Done it - soap and tomcat on win2K > Hello, > > Thanks to Jona

Re: usage of custom classes in requests

2001-06-05 Thread Trang K. Duong
Hi Ed, I agree. When I wrote my service using custom classes and realized that how clients from other galaxies could have the custom classes on hand. I changed all i/o arguments to parameter: name/value. It's long and tedious, but it's more versatile, and best of all, it works. Thanks, tra

Re: Question about Parameters

2001-06-05 Thread Saint-Martin Cecile
Try params.addElement (new Parameter("addedfile", Element.class, docXML.getDocumentElement(), org.apache.soap.Constants.NS_URI_LITERAL_XML)); Cecile Saint-Martin [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 05, 2001

Re: Alternatives for Apache Tomcat ???

2001-06-05 Thread Jonathan Chawke
>Are there any commercially ready servlet containers which >will support Apache SOAP clients ? I'm assuming you mean 'servlet containers under which I can run SOAP services'. If that's your question, then the answer is "Yes, lots of them!" Here is a (probably incomplete) list (in no particular

Done it - soap and tomcat on win2K

2001-06-05 Thread Neil Benn
Hello, Thanks to Jonathon for teh pointer. I've done it - for future reference:- mod the tomcat.bat to include the xerces.jar at the start of the classpath run the bin\startup script then start the test with:- C:\jakarta-tomcat-3.2.2>java -cp %CLASSPATH%;%JAVA_HOME%\lib\xerces.

Alternatives for Apache Tomcat ???

2001-06-05 Thread Ajjarapu, Kondal
Hi I was made to believe that Tomcat is not exactly a "production ready" servlet container. Are there any commercially ready servlet containers which will support Apache SOAP clients ? Has anybody tweaked with the free IIS WebServer to see if it can host Java Servlets (rather than using the pric

RE: Installation of SOAP and Tomcat

2001-06-05 Thread Neil Benn
Hello, Thanks for your response, Jonathon (or is it Jon?). I checked that out (soap.jar was included) and still got the same error as before. Using CLASSPATH: c:\jakarta-tomcat-3.2.2\classes;c:\jakarta-tomcat-3.2.2\lib\ser vlet.jar;c:\jakarta-tomcat-3.2.2\lib\parser.jar;c:\jakarta-tomca

Re: SOAP Message Client & Service

2001-06-05 Thread Pae Choi
Martin, Hmm... This is not an easy one. First, it is not a simple challenge to develop a mechanism, i.e., client-server style messaging system, in addition to the insufficient experience with and knowledge of tools that you are planning to use. Second, there are many different scenarios in the cl

RE: Advantage of SOAP against RMI ???

2001-06-05 Thread Peter Govind
>I can not understand why sun haven't already released a toolkit that >sits >round this implementation??...(if they have then ignore me!) The last time I checked (5 June 2001), there's nothing like this available in that 48MB J2SE 1.4 or any other additional API. Nonetheless, as you said, it ca

usage of custom classes in requests

2001-06-05 Thread Ed Keen
I would like feedback on the whether or not any of you are using custom classes in your soap calls. While it is definitely convenient on the Apache server side (with its serializers & deserializers), it places an extra burden on the client, because now they must have these custom classes on their

Re: Need help on win2000 soap run with tomcat

2001-06-05 Thread Shyam Sarkar
Never mind... it works now. - Original Message - From: Shyam Sarkar To: [EMAIL PROTECTED] Sent: Tuesday, June 05, 2001 7:27 AM Subject: Re: Need help on win2000 soap run with tomcat Hi,   I have all the correct classpath defined.  Still getting class n

Re: SOAP between Java and C++

2001-06-05 Thread Pae Choi
David, When you say, C++ Server, is this mean that you already have a SOAP server written in C++ or planning to develop one. If none of these is the case, what are you referring to? Can you eloborate your scenario a little more so we can understand better. Pae -Original Message- From

RE: Advantage of SOAP against RMI ???

2001-06-05 Thread Colin Saxton
I think that the problem lies deeply in the way that developers, in general, program for distributed computing...We should not rely on the top down command running after command approach. We should program using an event model...what I would like to see is applications that fire off a request and

Re: SOAP between Java and C++

2001-06-05 Thread Anver Sotnikov
SOAP is used for interoperability so Apache SOAP does not require Java on server side!!! And you don't have to use JNI on server. David DELGRANCHE <[EMAIL PROTECTED]> 06/05/2001 11:15 AM Please respond to soap-user                 To:        "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>    

Re: Need help on win2000 soap run with tomcat

2001-06-05 Thread Shyam Sarkar
Hi,   I have all the correct classpath defined.  Still getting class not found exeception.  Removed all parsers other than xerces 1.4.0 from tomcat classpath. Need more help.   -error listed below--- C:\xml\soap\soap-2_1\samples

SOAP Message Client & Service

2001-06-05 Thread Marcin Misiewicz
Hello I'm trying to write Message Service & Client. Unfortunately I've never before wrote any message service or client. I was looking at the samples included into Apache SOAP project but I've found only one example, which takes the SOAP envelope from the file. I have to create SOAPEnvelope wit

Installation of SOAP and Tomcat

2001-06-05 Thread Neil Benn
Hello, I wonder if someone has come across this before. I've installed SOAP 2.2 and Tomcat3.2.2 on a win2K box running JVM1.3. I've gone through the installation instructions and has come up against a problem on the tests. When I run the test to check the client and server are successfu

SOAP between Java and C++

2001-06-05 Thread David DELGRANCHE
Hi all, I'm a newbie in Soap. I'm trying to find a solution to exchange informations between a Java Client and a C++ server. Apache Soap is really well done but requires Java on the server. Sure you will tell me that I can do JNI on my server, but this solution

RE: What Xerces version for Apache SOAP 2.2

2001-06-05 Thread Abbott, James STASCO-OTO/72
I have no problem running Xerces 1.4 -Original Message- From: Luis ROSSO - Up 2 U - Internet Solutions [mailto:[EMAIL PROTECTED]] Sent: 05 June 2001 14:05 To: [EMAIL PROTECTED] Subject: What Xerces version for Apache SOAP 2.2 Hi, what version of Apache Xerces should we use with Apache S

RE: Arrays with MS Hi-level client

2001-06-05 Thread Paul.Clifford
Great news.I'm really pissed off that I can't do any more WebService stuff at the moment. This will have to change, or I'm out of here! Paul Clifford UPCO Direct Line: 0113 20 10 636 Fax: 0113 20 10 666 Mobile: 07973 396031 mailto:[EMAIL PROTECTED] http://www.upco.co.uk The contents of this

RE: Ref. : Soap benchmarking

2001-06-05 Thread innes . mackenzie
Is it re-compiling the JSP page? > -Original Message- > From: Jean-Louis Vila [mailto:[EMAIL PROTECTED]] > Sent: June 5, 2001 2:43 PM > To: [EMAIL PROTECTED] > Subject: RE: Ref. : Soap benchmarking > > > Hi, > I notice the same thing. > Perhaps because of the creation of > SOAPContext t

RE: Ref. : Soap benchmarking

2001-06-05 Thread Jean-Louis Vila
Hi, I notice the same thing. Perhaps because of the creation of SOAPContext to manage SOAP object's scope ... Jean-Louis > -Message d'origine- > De : [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Envoye : mardi 5 juin 2001 11:32 > A : [EMAIL PROTECTED] > Objet : Ref. : Soap benchmarki

RE: Arrays with MS Hi-level client

2001-06-05 Thread Adam.Leggett
Got it working ! VBscript only deals with variant type so i used a little converter dll to change the return value from the SOAP call to an array of type variant. -Original Message- From: Adam.Leggett [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 05, 2001 10:14 AM To: Soap-User (E

Re: XML parsers to use with Apache Soap

2001-06-05 Thread Peter Govind
Sorry Pablo. This is not actually an answer to your post. Anyway I was thinking along the same lines. Is it possible to use SOAP with the default parsers that comes with the 48MB monstrousity that is J2SE 1.4 ? Or do we still need to use the Xerces parsers ? If this is a stupid question, pls

RE: Advantage of SOAP against RMI ???

2001-06-05 Thread Peter Govind
Agree. If you look at the web services articles around at the mo' they seem to paint a picture whereby a client app can access a multitude of web services. Sure that's nice. Then again, in reality the call/invocation is a bit on the expensive side (ie take time) - even on one web service only.

Re: proxy & soap

2001-06-05 Thread Jonathan Chawke
Hi Octav, See http://xml.apache.org/soap/faq/faq_chawke.html#Q2_6 and http://xml.apache.org/soap/faq/faq_chawke.html#Q2_7 Hope this helps, Jonathan. >From: Octav Chipara <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: proxy & soap >Date: Sat, 2 Jun 2001 09:18:53

Re: SOAP - samples & tutorial

2001-06-05 Thread Jonathan Chawke
Hi Martin, http://xml.apache.org/soap/faq/faq_chawke.html#Q2_3 Hope this helps, Jonathan. >From: Marcin Misiewicz <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: SOAP - samples & tutorial >Date: Sat, 2 Jun 2001 14:25:46 +0200 (MET DST) > > > Hi > >Where c

What Xerces version for Apache SOAP 2.2

2001-06-05 Thread Luis ROSSO - Up 2 U - Internet Solutions
Hi, what version of Apache Xerces should we use with Apache SOAP 2.2? Should we go on using version 1.2.3 as recommended a month ago, or may we use Xerces 1.4? Thanks and best regards Luis - To unsubscribe, e-mail: [EMAIL PROT

Question about Parameters

2001-06-05 Thread manuel . paitreault
Hi, I'd like to send a service invocation to a server with any types parameter for example, I have a "XML" file, I want to parse it and constructs a DOM tree representation ... and I'd like to send it to a SOAP server in order to get the content of an element ... so I tried to send a "call"

XML parsers to use with Apache Soap

2001-06-05 Thread Pablo
Hi, I remember to have read in the list about people using other xml parsers with Apache Soap and getting better results in terms of efficienci. If any of you is using any other parser with goog results, could you please post here the url where to get it and way to install it? thanks, Pablo

RE: WSDL and MS SOAP

2001-06-05 Thread Ed Keen
This is not true. You only need WSDL if you decide to use Microsoft's "high-level" api. If you go with their "low-level" api (as documented in the help file that comes with their toolkit), you do not need wsdl. -Ed -Original Message- From: Christian Weyer [mailto:[EMAIL PROTECTED]] Se

Re: look for VectorSerializer Example!

2001-06-05 Thread Pablo
I think I serialized a vector in my example, but notice that the // VectorSerializer vectorSer = new VectorSerializer(); is commented out, so nothing is needed to serialize a vector. Have a look also at the document where I try to explain what the source does. Link is http://www.eneris.com/~pablo

RE: Advantage of SOAP against RMI ???

2001-06-05 Thread Colin Saxton
One disadvantage that I have found with SOAP depends on the time taken to execute the SOAP envelope on the server!! You could have a call that could take some time and client will more than likely timeout! Keep in mind when performing tasks that could take over a minute to do them as part of a q

SOAP invocated service parameters

2001-06-05 Thread manuel . paitreault
Hi, I thought that we could send any types of parameters (string, files and personal classes) in an invocated service to a SOAP server ?? but how can I get the parameter (in server side) in the same format as before : for exemple, if I send to a server an XML Document (DOM) I'd like to get

Advantage of SOAP against RMI ???

2001-06-05 Thread Ralf Bierig
Which advantages does SOAP provide compared with RMI? Whats with SOAP <-> CORBA ?? Whats are the advantages of SOAP against RMI and whats are the disadvantages? Discuss! Thanks, in advance! Ralf __ Do You Yahoo!? Get personalized email addresses

look for good SOAP Documentation about ...

2001-06-05 Thread Ralf Bierig
the internal working of SOAP (I know I can have a look at the sourcecode, but a good documentation can be very useful as well!) Thanks! Ralf __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.m

look for VectorSerializer Example!

2001-06-05 Thread Ralf Bierig
Does somebody have an example code for using the VectorSerializer? Thanks! Ralf __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ -

look for ArraySerializer Example!

2001-06-05 Thread Ralf Bierig
Does anybody has a code example for using ArraySerializer? Thanks! Ralf __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ --

Réf. : Soap benchmarking

2001-06-05 Thread manuel . paitreault
> I don't think I could answer you, but I noticed something about SOAP : when you start Tomcat (or other web server...) and you want to list deployed services (for exemple, with the administration tool ...), the transaction lasts several seconds ... it's the same thing if you inoke one of these

Arrays with MS Hi-level client

2001-06-05 Thread Adam.Leggett
I am using Apache2.1, MSSoap2.0 Hi-level and GLUE for my WSDL generation. Trying interop between Apache Service and MS Hi-level Client. Using a series of 'echo' methods to test ie: public class EchoTestService { public EchoTestService() { super(); } public float echoFloat(float f) {

Soap benchmarking

2001-06-05 Thread Pablo
Hi everybody, going on with my work on Soap I'm trying to do some benchmarking to see how soap clients and servers behave under high load. I've found many dificulties, mainly because soap clients (maybe due to java) are very slow, so it is impossible for me to test real high load server processe

Stateful SOAP RPC-service with HTTPS. Why?

2001-06-05 Thread Hartmut Bernecker
Hi @all, Apache Soap 2.2 allows it, to make Services be stateful (with HTTP). The documentation says: "What that means is that if a service you are talking to via HTTP sets the appropriate HTTP cookies to maintain the session, those will be copied and stored in the call object used to invoke the

RE: WSDL and MS SOAP

2001-06-05 Thread Abbott, James STASCO-OTO/72
you can use MS soap serializer, and do not have to use the WSDL file. -Original Message- From: Ding, Chengmin [mailto:[EMAIL PROTECTED]] Sent: 04 June 2001 18:50 To: '[EMAIL PROTECTED]' Subject: RE: WSDL and MS SOAP If you use mssoap.soapclient in VB, you have to use WSDL. -Chengmin -

MS SOAP 2.0

2001-06-05 Thread David DELGRANCHE
Hi all, I'm testing both Apache SOAPv2.1 toolkit and MSSoap 2.0 to find the best solution to my problem. The test of Apache toolkit is really good and it seems to be a really good solution for me. But I'm not able to test Microsoft prodct. I've followed all the instruct