Re: Newbie Q: SOAP in the real world

2004-11-09 Thread Jesus M. Salvo Jr.
Scott Nichol wrote: Also, lots of service providers, ISVs and industry consortiums have defined SOAP APIs. There was just a question from someone using MM7, as an example, and OASIS (http://www.oasis-open.org) has standards many companies in my area (Philadelphia, PA) are using. Scott Nichol

Re: Timeout on SSL sockets

2003-09-02 Thread Jesus M. Salvo Jr.
missions. ** -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame International Pty Ltd) M: +61 409 126699 T: +61 2 94604777 F: +61 2 94603677 PGP Public key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xC0BA5348

Updates to SOAP 1.1 schema and encoding

2003-03-16 Thread Jesus M. Salvo Jr.
://lists.w3.org/Archives/Public/xml-dist-app/2003Feb/0118.html Regards, -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame International Pty Ltd) M: +61 409 126699 T: +61 2 94604777 F: +61 2 94603677 PGP Public key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xC0BA5348

Re: Apache SOAP broken after changing a jar in WEB-INF/lib to a symboliclink

2003-02-20 Thread Jesus M. Salvo Jr.
Ignore ... stupid me... Jesus M. Salvo Jr. wrote: On iPlanet ( SunOne ) 6.0 WebServer SP4 / Solaris 8, I have Apache-SOAP running fine for the past few months. My SOAP services are deployed in a JAR file that I place in /usr/iplanet/servers/https-myserver/webapps/soap/WEB-INF/lib Just out

Apache SOAP broken after changing a jar in WEB-INF/lib to a symboliclink

2003-02-20 Thread Jesus M. Salvo Jr.
On iPlanet ( SunOne ) 6.0 WebServer SP4 / Solaris 8, I have Apache-SOAP running fine for the past few months. My SOAP services are deployed in a JAR file that I place in /usr/iplanet/servers/https-myserver/webapps/soap/WEB-INF/lib Just out of curiosity, while Apache SOAP was running but no SOAP

Re: Tomcat 4.1.18, JDK 1.4.1, & Soap

2003-02-19 Thread Jesus M. Salvo Jr.
J M Craig/Alpha-G wrote: Hi Folks, snip... At any rate, I've put the soap.war file into the webapps directory and modifed the Tomcat server.xml file to point to it If you deployed / put the soap.war file under the webapps directory, then there should no need to modify server.xml. To

Re: Should I use a nightly build in production

2003-02-18 Thread Jesus M. Salvo Jr.
I mean ... after all HTTPUtils.post() already sends out the Header field ... which is one of the major requirements in HTTP 1.1. So doesn't this simply mean changing the value of HttpUtils.HTTP_VERSION from "1.0" to "1.1"? Jesus M. Salvo Jr. wrote: Why does Apa

Re: Should I use a nightly build in production

2003-02-18 Thread Jesus M. Salvo Jr.
Why does Apache SOAP use HTTP/1.0 and not HTTP/1.1? Although SOAP 1.1 did not indicate directly that HTTP/1.1 must be supported, it sort of indirectly did by the examples and the HTTP specification in the reference: http://www.w3.org/TR/SOAP/#_Toc478383526 http://www.w3.org/TR/SOAP/#_Toc4783835

Bug in SOAPContext?

2003-02-18 Thread Jesus M. Salvo Jr.
Apache SOAP 2.3.1 There seems to be some minor bug in SOAPContext: 1) Create an instance of SOAPContext. --- internal parts is set to null 2) Call setRootPart( MimeBodyPart ) --- rootPartSet was false .. now true. 3) Call setRootPart( MimeBodyPart ) again --- rootPartSet now true, therefore tr

Deployment question

2003-02-16 Thread Jesus M. Salvo Jr.
Within a deployment descriptor, why is that you can only have one "provider" node under the same id? What can I do if I want different classes to service different methods under the same id, like this: http://xml.apache.org/xml-soap/deployment"; id="urn:myid" type="message">

Re: Passing initliasation parameters to SOAP services

2003-02-06 Thread Jesus M. Salvo Jr.
method is called. Therefore, you could just instantiate the listener in the configure method instead of the constructor, and use an application or servlet or deployment descriptor parameter rather than a System property. On 6 Feb 2003 at 10:43, Jesus M. Salvo Jr. wrote: Just realised that it

Re: Passing initliasation parameters to SOAP services

2003-02-05 Thread Jesus M. Salvo Jr.
.cgi/*checkout*/xml- soap/java/docs/schema/dd.xsd?rev=HEAD&content-type=text/plain On 3 Feb 2003 at 11:26, Jesus M. Salvo Jr. wrote:

JDK 1.3.0

2003-02-04 Thread Jesus M. Salvo Jr.
Is anyone aware of any problem using Apache SOAP with JDK 1.3.0 instead of JDK 1.3.1? SunOne WebServer 6 does not seem to support 1.3.1 ... only specific build of 1.2.2, 1.3.0 and 1.4.x -- To unsubscribe, e-mail: For additional commands, e-mail:

