ssh to cvs.apache.org at midnight EDT on 7/3

2002-07-02 Thread Scott Nichol
Is anyone else having trouble getting an ssh connection to cvs.apache.org? Scott Nichol -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Confusing issue on Maps

2002-07-02 Thread SoumenS
This has been an interesting thread. It is heartening to see serializer improvements that will be taken up. Great work, Scott! Soumen Sarkar. -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 02, 2002 7:04 PM To: [EMAIL PROTECTED] Subject: Re: Confusi

Re: Confusing issue on Maps

2002-07-02 Thread Scott Nichol
> To bring back the discussion to Maps and Collections, I think that they should > be better supported explicitly, so that I can have Collections in Maps and so > on, without trying to figure out what does actually happen deep inside > classes, or superclasses. Thanks for getting us back to the o

Re: Confusing issue on Maps

2002-07-02 Thread Niclas Hedhman
On Tuesday 02 July 2002 22:54, Scott Nichol wrote: > I am curious: how did Apache SOAP create "the initial illuision of > distributed OO programming but could not support it in its full glory"? I don't think the issue is "Is Apache SOAP a good implementation of SOAP?" but more "Is SOAP good enou

Re: No Deserializer found

2002-07-02 Thread Scott Nichol
The service is returning the value in an XML element (named 'return') that has no xsi:type attribute. Therefore, your client must provide a type mapping for this element, such as by adding code like: SOAPMappingRegistry smr = new SOAPMappingRegistry(); smr.mapTypes(Constants.NS_URI_SOAP_

Re: tomcat 4.0.4 ,xml apache soap installation

2002-07-02 Thread Scott Nichol
The error 400 indicates that Tomcat believes this is a bad request. I suspect this means it has no mapping for /soap. If you would like to proceed with Tomcat 3.0.x, I've attached the Tomcat 3.1 installation instructions from SOAP 2.0, which might work with Tomcat 3.0.x. If you want to go to To

tomcat 4.0.4 ,xml apache soap installation

2002-07-02 Thread Sridhar
Hi,   where can i get tomcat 4.0.4 ,xml apache soap installation guidelines, as i continue to get the following exception from tomcat 3.0X   Caught SOAPException (SOAP-ENV:Protocol): Unsupported response content type"text/html", must be: "text/xml". Response was:

Error: 400

Locat


Re: i am getting the following exception

2002-07-02 Thread Sridhar
Thanks Scott - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 8:35 AM Subject: Re: i am getting the following exception > The installation instructions > (http://xml.apache.org/soap/docs/install/index.html) include inform

Re: i am getting the following exception

2002-07-02 Thread Scott Nichol
The installation instructions (http://xml.apache.org/soap/docs/install/index.html) include information on Tomcat 3.2. The instructions for 4.0 are the same except that there is no need to edit any batch script file. Scott - Original Message - From: "Sridhar" <[EMAIL PROTECTED]> To: "Sco

Re: Sample application using soap

2002-07-02 Thread Scott Nichol
I do not know of an example, but a Vector is handled like other types. The client for a method with one Vector parameter and a Vector return value would look something like: Vector v = new Vector(); v.addElement("Element 1"); v.addElement("Element 2"); Call call = new Call();

Re: i am getting the following exception

2002-07-02 Thread Scott Nichol
How did you configure SOAP with your web app container (e.g. Tomcat)? It appears the container may not have /soap mapped to SOAP. Scott Nichol - Original Message - From: "Sridhar" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 02, 2001 9:11 PM Subject: i am getting the f

Re: Sample application using soap

2002-07-02 Thread Indrasish N Basuroychowdhury
I have sent this mail earlier and sorry for the repetation. Need a sample for serializing/deserializing and sending/receving Vector of objects for the Java client. Can someone help me. Thanks, Indrasish. Scott Nichol wrote: > For Apache SOAP, you need to get it (http://xml.apache.org/dist/soa

Re: Sample application using soap

2002-07-02 Thread Scott Nichol
For Apache SOAP, you need to get it (http://xml.apache.org/dist/soap/) and a J2EE web container, such as Tomcat (http://jakarta.apache.org/builds/jakarta-tomcat-4.0/release/v4.0.4/). You install these and run the samples (see, e.g., http://www.scottnichol.com/apachesoapinstall.htm). There are se

Re: Confusing issue on Maps

2002-07-02 Thread Scott Nichol
- Original Message - From: "Niclas Hedhman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 2:49 AM Subject: Re: Confusing issue on Maps > On Tuesday 02 July 2002 13:36, [EMAIL PROTECTED] wrote: > > I will conclude by totally agreeing with your last paragraph --

i am getting the following exception

2002-07-02 Thread Sridhar
Hi,   Can anybody let me know , wher i need to configure for the sample address book application   Caught SOAPException (SOAP-ENV:Protocol): Unsupported response content type "text/html", must be: "text/xml". Response was:

Error: 400

Location: /soap/servlet/rpcrouter

Content

Re: Confusing issue on Maps

2002-07-02 Thread Scott Nichol
> Scott, > > Neither am I a CORBA expert. However, as a OO Software developer > with CORBA experience, I can answer your first question with the > following statements: > >SOAP is a XML based messaging protocol -- it does not care >what kind of higher software layer is using it. However, a

Re: Confusing issue on Maps

2002-07-02 Thread Scott Nichol
> > Dear All, > > Niclas Hedhman wrote : > > > Parameter types are typically not a problem, since they are pretty much > under > > control and can be modified for the occassion. It is the content of > objects > > that really is annoying. > > > Don't get me wrong. I like SOAP and I like the Apache

Re: Confusing issue on Maps

2002-07-02 Thread Scott Nichol
- Original Message - From: "Niclas Hedhman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 02, 2002 3:21 AM Subject: Re: Confusing issue on Maps > On Tuesday 02 July 2002 11:06, Scott Nichol wrote: > > From: "Niclas Hedhman" <[EMAIL PROTECTED]> > > > Inherent means to me

Re: Req help

2002-07-02 Thread Scott Nichol
You have somehow mangled the class loading for Tomcat. Specifically, it is loading soap.jar before Tomcat's own jars. Your classes and jars for Apache SOAP and your SOAP services should only be placed within the context of a web application, e.g. $CATALINA_HOME/webapps/soap/WEB-INF/lib. Do not

Req help

2002-07-02 Thread Sridhar
Hi ,   i get the following exception , can anybody help,while trying to view the List of Apache's Soap admin    org.apache.jasper.JasperException: Unable to compile class for JSPC:\tomcat\work\localhost_8080%2Fsoap\_0002fadmin_0002flist_0002ejsplist_jsp_0.java:65: No variable CONFIGFILENAME def

Re: Confusing issue on Maps

2002-07-02 Thread Niclas Hedhman
On Tuesday 02 July 2002 15:51, Herreman, Christophe wrote: > Am I mistaken if I think that sending a java Vector, or Map or Hashmap over > the SOAP wire will not be received well in a .Net client? > > In our system design, SOAP is used for interoperability and the .NET > compatibility is important

RE: Confusing issue on Maps

2002-07-02 Thread Herreman, Christophe
Dear All, Niclas Hedhman wrote : > Parameter types are typically not a problem, since they are pretty much under > control and can be modified for the occassion. It is the content of objects > that really is annoying. > Don't get me wrong. I like SOAP and I like the Apache SOAP implementatio

Re: Confusing issue on Maps

2002-07-02 Thread Niclas Hedhman
On Tuesday 02 July 2002 11:06, Scott Nichol wrote: > From: "Niclas Hedhman" <[EMAIL PROTECTED]> > > Inherent means to me; "I need to do nothing and it will work". > > 1. MapSerializer is registered by Apache SOAP as a serializer and > deserializer for the Java type Map. You do not need to call ma