Re: Does SOAP support attachments with JDK1.3

2005-02-18 Thread Scott Nichol
Apache SOAP can send and receive MIME attachments, so it could be used to upload a zip file if the service supports MIME attachments. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message

Re: How run application after start

2005-02-16 Thread Scott Nichol
I assume you are talking about having your service classes loaded and initialized in some way. The answer is no, there is no way to make this happen with Apache SOAP. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail

Re: Exception from service object: org.apache.xerces.framework.XMLParser

2005-01-24 Thread Martin Gainty
Good Morning Jiang: 2 things I would check:I would first verify the package name com.ibm.tct.api.exception.ServerException (it appears that com specification is om for some reason..perhaps you have a folder named om instead of com?)Going back to CS101I would not declare methods private.

Re: Exception from service object: org.apache.xerces.framework.XMLParser

2005-01-24 Thread Scott Nichol
I do not think I can be of much help, but I have a comment. The code you show has the very unfortunate side-effect of destroying the exact information you need to explore this problem. I specifically mean the exception handling. When the code catches an exception and does throw new

Re: problem in a web service

2005-01-17 Thread Martin Gainty
Francesco:Can we see the source code for xml_parsAlso please provide the wsdl you are usingMolte Grazie,Martin- 001-617-852-7822 - Original Message - From: Francesco Dipalo To: [EMAIL PROTECTED] Sent: Monday, January 17, 2005 6:18 AM Subject: problem in a web

Re: problem in a web service

2005-01-17 Thread Francesco Dipalo
I use only a deployment descriptor file TIA - Original Message - From: Martin Gainty To: [EMAIL PROTECTED] Sent: Monday, January 17, 2005 3:15 PM Subject: Re: problem in a web service Francesco:Can we see the source code for xml_parsAlso please provide

Re: problem in a web service

2005-01-17 Thread Martin Gainty
Dont mean to sound like a broken record butwhat is happening in xml_pars? Martin - Original Message - From: Francesco Dipalo To: [EMAIL PROTECTED] Sent: Monday, January 17, 2005 2:11 PM Subject: Re: problem in a web service I use only a deployment

RE: ServiceManagerClient classpath issues

2005-01-13 Thread David Vick
(after I thought about it, I may not have done that in the 2 gazillion tries the other day). Thanks again!! Dave -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 4:18 PM To: [EMAIL PROTECTED] Subject: Re: ServiceManagerClient classpath

Re: Axis or SOAP...

2005-01-13 Thread Scott Nichol
You should use Axis. It continues to evolve to support new and updated standards. Notably, it supports WSDL 1.1 and JAX-RPC, the latter implying that you could use Axis now and decide to switch to another implementation in the future if necessary. Apache SOAP supports SOAP 1.1 and SOAP with

Re: ServiceManagerClient classpath issues