Re: Debugging SOAP called over SSL

2003-02-03 Thread Jesus M. Salvo Jr.
d the Java that was running when posting to us was not the Java installation where they imported our certificates. Jesus M. Salvo Jr. wrote: Robert Dietrick wrote: With TcpTunnel you'll be able to see whether or not there is communication between the client & server, but you won't

Re: Debugging SOAP called over SSL

2003-02-03 Thread Jesus M. Salvo Jr.
Robert Dietrick wrote: With TcpTunnel you'll be able to see whether or not there is communication between the client & server, but you won't be able to decipher the contents of it unless you have an innate ability to do decryption, in which case you should get yourself a job at the NSA. Now c

Re: Passing initliasation parameters to SOAP services

2003-02-02 Thread Jesus M. Salvo Jr.
Scott Nichol wrote: 2a) Although the parameters can be localised to either SOAP RPC or SOAP messaging servlets ( since there are two servlets deployed with soap.war ), any initialisation parameters to the SOAP messaging servlet are "global" for all SOAP messaging services ... likewise true

Unit testing

2003-01-30 Thread Jesus M. Salvo Jr.
Currently, I use Cactus to unit test servetsl and JSPs. What's the recommended approach for unit testing SOAP services ... given that Apache-SOAP is another framework on top of servlets? -- To unsubscribe, e-mail: For additional commands, e-mail:

Content-Type and other MIME headers

2003-01-30 Thread Jesus M. Salvo Jr.
I have been trying to find a way to store away the MimeBodyPart that is being sent by the Apache-SOAP client to the SOAP service, and comparing it with what I see is being sent on the wire via sniffer. Here are some interesting results: 1) When sending a multipart, SOAPContext.writeTo() does _

Re: zipping Soap

2003-01-30 Thread Jesus M. Salvo Jr.
lto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> Scott Nichol -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- Jesus M. Salvo Jr. Mobile Internet Group Pt

Sending a pre-existing MimeMultipart ....

2003-01-29 Thread Jesus M. Salvo Jr.
Assuming that one already has a SOAP message that is a: 1) MIME multipart 2) Serialized to disk or database 3) The envelope in the MIME multipart is compliant to the SOAP specification ... ( it was, after all, serialised using the Apache-SOAP API using one of the writeTo() methods of either SOA

Re: Installation on iPlanet Web Server 6.0 SP3

2003-01-27 Thread Jesus M. Salvo Jr.
onfig/jvm12.conf, then restart iWS. Jesus M. Salvo Jr. wrote: I checked all that I can find there are only 2 places that Apache-SOAP is loaded: 1) exploded soap.war -- This was the case before I added soap.jar into the server's classpath. 2) soap.jar What is interesting is tha

Re: Installation on iPlanet Web Server 6.0 SP3

2003-01-27 Thread Jesus M. Salvo Jr.
pache SOAP classes, namely the directory with the exploded war. On 24 Jan 2003 at 12:07, Jesus M. Salvo Jr. wrote: Anyone installed Apache SOAP 2.3.1 on IPlanet Webserver ( IWS )6.0 SP3? I currently have Apache SOAP 2.3.1 installed and working okay including my SOAP services on Tomcat 4.1.8., b

Installation on iPlanet Web Server 6.0 SP3

2003-01-23 Thread Jesus M. Salvo Jr.
Anyone installed Apache SOAP 2.3.1 on IPlanet Webserver ( IWS )6.0 SP3? I currently have Apache SOAP 2.3.1 installed and working okay including my SOAP services on Tomcat 4.1.8., but I would also like to use it with iPlanet Webserver 6.0 ( includes support for Servlet 2.2 and JSP 1.1 ).. The in

Re: Passing initliasation parameters to SOAP services

2003-01-21 Thread Jesus M. Salvo Jr.
Scott Nichol wrote: If you are using Apache SOAP 2.3.1 or 2.2, you can use the method described in http://xml.apache.org/soap/docs/guide/migration.html. Specifically, you add a parameter of type SOAPContext as the first parameter in your method. You then use SOAPContext's "bag" to get the

Re: start parameter of mutlipart/related ... addr-spec syntax inRFC 822

2003-01-20 Thread Jesus M. Salvo Jr.
Scott Nichol wrote: Thanks for the info. I see that this value is created in MimeUtils.getUniqueValue. I will look into changing it. I guess just needed to make sure that the change made does not affect other parts of a MIME message whose syntax does NOT require ( or does NOT allow the @ c

Passing initliasation parameters to SOAP services

2003-01-20 Thread Jesus M. Salvo Jr.
way to add initialisation parameters for SOAP services? -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame International Pty Ltd) M: +61 409 126699 T: +61 2 94604777 F: +61 2 94603677 PGP Public key: http://pgp.mit.edu:11371/pks/lookup?op=get&search=0xC0BA5348 -- To

