Unsubscribe me

2002-04-25 Thread Colin Saxton
-Original Message- From: Dilova, Tereza (BG) [mailto:[EMAIL PROTECTED]] Sent: 25 April 2002 06:56 To: [EMAIL PROTECTED] Subject: Unsubscribe me Unsubscribe me This email and any files transmitted with it are

RE: Mutliple Soap-Containers

2002-03-22 Thread Colin Saxton
What context have you set the rpcrouter servlet to ?? is it the same for all of them? -Original Message- From: David Hirst [mailto:[EMAIL PROTECTED]] Sent: 22 March 2002 12:20 To: [EMAIL PROTECTED] Subject: Mutliple Soap-Containers Is it possible to have multiple applications (ear

RE: Mutliple Soap-Containers

2002-03-22 Thread Colin Saxton
. How would I go abotu changing this? Colin Saxton wrote: What context have you set the rpcrouter servlet to ?? is it the same for all of them? -Original Message- From: David Hirst [mailto:[EMAIL PROTECTED]] Sent: 22 March 2002 12:20 To: [EMAIL PROTECTED] Subject: Mutliple Soap

RE: HELP : xsi:null=true

2002-03-13 Thread Colin Saxton
Its xsi:nil and not xsi:null for specifying that an element value holds a null value... -Original Message- From: dovle [mailto:[EMAIL PROTECTED]] Sent: 12 March 2002 20:12 To: [EMAIL PROTECTED] Subject: Re: HELP : xsi:null=true Not mentioned: using orion 5.2 apache soap 2.2 And the

RE: EJB SOAP

2002-03-13 Thread Colin Saxton
One thing Ihave notice when calling EJBs directlyis that theyare slow compared to using an AccessBean which in-turn calls the EJB...you may want to try it... -Original Message-From: Nortje, Andrew [mailto:[EMAIL PROTECTED]]Sent: 13 March 2002 14:19To: '[EMAIL

RE: Performance problems

2002-03-08 Thread Colin Saxton
I have had these problems with SOAP2.2...I think that it is to do with the way the message is parsed in memory...To get round the problem we moved to using Axis which has all of the functionality that we are using in the Alpha version. -Original Message- From: Juan Gargiulo

RE: Soap client threads

2002-03-06 Thread Colin Saxton
Title: Soap client threads Each client thread should create a new instance of the client side SOAPobject...you should have no problems here... (Make sure that you are not using the same SOAP object across threads...that would cause synchronization problems). Java does allow you to have

RE: porting from socket to SOAP

2002-03-01 Thread Colin Saxton
I think you can setup HTTPS with minimal problems using java (jdk1.4 has direct support for https) but I would encourage you to think stateless with your design...once you open a connection to the server you are taking up a valuable resource...if you make it persistant then it is no longer a

RE: porting from socket to SOAP

2002-02-28 Thread Colin Saxton
Most implementations of SOAP use HTTP which means the connection is closed after each client request (or possibly closed). This means that any data sent from the server must first come from a client request. It also depends on the nodes that are communicating. To implement effecient

RE: porting from socket to SOAP

2002-02-28 Thread Colin Saxton
With comments like this "This means that any data sent from the server must first come from a client request." (SEEBELOW) you would think that it was Monday morning!! (doh...)my apologies but you get what I mean...(I hope!!) -Original Message-From: Colin Saxton

DOM or SAX??

2001-12-10 Thread Colin Saxton
I have had a quick look at the open-source code and have found that it relys mainly on the DOM for the SOAP request and SOAP response... Is there any plans to write an all singing SAX version of the libraries? DOM works fine for small SOAP messages but once you get above 50k you will start to

Carriage returns

2001-06-13 Thread Colin Saxton
Title: RE: compatibility with weblogic 6.1 beta One problem I have noticed with Apache SOAP is that it translates CRLF to just LF when receiving Strings from a Client!! Is this correct?...it does no happen with MS SOAP..it leaves them well alone... You will need to code for this if you

RE: Exception! java2wsdl tool

2001-06-13 Thread Colin Saxton
It probably cannot see the class you are trying to generate the WSDL against. With most object to wsdl converters you need to put the package name in before the Class name so that it can resolve the class...so... MyClass.class would be mypackage.another.MyClass If you are also asked for a

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

RE: Advantage of SOAP against RMI ???

2001-06-05 Thread Colin Saxton
side) does put a hefty baggage on the concept of one client using several web services. Don't get me wrong, I think SOAP is a great idea. Just make sure you get as many stuff done for one single invocation and have a very patient target audience. From: Colin Saxton [EMAIL PROTECTED] Reply