unsubscribe me

2001-12-12 Thread Mia Nordstr|m
Please unsubscribe me.

Newbie question: Easy way to print response and request documents

2001-12-12 Thread ira . waxberg
What is the easiest way to capture the XML sent in the request and response documents? It would be easy to use JDOM, but I don't know what objects to pass to it. Is there something in the Call and Response objects that I can use? Basically, I need to look at the the raw XML sent from and

Re: BUG in SOAP?? SSL/SOAP: Error opening socket - only in 95/98. ..

2001-12-12 Thread Pae Choi
The SOAP does not support the HTTP GET, you, however, should be able to test if your HTTPS is working correctly by using your browser. [1] Try https://hostname/soap/servlet/messagerouter. If it works, you should get something like: SOAP RPC Router Sorry, I don't speak via HTTP GET- you have to

Settings different for rpcrouter and messagerouter?

2001-12-12 Thread Sandeep Heer
Hi I am having problems getting my SOAP application to work. When i used RPC i.e. calling a specific method on my webservice using Call and all that stuff it worked fine. I have now written a simple SOAP message system that does not seem to work. I get the error message below. I take it since

RE: Newbie question: Easy way to print response and request documents

2001-12-12 Thread William Brogden
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 3:52 AM To: [EMAIL PROTECTED] Subject: Newbie question: Easy way to print response and request documents What is the easiest way to capture the XML sent in the

I thought in SOAP messaging you dont call a method!

2001-12-12 Thread Sandeep Heer
My understanding of SOAP messaging was that you dont call a method on the webservice. BUT...in the XML from the client side you have to add a line i.e. callMethod1 xmlns=message-service-donow SO you are specifying the target method. My understanding was that one of the advantages of SOAP

tomcat exception

2001-12-12 Thread Francis Amanfo
Hi, I am in the process of getting soap 2.2 work under tomcat 4.0. When I point my browser to http://localhost:8080/soap/servlet/rpcrouterI get the exception: javax.servlet.ServletException: Class org.apache.soap.server.http.RPCRouterServlet is not a Servletat

Re: tomcat exception

2001-12-12 Thread Gerald Hildebrandt
I had the same problem yesterday, just copy soap.jar into /soap-2_2/webapps/soap/WEB-INF/lib/ . Francis Amanfo wrote: Hi, I am in the process of getting soap 2.2 work under tomcat 4.0. When I point my browser to http://localhost:8080/soap/servlet/rpcrouter I get the exception:

SOAP and Mac OSX

2001-12-12 Thread Trevor Daniel Kramer
Has anyone gotten Apache SOAP to work under Java Webstart on OSX? I get an unknown method error while trying to make a soap call when soap calls node.getNamespaceURI() which would indicate it is trying to use an older xml parser. However, xerces is the only xml parser in my jnlp file and

unsubscribe me

2001-12-12 Thread Enrique Pérez
Please unsubscribe me.

Serialize a [] of Objects

2001-12-12 Thread Daniel . Wolff
Hi, one of my service methods returns a Array of Products Product[ ] products I´m working with Apache Soap. To marshall this I wrote my own serializer because I have something different to do like the standard ArraySerializer. What can I do that the XMLMappingRegistry uses my serializer. I

Re: Settings different for rpcrouter and messagerouter?

2001-12-12 Thread Chris Malley
Sandeep Heer wrote: Hi I am having problems getting my SOAP application to work. When i used RPC i.e. calling a specific method on my webservice using Call and all that stuff it worked fine. I have now written a simple SOAP message system that does not seem to work. I get the error

Comparision of different toolkits

2001-12-12 Thread jyothi
Hi, there are so many soap toolkits available. i want to use a java implementation of soap toolkit. out of these toolkits that are available which one is better. How do i judge which toolkits are better, i mean what considerations should be taken care. Please help me someone out there with

Deployment Descriptor, isd:mappings Element

2001-12-12 Thread Paras, Frederick
In the isd:mappings element of the deployment descriptor do you need to map classes that are being sent only to the soap server or do you also have to add mappings for return types (types being sent back from an rpc-style method call) ??? Lastly, is there a DTD or XSD document I can view for

RE: Comparision of different toolkits

2001-12-12 Thread Paras, Frederick
In my case, I have to use Apache since our current application uses Weblogic 5.1. But you can also use third party tools. A lot depends on your current needs, performance, security, possibly scalability. I am also new to Soap, but learning at a decent pace. Frederick V. Paras Software