Re: start parameter of mutlipart/related ... addr-spec syntax inRFC 822

2003-01-20 Thread Jesus M. Salvo Jr.
meter conform the syntax mentioned above. I am just wondering what the effects are of not following the syntax to a non-Apache-SOAP service that receives mutlipart messages from an Apache-SOAP client. Perhaps someone has questioned Sun on this point before...you might want to check their site. On

start parameter of mutlipart/related ... addr-spec syntax in RFC822

2003-01-19 Thread Jesus M. Salvo Jr.
RFC 2387 ( Section 3.4 ) says that the start parameter of a multipart/related is msg-id based on RFC 822 RFC 822 on the other hand says that msg-id's syntax is based on addr-spec: Section 4.1: msg-id = "<" addr-spec ">" ; Unique message id Section 6: addr-spec = local-part "@" domain ; global

Retreiving SOAP namespace prefix

2003-01-19 Thread Jesus M. Salvo Jr.
I would like to use the SOAP namespace prefix in the enveloper header ... but there does not seem to be a way to retrieve the namespace prefix that Apache-SOAP uses, apart from hardcoding "SOAP-ENV" within my code, like this: someElement.setAttributeNS( "SOAP-ENV", "someAttributeInSoapNamespac

Re: Bug? Root element of a SOAP message must be: 'http://schemas.xmlsoap.org/soap/envelope/:Envelope'.

2003-01-15 Thread Jesus M. Salvo Jr.
Just to pre-empt some replies: On the client side: I am using JAXP with Xerces 2.2.1, with Xerces 2.2.1 on front of the CLASSPATH Jesus M. Salvo Jr. wrote: Apache-SOAP ( as a client ) is throwing the following exception when receiving the SOAP response ( also generated by Apache-SOAP

Bug? Root element of a SOAP message must be: 'http://schemas.xmlsoap.org/soap/envelope/:Envelope'.

2003-01-15 Thread Jesus M. Salvo Jr.
3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-0";> 5.4.0 -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame International Pty Ltd) M: +61 409 126699 T: +61 2 94604777 F: +61 2 94603677 PGP Public key: http://pgp.mit.edu:11371/pks/lookup?op=

Re: service "XYZ" uinknown and other questions

2003-01-15 Thread Jesus M. Salvo Jr.
type="message"> org.apache.soap.server.DOMFaultListener Question is ... why does Apache-SOAP uses the xmlns to match the id of the service? Jesus M. Salvo Jr. wrote: Using Tomcat 4.1 + Soap 2.3.1 I know this is in the FAQ ... but I am still confused. You w

service "XYZ" uinknown and other questions

2003-01-15 Thread Jesus M. Salvo Jr.
Using Tomcat 4.1 + Soap 2.3.1 I know this is in the FAQ ... but I am still confused. You will see from below that SOAP server is complaining that the service "xyz" is unknown but "xyz" is an XML namespace!! * Why would it think that the namespace in the SOAP message that I sent is the serv

Handling faults on the client side ( and Root element of a SOAP messagemust be: 'http://schemas.xmlsoap.org/soap/envelope/:Envelope'. )

2003-01-15 Thread Jesus M. Salvo Jr.
a";> SOAP-ENV:Server service 'http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1-0&apos; unknown /soap/servlet/messagerouter -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame International Pty Ltd) M: +61 409 126699 T: +6

Tomcat 3.2 / Tomcat 4.1

2003-01-14 Thread Jesus M. Salvo Jr.
The documentation for Apache-SOAP for installing on Tomcat assumes Tomcat 3.2. Does Apache-SOAP works with Tomcat 4.1? Any gotchas? -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame International Pty Ltd) M: +61 409 126699 T: +61 2 94604777 F: +61 2 94603677 PGP Public key

SOAP attachments and ContentIDs in body

2003-01-09 Thread Jesus M. Salvo Jr.
ding: 8bit Content-ID: <4985091.1042172968100.apache-soap.johnp4> Content-Length: 1093 http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xmlns:xsd ="http://www.w3.org/2001/XMLSchema";> . snip -- Jesus M. Salvo

OT: Schema validation

2003-01-09 Thread Jesus M. Salvo Jr.
Since Apache SOAP uses JAXP ... and there does not seem to be a way in either JAXP or Xerces 2 to have DTD validation OFF but have Schema validation ON, ... what do you guys do with schema validation of SOAP envelopes? -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame

Formatting the SOAP XML envelope?

2003-01-07 Thread Jesus M. Salvo Jr.
nt TestPass er2sdf Informational 2003-01-08T15:21:30+10:00 2003-01-08T15:21:30+10:00 2003-01-08T15:21:30+10:00 false Normal false cid:1230"/> -- Jesus M. Salvo Jr. Mobile Internet Group Pty Ltd (formerly Softgame International Pty Ltd) M: +