2005-01-12 Thread Scott Nichol
You need something like set CLASSPATH=.;C:\apacheSoap\soap2_3_1\lib\soap.jar Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: David Vick [EMAIL PROTECTED] To: [EMAIL

RE: ServiceManagerClient classpath issues

2005-01-12 Thread David Vick
- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 3:56 PM To: [EMAIL PROTECTED] Subject: Re: ServiceManagerClient classpath issues You need something like set CLASSPATH=.;C:\apacheSoap\soap2_3_1\lib\soap.jar Scott Nichol Do not send e-mail directly to this e-mail

Re: ServiceManagerClient classpath issues

2005-01-12 Thread Martin Gainty
. ..this is a re-affirmation of Scotts suggestion) Martin- - Original Message - From: David Vick [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 3:56 PM Subject: RE: ServiceManagerClient classpath issues I'm pretty sure I tried that, but I'll give it a shot when I get

RE: ServiceManagerClient classpath issues

2005-01-12 Thread David Vick
- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 4:18 PM To: [EMAIL PROTECTED] Subject: Re: ServiceManagerClient classpath issues Dave- Most ANT build.xml and most java compilers dont understand longwinded NTFS folder names e.g. C:\Program Files which is why any

RE: Multiple URNs in a single server application

2005-01-11 Thread Fuentes, Noel
Where do you put the deployment descriptors? I've tried putting it in each of my servlet context but it does not get deployed when I bounce my server. Thanks, Noel -Original Message- From: Malte Kempff [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 1:25 AM To: [EMAIL

RE: Multiple URNs in a single server application

2005-01-11 Thread Fuentes, Noel
server? Malte -Ursprungliche Nachricht- Von: Fuentes, Noel [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 11. Januar 2005 17:23 An: [EMAIL PROTECTED] Betreff: RE: Multiple URNs in a single server application Where do you put the deployment descriptors? I've tried putting it in each of my

RE: Multiple URNs in a single server application

2005-01-11 Thread Fuentes, Noel
] Betreff: RE: Multiple URNs in a single server application I mean restarting my server and I expect my SOAP service to be registered if I include my deployment descriptors in my web app rather than running a script outside of my server. Thanks, Noel -Original Message- From: Malte Kempff

Re: Multiple URNs in a single server application

2005-01-11 Thread Martin Gainty
PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 11:23 AM Subject: RE: Multiple URNs in a single server application Where do you put the deployment descriptors? I've tried putting it in each of my servlet context but it does not get deployed when I bounce my server. Thanks, Noel

Re: Transmission parameters into application

2005-01-10 Thread Scott Nichol
Building from the current source tree (e.g. a nightly build at http://cvs.apache.org/dist/soap/nightly/2004-06-22/) gives you a nice way to access configuration parameters when your service class is instantiated. The configure sample code

Re: Transmission parameters into application

2005-01-09 Thread Martin Gainty
Jaroslav Here is an example of SOAP Request/Response passing an Integer http://www.soapuser.com/basics3.html A bit trickier with complex datatypes but the idea is the same Martin- - Original Message - From: Jaroslav Srytr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, January 07,

Re: Document-literal complex type question

2004-12-28 Thread Scott Nichol
I suggest you give Axis (http://ws.apache.org/axis/) a spin. It is a more complete SOAP implementation than Apache SOAP (supports more standards) and almost certainly handles WSDL with imports. Sun's JAX-RPC reference implementation probably would handle this WSDL as well. Scott Nichol Do

Re: timeout troubles

2004-12-20 Thread Martin Gainty
Bonjour Julien! I would tracert to the IP address that HTTPConnection is trying to connect to (to make sure you have a clear route) Also.. do a netstat -a to see if that Port number is already being used Bon chance, Martin- Etats Unis 001-617-852-7822 - Original Message - From: Julien

Re: timeout troubles

2004-12-20 Thread Scott Nichol
The Java sockets classes did not provide any way to timeout the connect until JDK 1.4. Prior to that, only I/O after the connection was made was subject to timeout. The 2.3.1 release of SOAP does not support this new feature of JDK 1.4. However, the current code base does. If you download

Re: timeout troubles

2004-12-20 Thread Julien ALLANOS
Selon Scott Nichol [EMAIL PROTECTED]: The Java sockets classes did not provide any way to timeout the connect until JDK 1.4. Prior to that, only I/O after the connection was made was subject to timeout. The 2.3.1 release of SOAP does not support this new feature of JDK 1.4. However, the

Re: timeout troubles

2004-12-20 Thread Scott Nichol
mail lists. - Original Message - From: Julien ALLANOS [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 20, 2004 11:21 AM Subject: Re: timeout troubles Selon Scott Nichol [EMAIL PROTECTED]: The Java sockets classes did not provide any way to timeout the connect until JDK 1.4

Re: testing http://localhost/axis/EchoHeaders.jws?method=list gives a soapenv:Server.userException (java.lang.NullPointerException)

2004-12-15 Thread Scott Nichol
Please post Axis questions to [EMAIL PROTECTED] Thanks. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: Stig Rasmussen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: tomcat connection pooling

2004-12-13 Thread Martin Gainty
Hello Jonathan 1)I have to ask the dumb question What kind of bean would handle the DB Connection Pooling ??? 2)Can we expect any performance degradations since we have the added facade layer to get to the DB Pool? Many Thanks, Martin- (cell) 617-852-7822 Hi Martin, This shouldnt be any

RE: tomcat connection pooling

2004-12-13 Thread THOMAS, JAI [AG-Contractor/1000]
Martin, Connection pool is an enterprise app resource. As long as the service is part of the app, it should be able to make use of that. Jai -Original Message- From: Martin Vossler [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 9:01 AM To: [EMAIL PROTECTED] Subject: tomcat

RE: tomcat connection pooling

2004-12-13 Thread Martin Gainty
) 617-852-7822 (e) [EMAIL PROTECTED] (http)www.laconiadatasystems.com From: THOMAS, JAI [AG-Contractor/1000] [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: RE: tomcat connection pooling Date: Mon, 13 Dec 2004 10:24:09 -0600 MIME-Version: 1.0 Received

RE: tomcat connection pooling

2004-12-13 Thread THOMAS, JAI [AG-Contractor/1000]
for that matter). Jai -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 1:03 PM To: [EMAIL PROTECTED] Subject: RE: tomcat connection pooling Thomas Let me rephrase the question to make myself clearer What Im looking for is Is the Database

RE: tomcat connection pooling

2004-12-13 Thread Martin Gainty
]' [EMAIL PROTECTED] Subject: RE: tomcat connection pooling Date: Mon, 13 Dec 2004 14:13:47 -0600 MIME-Version: 1.0 Received: from mail.apache.org ([209.237.227.199]) by mc4-f40.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Mon, 13 Dec 2004 12:14:35 -0800 Received: (qmail 59518 invoked by uid 500

Re: tomcat connection pooling

2004-12-13 Thread Scott Nichol
The answer is yes. Tomcat implements the JNDI DataSource interface, as well as the JNDI InitialContext interface required to use this. The JNDI Resources HOW-TO (http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jndi-resources-howto.html) describes generally how to configure initialization

Re: tomcat connection pooling

2004-12-13 Thread Jonathan Roberts
Thanks Martin, I thought you were talking about pure tomcat jakarta, personally I'd run websphere/weblogic or jboss if there was a requirement for ejbs. Thanks for the link however, good reading. Re : Session and entity beans, this wholy depends on usage. However I was merely answin your

Re: tomcat connection pooling

2004-12-13 Thread Jonathan Roberts
Hi Martin, This shouldnt be any different from usual usage. You should implement pooling in the same may in your biz objkects/beans. soap should juts be used to access the interface stubs of the server side interfacee.g client interface --- server interface- facade-- java bean

RE: tomcat connection pooling

2004-12-13 Thread THOMAS, JAI [AG-Contractor/1000]
Martin, That is a true comparison of session vs entity, but I thought your question was how to levearge connection pooling to axis web services. Jai -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: Monday, December 13, 2004 2:51 PM To: [EMAIL PROTECTED] Subject: RE

RE: tomcat connection pooling

2004-12-13 Thread Jonathan Roberts
vs entity, but I thought your questionwas how to levearge connection pooling to axis web services.Jai-Original Message-From: Martin Gainty [mailto:[EMAIL PROTECTED]Sent: Monday, December 13, 2004 2:51 PMTo: [EMAIL PROTECTED]Subject: RE: tomcat connection poolingThe short answer is yes it d

Re: tomcat connection pooling

2004-12-13 Thread Martin Gainty
to implementing EJBsGive a shout if you need any help,Martin- - Original Message - From: Jonathan Roberts To: [EMAIL PROTECTED] Sent: Monday, December 13, 2004 10:37 PM Subject: RE: tomcat connection pooling Equally, unless I'm behind on the apache/tomcat specs, EJBs

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-10 Thread Scott Nichol
Any JAX-RPC compliant implementation will interop with .NET. I highly recommend Axis: http://ws.apache.org/axis/. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: ab ab

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread Martin Gainty
Tom- With DOM you can create 1 of 3 clients HTTP Get HTTP Post or using Microsoft's XML MSXML DOM Document parser (ActiveXObject(Msxml2.DOMDocument) ;) for examples check out http://www.codeproject.com/webservices/aspwebsvr.asp HTH, Martin- - Original Message - From: ab ab [EMAIL

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread ab ab
Thanks Martin but i'm really looking for an open-source Java SOAP client toolkit (handling SOAP faults etc..) instead of creating a SOAP message request using dom4j which is very simple to implement ... Tom --- Martin Gainty [EMAIL PROTECTED] wrote: Tom- With DOM you can create 1 of 3 clients

RE: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread Martin Gainty
Tom- For Java Client consuming a .NET WebService Take a look at Johan Danforth's page at http://weblogs.asp.net/jdanforth/archive/2003/11/17/38006.aspx HTH, Martin Gainty (cell) 617-852-7822 (e) [EMAIL PROTECTED] (http)www.laconiadatasystems.com From: ab ab [EMAIL PROTECTED] Reply-To: [EMAIL

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread Martin Gainty
Form Java Client consuming .NET Web Service example check out Johan Danforth's page at http://weblogs.asp.net/jdanforth/archive/2003/11/17/38006.aspx HTH Martin- - Original Message - From: ab ab [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 09, 2004 1:37 PM Subject:

Re: Tomcat path

2004-11-24 Thread Martin Gainty
Glad that works for you Molte Grazie!!! Martin Gainty From: Francesco Dipalo [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Tomcat path Date: Tue, 23 Nov 2004 18:10:05 +0100 MIME-Version: 1.0 Received: from mail.apache.org ([209.237.227.199]) by mc3-f35

Re: Tomcat path

2004-11-23 Thread Martin Gainty
Francesco: You may also want to try setting TOMCAT_HOME and CATALINA_HOME environment variable to TOMCAT installation folder Molte Grazie e Ciao, Martin Gainty From: Francesco Dipalo [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: Tomcat path Date: Mon, 22 Nov

Re: Tomcat path

2004-11-23 Thread Francesco Dipalo
PROTECTED] Sent: Tuesday, November 23, 2004 2:12 PM Subject: Re: Tomcat path Francesco: You may also want to try setting TOMCAT_HOME and CATALINA_HOME environment variable to TOMCAT installation folder Molte Grazie e Ciao, Martin Gainty From: Francesco Dipalo [EMAIL PROTECTED] Reply-To: [EMAIL

RE: Tomcat path

2004-11-22 Thread Tommy Kalafut
Look at the java command line option -D H:\java -help Usage: java [-options] class [args...] (to execute a class) or java [-options] -jar jarfile [args...] (to execute a jar file) where options include: -client to select the client VM -server to select the server VM

Re: Tomcat path

2004-11-22 Thread Scott Nichol
Can you be more specific? Which java command are you talking about? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: Francesco Dipalo [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: Tomcat path

2004-11-22 Thread Francesco Dipalo
I need to insert this thing in a java code TIA - Original Message - From: Tommy Kalafut To: [EMAIL PROTECTED] Sent: Monday, November 22, 2004 4:46 PM Subject: RE: Tomcat path Look at the java command line option -D H:\java -help Usage: java

Re: Tomcat path

2004-11-22 Thread Felipe Furtado Palma Dias
System.getProperty("catalina.home") - Original Message - From: Francesco Dipalo To: [EMAIL PROTECTED] Sent: Monday, November 22, 2004 1:21 PM Subject: Re: Tomcat path I need to insert this thing in a java code TIA - Origin

Re: Tomcat path

2004-11-22 Thread Francesco Dipalo
: Monday, November 22, 2004 5:04 PM Subject: Re: Tomcat path Can you be more specific? Which java command are you talking about? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From

Re: Tomcat path

2004-11-22 Thread Felipe Furtado Palma Dias
D] Sent: Monday, November 22, 2004 2:34 PM Subject: Re: Tomcat path System.getProperty("catalina.home") - Original Message - From: Francesco Dipalo To: [EMAIL PROTECTED] Sent: Monday, November 22, 2004 1:21 PM Subject: Re: Tomcat

Re: Tomcat path

2004-11-22 Thread Daniel Zhang
Message - From: Scott Nichol [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 22, 2004 5:04 PM Subject: Re: Tomcat path Can you be more specific? Which java command are you talking about? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered

Re: Tomcat path

2004-11-22 Thread Francesco Dipalo
returns null TIA - Original Message - From: Felipe Furtado Palma Dias To: [EMAIL PROTECTED] Sent: Monday, November 22, 2004 6:34 PM Subject: Re: Tomcat path System.getProperty("catalina.home") - Original Message - From:

Re: Tomcat path

2004-11-22 Thread Felipe Furtado Palma Dias
PROTECTED] Sent: Monday, November 22, 2004 2:09 PM Subject: Re: Tomcat path returns null TIA - Original Message - From: Felipe Furtado Palma Dias To: [EMAIL PROTECTED] Sent: Monday, November 22, 2004 6:34 PM Subject: Re: T

Re: Tomcat path

2004-11-22 Thread James Williamson
- Original Message - *From:* Francesco Dipalo mailto:[EMAIL PROTECTED] *To:* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] *Sent:* Monday, November 22, 2004 2:09 PM *Subject:* Re: Tomcat path returns null TIA - Original Message - *From:* Felipe Furtado

Re: Tomcat path

2004-11-22 Thread Francesco Dipalo
thanks a lot TIA - Original Message - From: Felipe Furtado Palma Dias To: [EMAIL PROTECTED] Sent: Monday, November 22, 2004 7:11 PM Subject: Re: Tomcat path I know, try Start Java this way:CATALINA_HOME= c:\somedir\subdir\filejava -Dcatalina.home

Re: Adding a deserializer for a new type

2004-11-18 Thread Scott Nichol
In this specific case, use the xsd:hexBinary type, and Apache SOAP can deserialize it automatically. paramname xsi:type=xsd:hexBinary000102/paramname However, I must point out that your SOAP payload below has a return value and output parameters. Apache SOAP does not handle output

Re: Adding a deserializer for a new type

2004-11-18 Thread Scott Nichol
. - Original Message - From: Scott Nichol [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, November 18, 2004 10:50 AM Subject: Re: Adding a deserializer for a new type In this specific case, use the xsd:hexBinary type, and Apache SOAP can deserialize it automatically. paramname

Re: Unsuscribe

2004-11-15 Thread Scott Nichol
It's actually hidden away in the headers of the email: [EMAIL PROTECTED] Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: Blanchard, Raphael [EMAIL PROTECTED] To: [EMAIL

Re: Compressing SOAP requests

2004-11-15 Thread Nige White
Scott Nichol wrote: FYI, deflate follows Zlib as described in RFC 1950 (http://www.ietf.org/rfc/rfc1950.txt?number=1950). The Zlib DEFLATE method of compression is described in RFC 1951, while gzip is described in RFC 1952 (http://www.ietf.org/rfc/rfc1952.txt?number=1952). RFC 1952 looks like

Re: Compressing SOAP requests

2004-11-15 Thread Scott Nichol
] To: [EMAIL PROTECTED] Sent: Monday, November 15, 2004 1:22 PM Subject: Re: Compressing SOAP requests Scott Nichol wrote: FYI, deflate follows Zlib as described in RFC 1950 (http://www.ietf.org/rfc/rfc1950.txt?number=1950). The Zlib DEFLATE method of compression is described in RFC 1951

Re: Where to find all dependencies to build soap.jar

2004-11-15 Thread Scott Nichol
The most obscure dependencies can be found at http://archive.apache.org/dist/ws/soap/version-2.2/. For all others, I use class files from Tomcat and JBoss. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists.

Re: special characters (SOLVED)

2004-11-14 Thread tizo
I could fix it, changing the default parser that I had in the client, with Xerces. -- Mensaje original -- Reply-To: [EMAIL PROTECTED] Date: Fri, 12 Nov 2004 23:15:42 -0300 From: [EMAIL PROTECTED] Subject: special characters To: [EMAIL PROTECTED] Hi, I have a problem with Strings returned by

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
Standard Zlib is equivalent to HTTP Content-Encoding header value 'deflate'. This differs from 'gzip', in that gzip includes some extra bytes (a header and checksum) in the compressed data. Apache SOAP does not support deflate right now. My experience working with PHP Zlib is that many

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
: Friday, November 12, 2004 11:44 AM Subject: Re: Compressing SOAP requests Standard Zlib is equivalent to HTTP Content-Encoding header value 'deflate'. This differs from 'gzip', in that gzip includes some extra bytes (a header and checksum) in the compressed data. Apache SOAP does not support

Re: Compressing SOAP requests

2004-11-12 Thread Nige White
Scott Nichol wrote: The magic header is 8 bytes: \x1f\x8b\x08\x00\x00\x00\x00\x00. Interesting. I've read elsewhere that the header is 10 bytes, but... I've tried writing those 8 bytes followed by the zlib-deflated data, followed by 32 bits of zero. Now, where gunzip -t used to say invalid

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
PROTECTED] Sent: Friday, November 12, 2004 12:48 PM Subject: Re: Compressing SOAP requests Scott Nichol wrote: The magic header is 8 bytes: \x1f\x8b\x08\x00\x00\x00\x00\x00. Interesting. I've read elsewhere that the header is 10 bytes, but... I've tried writing those 8 bytes followed

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
, November 12, 2004 1:08 PM Subject: Re: Compressing SOAP requests Try it without any CRC: I think gzip may be willing to decompress it, anyway. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original

Re: Compressing SOAP requests and using SSL

2004-11-11 Thread Nige White
Scott Nichol wrote: The nightly build can gzip and will un-gzip a gzipped response. The most recent one was posted 6/22/2004 at http://cvs.apache.org/dist/soap/nightly/2004-06-22/. To use SSL from the client, your only code change is to use the new endpoint URL (with https). However, as has

Re: please, help with no deserializer found ... message

2004-11-10 Thread Nige White
Hi all, first time poster, been lurking for a while. We develop a freight forwarding application in the proprietary Synergy DBL language which is a rather primitive procedural language with its roots in the 1970s! It's been updated to include TCP/IP routines, HTTP handling routnies, and a

RE: Compressing SOAP requests and using SSL

2004-11-10 Thread Hubble, Christopher
If you search the Tomcat and Axis archives you'll see threads on both compressing your requests and using SSL. Chris -Original Message- From: Nige White [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 8:27 AM To: [EMAIL PROTECTED] Subject: Compressing SOAP requests and using

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
OK, looking at the soucre code, it looks like I should extend SOAPHTTPConnection, and override send() using an extended version of HTTPUtils in which I implement postCompressed(). I already extend SOAPHTTPConnection so that I can share a SOAPHTTPConnection between several generated client

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Daniel Zhang
Yes you can use SSL but it is a different story. You have to configure SSL for both Client and Server side, install the CA certificate, configure the keystore etc. For example, look at Tomcat SSL how-to at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html. Daniel Z Nige White

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
Daniel Zhang wrote: Yes you can use SSL but it is a different story. You have to configure SSL for both Client and Server side, install the CA certificate, configure the keystore etc. For example, look at Tomcat SSL how-to at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html.

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Srikanth . Swaminathan
/ ... /isd:provider good luck hope it helps Malte -Ursprungliche Nachricht- Von: Nige White [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 10. November 2004 16:22 An: [EMAIL PROTECTED] Betreff: Re: Compressing SOAP requests and using SSL OK, looking at the soucre code, it looks like I

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
Malte Kempff wrote: Hi Nigel, I am using soap2.3.1 for RPCs calling the methods takes as far I remember not very much changes and it is looking somehting like this: ... SOAPHTTPConnection st = new SOAPHTTPConnection(); ... SOAPContext ctx = new SOAPContext(); ctx.setGzip(true); Call call = new

Re: please, help with no deserializer found ... message

2004-11-10 Thread Scott Nichol
it is filtered to accept only mail from specific mail lists. - Original Message - From: Nige White [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 4:31 AM Subject: Re: please, help with no deserializer found ... message Hi all, first time poster, been lurking

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Scott Nichol
Subject: Re: AW: Compressing SOAP requests and using SSL How do i unsubscribe from this list? Malte Kempff [EMAIL PROTECTED] 11/10/2004 10:43 AM Please respond to soap-user To: [EMAIL PROTECTED] cc: Subject:AW: Compressing SOAP requests

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Scott Nichol
] To: [EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 10:40 AM Subject: Re: Compressing SOAP requests and using SSL Daniel Zhang wrote: Yes you can use SSL but it is a different story. You have to configure SSL for both Client and Server side, install the CA certificate, configure

Re: please, help with no deserializer found ... message

2004-11-09 Thread Scott Nichol
When a service uses the RPC API, the SOAP request is parsed into parameters for the service method call. Each parameter has a Java type specified by the method signature. Apache SOAP normally uses the XML Schema type of an element in the request to determine the Java type of the parameter

Re[2]: please, help with no deserializer found ... message

2004-11-09 Thread Vladimir Brezhnev
Hello Scott, Tuesday, November 9, 2004, 4:36:15 PM, you wrote: SN When a service uses the RPC API, the SOAP request is parsed SN into parameters for the service method call. Each parameter has a SN Java type specified by the method signature. Apache SOAP normally SN uses the XML Schema type of

Re: Re[2]: please, help with no deserializer found ... message

2004-11-09 Thread Scott Nichol
to accept only mail from specific mail lists. - Original Message - From: Vladimir Brezhnev [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 09, 2004 9:12 AM Subject: Re[2]: please, help with no deserializer found ... message Hello Scott, Tuesday, November 9, 2004, 4:36:15 PM

Re[4]: please, help with no deserializer found ... message

2004-11-09 Thread Vladimir Brezhnev
Hello Scott, Tuesday, November 9, 2004, 5:49:03 PM, you wrote: SN Your service class is written to use the messaging API: SNpublic void SubmitReq(Envelope envelope, SOAPContext SN soapcontext, SOAPContext soapcontext1) SN Your deployment descriptor should read SNisd:service SN

Re: Re[4]: please, help with no deserializer found ... message

2004-11-09 Thread Scott Nichol
mail from specific mail lists. - Original Message - From: Vladimir Brezhnev [EMAIL PROTECTED] To: Scott Nichol [EMAIL PROTECTED] Sent: Tuesday, November 09, 2004 10:13 AM Subject: Re[4]: please, help with no deserializer found ... message Hello Scott, Tuesday, November 9, 2004, 5:49:03

Re: Newbie Q: SOAP in the real world

2004-11-09 Thread Scott Nichol
The large public examples are Amazon, Google, MapPoint and PayPal. Most usage is semi-public or private business-to-business, or within single businesses to integrate otherwise separate systems. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept

Re: Newbie Q: SOAP in the real world

2004-11-09 Thread Scott Nichol
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 Do not send e-mail

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[6]: please, help with no deserializer found ... message

2004-11-09 Thread Vladimir Brezhnev
Hello Scott, Tuesday, November 9, 2004, 8:01:55 PM, you wrote: SN Sorry, I forgot to add the most important thing: your client SN must use an endpoint URL for messagerouter instead of rpcrouter, SN for example, http://localhost:8080/soap/servlet/messagerouter. It works. :) Thank you very much!

Re: How destroy java application using SOAP and Tomcat

2004-11-01 Thread Jaroslav Srytr
: Saturday, October 30, 2004 3:57 PM Subject: FW: How destroy java application using SOAP and Tomcat -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Friday, October 29, 2004 3:36 PM To: [EMAIL PROTECTED] Subject: Re: How destroy java application using SOAP

Re: How destroy java application using SOAP and Tomcat

2004-11-01 Thread Scott Nichol
mail lists. - Original Message - From: Jaroslav Srytr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 01, 2004 9:27 AM Subject: Re: How destroy java application using SOAP and Tomcat Thank you for a response, but I don't know how I have solve my trouble. When I reload

Re: How destroy java application using SOAP and Tomcat

2004-10-29 Thread Scott Nichol
For application scope, Apache SOAP keeps the instance of your class as part of the ServletContext for the servlet (using setAttribute). I would think that re-loading the Apache SOAP application would cause the old context to be released (no more references to it) and the new one to be created

Re: method not founded

2004-10-26 Thread Scott Nichol
not force Tomcat to re-load it. I usually just restart Tomcat to be sure the newest version is loaded. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: Francesco Dipalo [EMAIL

Re: method not founded

2004-10-26 Thread Francesco Dipalo
Thanks for the help, now I try as you tell TIA - Original Message - From: Scott Nichol [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 26, 2004 6:28 PM Subject: Re: method not founded Two typical causes of this problem: 1. The servizio.class file is more than one place

Re: problems in creating a web service

2004-10-20 Thread Felipe Furtado Palma Dias
I suggest that you use a developer tool to generate your Web services. The Oracle Jdeveloper creates a .dd with one mouse click. The Jdevelope create the .dd and .wsdl. Best regards. - Original Message - From: Francesco Dipalo To: [EMAIL PROTECTED] Sent: Wednesday,

Re: problems in creating a web service

2004-10-20 Thread Francesco Dipalo
and for the application? - Original Message - From: Felipe Furtado Palma Dias To: [EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 12:06 PM Subject: Re: problems in creating a web service I suggest that you use a developer tool to generate your Web

Re: problems in creating a web service

2004-10-20 Thread Scott Nichol
What exactly do you mean by transform this software in a web service? What classes and/or methods to you want to access via SOAP? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message -

Re: problems in creating a web service

2004-10-20 Thread Felipe Palma Dias
Dipalo [EMAIL PROTECTED] escreveu: and for the application? - Original Message - From: Felipe Furtado Palma Dias To: [EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 12:06 PM Subject: Re: problems in creating a web service I suggest that you use a developer

Re: problems in creating a web service

2004-10-20 Thread Francesco Dipalo
to execute servizio and composizione methods. - Original Message - From: Scott Nichol [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 4:18 PM Subject: Re: problems in creating a web service What exactly do you mean by transform this software in a web service? What classes

Re: problems in creating a web service

2004-10-20 Thread Felipe Palma Dias
my purpose is? In my case I want to execute servizio and composizione methods. - Original Message - From: Scott Nichol [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 4:18 PM Subject: Re: problems in creating a web service What exactly do you mean

Re: problems in creating a web service

2004-10-20 Thread Scott Nichol
mail from specific mail lists. - Original Message - From: Francesco Dipalo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 1:00 PM Subject: Re: problems in creating a web service For example, if I have this java class package javasoap.book.ch4; public class

Re: problems in creating a web service

2004-10-20 Thread Francesco Dipalo
What does it mean to factor a class? - Original Message - From: Scott Nichol [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, October 20, 2004 7:48 PM Subject: Re: problems in creating a web service It looks to me like servizio methods prompt the user for input and write stuff

  1   2   3   4   5   6   7   8   9   10   >