Help to run soap example.

2001-12-12 Thread Puthezhath, Rajeev (TWII Boston)
Hi, I am new to soap and is trying to run it with Orion server. When I try to run the hello server example I get the following error Fault Code = SOAP-ENV:Server Fault String = Method 'sayHelloTo' is not supported. my service is like this package hello; public class HelloServer {

What gets better performance?

2001-12-12 Thread Jeremy Levy
This is how I anticipate my service to be used: From each client: Startup: 1 RPC Login call 1 RPC getting initial settings call 1 RPC Call every 15 seconds there after... The system could eventually have thousands of simultaneous clients.. My question is, should I deploy

RE: Help to run soap example.

2001-12-12 Thread Rino Srivastava
Check that your client and server are in the proper directory. Also, if you are using tomcat, then edit the server.xml file under tomcat/config to specify the right context. Hope this helps. Cheer! Rino -Original Message- From: Puthezhath, Rajeev (TWII Boston) [mailto:[EMAIL

RE: Help to run soap example.

2001-12-12 Thread Puthezhath, Rajeev (TWII Boston)
Hi, Thanks for your mail. When i check the services through admin tool I see the service listed there. and also the calculator example runs fine. I am using Orion as the server. What could be wrong Thanks Rajeev -Original Message- From: Rino Srivastava [mailto:[EMAIL PROTECTED]]

RE: Help to run soap example.

2001-12-12 Thread Hansen, Richard
Please read the documentation, it says : The service does not support the invoked method. If your service implementation class has the method, then it may be that your deployment descriptor doesn't publish that method. Check your deployment descriptor. The SOAP:Fault element may contain more

Re: Comparision of different toolkits

2001-12-12 Thread Chris Malley
[EMAIL PROTECTED] wrote: Hi, there are so many soap toolkits available. i want to use a java implementation of soap toolkit. out of these toolkits that are available which one is better. How do i judge which toolkits are better, i mean what considerations should be taken care. Please

RE: Serialize a [] of Objects

2001-12-12 Thread Chris Means
Daniel, Take a look at the bidbuy sample code...the PurchaseOrderSerializer.java seems to show how to build an array of objects. -Chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 9:21 AM To: [EMAIL PROTECTED]; [EMAIL

Re: Comparision of different toolkits

2001-12-12 Thread Jason Rutherglen
I would check out the AXIS toolkit. It is being made to be as easy to use as GLUE. - Original Message - From: Chris Malley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, December 12, 2001 12:21 PM Subject: Re: Comparision of different toolkits [EMAIL PROTECTED] wrote:

SOAPException while invoking method...Involves instantiation

2001-12-12 Thread Paras, Frederick
I am making a SOAP call and invoking this method: public static Credential authenticate(long enterpriseId, String loginId, String password) and after the call: resp = call.invoke(url, ); i get a soap exception: [SOAPException: faultCode=SOAP-ENV:Client; msg=Unable to instantiate 'com.qwest.

Passing Objects

2001-12-12 Thread Jeremy Levy
Okay, so to pass a custom object I need to write my own serializer.. Is this correct, also where can I get information and/or a couple of simple examples... Perhaps one that I can hack up? I am sure this has been asked hunderds of times, I checked my log of msgs and couldn't find something..

xml schemas?

2001-12-12 Thread Bryan Field
I am trying to implement a soap service that has 20 or so methods. I have defined the data that is needed to invoke each of these methods. I am doing the server implementation and another party is doing the client side implementation. Do I need to create a schema for each of my commands in

RE: xml schemas?

2001-12-12 Thread Wilkins, Craig
How complex are your inputs/outputs to these methods? The best thing that you could do is to create a WSDL file that describes all of your services, inputs, outputs, bindings, etc. for the client. The quick and easy way would be to provide a list of services and there inputs/outputs.

SOAP Interoperability: SOAPAction support

2001-12-12 Thread Krishnamurthy, Ramanathan
Hi, Apache SOAP docs. indicate that support for message routing based on SOAPAction field is currently not available and that with a small modification to the routing algorithm, routing based on SOAPAction can be achieved. Is anyone aware of a patch (available free, in the true spirit of public

SOAP and WebSphere 4 -- packaging SOAP classes into EAR

2001-12-12 Thread Bryan Pendleton
Hello, I'm trying to deploy a simple SOAP service to WebSphere 4.0, and not having any luck. I'm confused at the part in the instructions where WebSphere says: Package the code artifact into an Enterprise Archive. This step is a deployment packaging requirement of WebSphere Application Server.

RE: Passing Objects

2001-12-12 Thread Chris Means
The samples are on the Apache-SOAP site as I recall. -Original Message- From: Jeremy Levy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 3:44 PM To: [EMAIL PROTECTED] Subject: Passing Objects Okay, so to pass a custom object I need to write my own serializer.. Is

Re: Passing Objects

2001-12-12 Thread Chris Malley
Jeremy Levy wrote: Okay, so to pass a custom object I need to write my own serializer.. Is this correct, also where can I get information and/or a couple of simple examples... Perhaps one that I can hack up? I am sure this has been asked hunderds of times, I checked my log of msgs and

How to retrieve the message at service method sent by the client

2001-12-12 Thread venkata akella
HI Can someone help me here... I have a service class and client class. Service class deployed on apache soap2.2. I am sending a message from the client to service and getting back the response properly. But I am trying to get the message sent by the client at service side. From client side I

RE: xml schemas?

2001-12-12 Thread Bryan Field
Craig, My inputs are not that complex. The methods are basically to create records in database tables, like createBusiness, createListing, etc... I am creating essentially beans to represent the data needed to create each of the objects. I am using the Apache BeanSerializer class provided

error with Apache Soap

2001-12-12 Thread Bryan Field
I have set up Apache Tomcat to implement soap services and I put all the appropriate jars (soap.jar, activation.jar, mail.jar and xerces.jar) in the lib directory of Tomcat. I added them to my classpath as well and I am issueing the following command, from a command line, to test the service.

RE: xml schemas?

2001-12-12 Thread Wilkins, Craig
What data types are the parameters to the methods? If they are just a set of strings, I advise you not to use the BeanSerializer, as that would require that your client either use the BeanSerializer or know how to encode/decode the SOAP body in such a way that the BeanSerializer knows how to

RE: Passing Objects

2001-12-12 Thread Chris Means
That's very true, however, if you don't want to pass every property of your bean then you will want to roll your own. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Malley Sent: Wednesday, December 12, 2001 5:38 PM To: [EMAIL PROTECTED]

Re: xml schemas?

2001-12-12 Thread John Mani
What data types are the parameters to the methods? If they are just a set of strings, I advise you not to use the BeanSerializer, as that would require that your client either use the BeanSerializer or know how to encode/decode the SOAP body in such a way that the BeanSerializer knows how

Re: xml schemas?

2001-12-12 Thread Guy McArthur
Perl's SOAP::Lite can deserialize beans. Example: A very simple bean class: // Temperature.java package test; public class Temperature { private double temp; public Temperature() { temp = 0d; } public double getTemperature() { return temp; } public void

Re: Is Apache SOAP a turnstile?

2001-12-12 Thread Dave Smith
I've got some groveling to do. I discovered the problem. Two Words. Blame Microsoft ;-\ The problem was never with the Apache SOAP server. It was the MS ASP client I was using that was queing the messages. Something in way IIS was initializing the SOAP connector would not allow multiple

RE: error with Apache Soap

2001-12-12 Thread William Brogden
-Original Message- From: Bryan Field [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 10:13 PM To: [EMAIL PROTECTED] Subject: error with Apache Soap I have set up Apache Tomcat to implement soap services and I put all the appropriate jars (soap.jar,

unsubscribe me

2001-12-12 Thread Balaji B.
* Disclaimer: The information in this e-mail and any attachments is confidential / privileged. It is intended solely for the addressee or addressees. If you are not the addressee indicated in this message, you may not copy or

please unsubscribe me !!!

2001-12-12 Thread Bineet Basant
--- Information transmitted by this E-MAIL is proprietary to Wipro and/or its Customers and is intended for use only by the individual or entity to which it is addressed, and

RE: xml schemas?

2001-12-12 Thread Bryan Field
Craig, I have read most of the book entitled Understanding Soap by Scribner and Striver and I still don't understand the regular SOAP encoding. I understand the structure of the soap envelope but there seems to be a disconnect between the method call and the actual encoding of that method call