Creating my own deploy tool

2001-06-28 Thread Anthony Ikeda
I have created my own class that should:*    load a deployment descriptor file*    construct a ServiceManagerClient and DeploymentDescriptor class*    List all deployed services*    If the service to be deployed does not exist, deploy it*    Create a new entry for a particular serviceHere i

potential performance improvements

2001-06-28 Thread Sanjiva Weerawarana
I committed some changes to the way SOAPMappingRegistry works and was being used to reduce a bunch of unneeded overhead. I would appreciate if people could try the code from CVS (or tonite's nightly build) and see whether there are any noticeable changes. Thanks, Sanjiva.

cvs commit: xml-soap/java/samples/interop EchoTestClient.java

2001-06-28 Thread nagy
nagy01/06/28 14:16:38 Modified:java/samples/interop EchoTestClient.java Log: Changed the call to the SOAPMappingRegistry constructor because the one which was being called no longer exists. Revision ChangesPath 1.2 +2 -2 xml-soap/java/samples/interop/Echo

cvs commit: xml-soap/java/src/org/apache/soap/util/xml XMLJavaMappingRegistry.java

2001-06-28 Thread sanjiva
sanjiva 01/06/28 14:04:04 Modified:java/src/org/apache/soap/encoding SOAPMappingRegistry.java java/src/org/apache/soap/rpc Call.java java/src/org/apache/soap/server DeploymentDescriptor.java java/src/org/apache/soap/server/http

cvs commit: xml-soap/java/src/org/apache/soap/util/net Relay.java

2001-06-28 Thread nagy
nagy01/06/28 13:12:11 Modified:java/src/org/apache/soap/transport/http SOAPHTTPConnection.java java/src/org/apache/soap/util/net Relay.java Log: Fixed encoding for systems whose default codepage is not 8859_1. See http://nagoya.apache.org

cvs commit: xml-soap/java/src/org/apache/soap/server ServiceManager.java

2001-06-28 Thread nagy
nagy01/06/28 13:08:48 Modified:java soap.xml java/src/org/apache/soap/server ServiceManager.java Log: Added support for config file element to allow users to enable or disable SOAP interface to Service Manager. See http://nagoya.apache.org/bugzilla/show_bug

cvs commit: xml-soap/java/src/org/apache/soap Constants.java

2001-06-28 Thread nagy
nagy01/06/28 13:02:47 Modified:java/src/org/apache/soap Constants.java Log: Changed default schema to 2001 spec. See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2388 for the details. PR: 2388 Revision ChangesPath 1.21 +2 -2 xml-soap/java/src/org/a

RE: JAXM released

2001-06-28 Thread graham glass
out of interest, is Axis going to use JAXM? -Original Message- From: Vivek Chopra [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 1:08 PM To: SOAP Developer Mailing List/Apache Subject: JAXM released Available at http://developer.java.sun.com/developer/earlyAccess/xml/jaxm/ "J

JAXM released

2001-06-28 Thread Vivek Chopra
Available at http://developer.java.sun.com/developer/earlyAccess/xml/jaxm/ "JavaTM API for XML Messaging (JAXM) Optional Package enables applications to send and receive document oriented XMLmessages using a pure Java API. JAXM implements Simple Object Access Protocol (SOAP) 1.1 with Attachments

Which is better design

2001-06-28 Thread Khamesra, SandeepX
Guys, I need some of your advice and suggestion.. If I need to return a set of information from a java service and this information is scattered in different java classes.. Which is better Get all the information from all the classes and formulate a XML and retur

Re: VB / ASP code to Java service

2001-06-28 Thread Ricky Cardozo
Have you tried getting array of strings back from SOAP into an ASP page? - Original Message - From: "Khamesra, SandeepX" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 12:13 PM Subject: VB / ASP

RE: an example of the transport of Array

2001-06-28 Thread Hansen, Richard
This is a SOAP response I captured recently. http://schemas.xmlsoap.org/soap/encoding/"; xsi:type="ns3:Array" ns3:arrayType="xsd:string[3]"> MN-CS WI-CS IA-CS > Can someone please send me an example of how an array is > represented in the > XML? > I want to write a small C client the send

VB / ASP code to Java service

2001-06-28 Thread Khamesra, SandeepX
Able to successfully talk to Java service using Apache Soap from VB / ASP code

an example of the transport of Array

2001-06-28 Thread Shay Mandel
Hi, Can someone please send me an example of how an array is represented in the XML? I want to write a small C client the sends an array to Apache-SOAP server, and I don't have a C client yet, so I am writing this XML by my own (yes, it is as ugly as it sound). Thanks in advance. Shay Mandel

cvs commit: xml-soap/java/samples/calculator README

2001-06-28 Thread dug
dug 01/06/28 07:53:48 Modified:java/samples/calculator README Log: update readme Revision ChangesPath 1.8 +9 -0 xml-soap/java/samples/calculator/README Index: README === RCS file: /ho

cvs commit: xml-soap/java/samples/calculator Calc.java input testit1.cmd testit1.sh

2001-06-28 Thread dug
dug 01/06/28 07:06:47 Added: java/samples/calculator Calc.java input testit1.cmd testit1.sh Log: Add a new calculator demo. This one doesn't use a gui and similates a reverse polish notation calculator. See the help panel ("?") for more details.

Re: Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Scott Nichol
As I said, I had tracked the error down to Xerces, but not the exact code within Xerces. Switching to Crimson fixed the problem, which is further evidence that Xerces is the culprit. Yes, Apache SOAP creates a DOM of the messages it receives. This is true on both client and server. It does not

RE: Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Anil Kumar, Anumakonda
Hi Scott, is this a problem with Xerces 1.2.3. how SOAP internally parse and send across .is SOAP internally created DOM structure and send it through client. can you please help me how SOAP will transfer data. Thanks & Regards Anil -Original Message- From: Scott Nichol [mailto:[EMAI

Re: Transfer a class file within a SOAP response

2001-06-28 Thread Sanjiva Weerawarana
Yes, send it as a byte[] basically .. which would get base64 encoded and sent over soap. Sanjiva. - Original Message - From: "Chris Francis" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 28, 2001 9:01 AM Subject: RE: Transfer a class file within a SOAP response > Ma

RE: Transfer a class file within a SOAP response

2001-06-28 Thread Chris Francis
Maybe base64 encode it first? -Original Message- From: Ralf Bierig [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 14:01 PM To: SOAP Mailing List SOAP Mailing List Subject: Transfer a class file within a SOAP response How can I transfer a Java Class file within a SOAP response

Re: Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Scott Nichol
I was getting the same problem using Apache SOAP 2.1 and Xerces 1.2.3 and 1.3.0. Debugging led me to believe that Xerces was at fault, but I never tracked it down to any particular code within Xerces. However, I got past this by moving to a nightly build of Apache SOAP 2.1 that supported JAXP an

Transfer a class file within a SOAP response

2001-06-28 Thread Ralf Bierig
How can I transfer a Java Class file within a SOAP response perfecty - ideas? Prossible as a string? Problems with special letters? __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/

RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP)

2001-06-28 Thread Anil Kumar, Anumakonda
Hi, if i split the data it is working fine. but what is the limitation data content.the same program is not working if i increase the size of data content. thanks & regards Anil -Original Message- From: D Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 8:46 PM To: [EM

RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP)

2001-06-28 Thread D Johnson
Anil, Have you tried splitting the data up and running it all through in blocks? Perhaps a data content issue? (Just tossing some suggestions out there). Let us know what you come up with! =- Dj -Original Message- From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]] Sent: T

RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP)

2001-06-28 Thread Anil Kumar, Anumakonda
Hi raja, this data i am sending across . i am attaching text doc. Thanks & regards Anil -Original Message- From: raja [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 8:25 PM To: [EMAIL PROTECTED] Subject: RE: Urgent(is there any limit for the size of data which can be t rans p

RE: Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Anil Kumar, Anumakonda
Hi raj, i have to go for SOAP 2.2 to over come this problem. is there any other way to solve this problem Thanks & regards, Anil -Original Message- From: Kumar Raj [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 8:21 PM To: [EMAIL PROTECTED] Subject: Re: Urgent(is there any l

RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP)

2001-06-28 Thread raja
can u send the code ? Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 5:53 PM To: '[EMAIL PROTECTED]' Subject: RE: Urgent(is there any limit for the size of da

Re: Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Kumar Raj
Hi ! You can find this addressed in the Trouble shooting section of the v2.2 doc. Regards Kumar Raj "Anil Kumar, Anumakonda" wrote: > Hi , > > If i send huge data through SOAP(hashtable which contains a lot of data), i > am getting this error. > Is there any limit for the size of data which c

RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP)

2001-06-28 Thread Anil Kumar, Anumakonda
Hi raj, same thing is working fine, if i decrease data. what i am doing is ,i am passing a vector of strings in a hashtable. if i decrease the no.of strings in a vector it is 100% working fine. i can get data to client. if i increase no of string in a vector i am getting problem. can u ple

RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP)

2001-06-28 Thread Matteo Belloni
I think the same. Theo -Original Message- From: raja [mailto:[EMAIL PROTECTED]] Sent: giovedì 28 giugno 2001 14.18 To: [EMAIL PROTECTED] Subject: RE: Urgent(is there any limit for the size of data which can be t rans ported through SOAP) hi sorry, the mail was sent by accident. you can

RE: Urgent(is there any limit for the size of data which can be trans ported through SOAP)

2001-06-28 Thread raja
hi sorry, the mail was sent by accident. you can always send large amounts of data. the exception clearly talks about the serializer/deserializer. all u need to do is use the default serializers available or implement one in case the datatypes are not supported to be serialized. u need to registe

RE: Urgent(is there any limit for the size of data which can be trans ported through SOAP)

2001-06-28 Thread raja
hi this is no way related to the size of the hashtable. Raja Innova Solutions Ph: Off : 3543139,40,50 X 217 Res : 3551023 -Original Message- From: Anil Kumar, Anumakonda [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 28, 2001 5:43 PM To: '[EMAIL PROTECTED]' Subject: Urgent(is the

Urgent(is there any limit for the size of data which can be transported through SOAP)

2001-06-28 Thread Anil Kumar, Anumakonda
Hi , If i send huge data through SOAP(hashtable which contains a lot of data), i am getting this error. Is there any limit for the size of data which can be transported through SOAP. How to over come this problem. I am using SOAP 2.1. SOAPException: faultCode=SOAP-ENV:Client; msg=No Deserializ

Re: SOAP Client..

2001-06-28 Thread Kumar Raj
Hi all I was able to figure out from the API doc that we can pass the object itself as a parameter in the Parameter class. Sorry for the unwanted trouble. Regards Kumar Raj     Kumar Raj wrote: Hi I'm working with Apache SOAP v2.2 I need to create a SOAP service accepting String Array as Par

SOAP Client..

2001-06-28 Thread Kumar Raj
Hi I'm working with Apache SOAP v2.2 I need to create a SOAP service accepting String Array as Parameter. Now how do I create my SOAP Client ? For a normal Call parameter looks like this. new Parameter("paramName",paramType,paramValue,action) How do I create a my SOAP client to take a String