RE: How to get rid of default Namespace URI

2001-10-29 Thread Hung D. Viet
Title: How to get rid of default Namespace URI Unfortunately no, I haven't got any work around solution without touching the code :-(   It seems to be a bug with apache soap 2.2 implementation. I have looked at the code, there is no option for you to turn off this "namespace".   I wonder why

BUG FIX - Soap 2.2 SSL via proxy

2001-10-29 Thread David Wall
How do I post code that seems to fix a bug in Apache SOAP 2.2 with respect to using SSL through a proxy server?   While I don't purport to be an Apache SOAP programming expert, I'll share the code here in the hopes that it will make it into the next iteration.  Of course, I'm sure it can be m

Re: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-29 Thread Ong Boon Pang
Hi Lakkavaram, I wrote a detail step by step instruction in this mail list. http://marc.theaimsgroup.com/?l=soap-user&m=100199111401559&w=2 This will only work fine if you are using a English/ASCII version of the Windows. Platform I am using: Sun JDK 1.3.1_01 Tomcat 4.0 SOAP2.2 Win2K If it st

RE: What is the best way to send Large String from the Client to the Service?

2001-10-29 Thread Barnaby James
Hmmm. It sounds like it is including the null terminator (the unicode 0x00) from the end of the string. You can probably strip this off yourself (I guess it depends a little bit on how you convert the string to byte[]. 0x00 isn't legal in an XML document (I am pretty sure). The part I find supris

RE: What is the best way to send Large String from the Client to the Service?

2001-10-29 Thread Ding, Chengmin
Barnaby and Paramdeep, Thank you very much for your hints. I have followed Barnaby's tip and passed the Large string as a binary array from VB to Java. Now it is much faster(5 seconds versus 15 minutes). But I started to get the following error after I use String(byte bInput[]) to cast the byte ar

Re: error: org.apache.jasper.JasperException

2001-10-29 Thread Ganga Sah
Hi Schweizer, Do you have JAVA_HOME set for tomcat as this is used by tomcat? eg., JAVA_HOME =c:\jdk1.3.1 Thx Ganga - Original Message - From: "Schweizer Laurent" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 29, 2001 1:18 PM Subject: Re: error: org.apache.jasper.Jaspe

Re: error: org.apache.jasper.JasperException

2001-10-29 Thread Schweizer Laurent
he is my classpath ! CLASSPATH=c:\soap-2_2\soap.jar;c:\soap-2_2;c:\soap-2_2\lib\soap.jar;c:\soap-2_2\lib;c:\javamail-1.2\mail.jar;c:\javamail-1.2;c:\jaf-1.0.1\activation.j ar;c:\rhino\js.jar;c:\bsf-2_2\lib\bsf.jar;c:\xerces-1_4_3;c:\xerces-1_4_3\xerces.jar >From: "Ganga Sah" <[EMAIL PROTECTED]>

Re: error: org.apache.jasper.JasperException

2001-10-29 Thread Ganga Sah
Can you make sure that Tomcat is picking soap.jar's CLASSPATH? Thx g.s - Original Message - From: "Schweizer Laurent" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 29, 2001 12:20 PM Subject: error: org.apache.jasper.JasperException I have tomcat 3.3 and soap 2.2. whe

SOAP Diagnostic Error?

2001-10-29 Thread LeVan,Ralph
I've been getting this error lately: Fault=[Attributes={}] [faultCode=SOAP-ENV:Server] [faultString=Exception from service object: null] [faultActorURI=/SRW/etdcat] [DetailEntries=] [FaultEntries=] Not very helpful. I pulled down the 2_2 source and walked from RPCServletRouter into RPCRouter wh

RE: How to get rid of default Namespace URI

2001-10-29 Thread Tolsch, Ed
Title: How to get rid of default Namespace URI Hi,     Did you ever get a response to this? I'm trying to do the same thing only opposite. I'm receiving a message generated by a .NET client and am using the Apache Soap server(2.2). When I return the message to the .NET client it prepends the

error: org.apache.jasper.JasperException

2001-10-29 Thread Schweizer Laurent
I have tomcat 3.3 and soap 2.2. when i go in the apache SOAP admîn i have this error org.apache.jasper.JasperException: Unable to compile C:\jakarta-tomcat-3.3\work\DEFAULT\soap\admin\list_1.java:7: Package org.apache.soap.server not found in import. import org.apache.soap.server.*; ^

Re: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-29 Thread Nuno Jorge Sebastiao
unsubscribe

Configuration issue

2001-10-29 Thread Shlomi Gian
hey all, Here is a quick question I'm sure some of you have dealt with. I have added some SOAP code to expose my web app as web service - it works fine and I'm sending\receiving SOAP messages. The problem is that : in order to allow soap to find my classes I had to change tomcat.bat (the class pat

RE: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-29 Thread Emilio Belmonte
Title: RE: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?) It works.  Check catalina.bat in the bin directory.  It shouldn't be difficult to see where you se the classpath.  In any case, you can just deploy as a web application by dropping soap.war inside the webapps directory. --Emi

Re: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-29 Thread Tom Myers
At 09:31 AM 10/29/2001 -0500, Lakkavaram, Ashok wrote: >Hi, > >Has anybody plugged SOAP 2.2 into Tomcat 4.0.1 ? >At web site, there are instructions on how to plug into TomCat 3.2 and not >for >TomCat 4.0.1. >For example, there is no "tomcat.bat" in TomCat 4.0.1 instllation where one >is supposed

RE: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-29 Thread Sonny Bautista
Make the changes to the catalina.bat file. Sonny -Original Message- From: Lakkavaram, Ashok [mailto:[EMAIL PROTECTED]] Sent: Monday, October 29, 2001 6:31 AM To: '[EMAIL PROTECTED]' Subject: SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?) Hi, Has anybody plugged SOAP 2.2 into

SOAP 2.2 plug-in for Tomcat 4.0.1 (Has anybody did it ?)

2001-10-29 Thread Lakkavaram, Ashok
Hi, Has anybody plugged SOAP 2.2 into Tomcat 4.0.1 ? At web site, there are instructions on how to plug into TomCat 3.2 and not for TomCat 4.0.1. For example, there is no "tomcat.bat" in TomCat 4.0.1 instllation where one is supposed to set the class path. Thanks, ashok -Original Message--

SOAP actor attribute

2001-10-29 Thread Martin Leboeuf
Hi ! I have searched far and wide, and found very little documentation about SOAP other then the W3C Specs or very similar doc. I am looking for something like a developer's/programmer's guide. For my specific question : I have a hard time fully understanding the meaning/utility/implications of

Re: Serializers/Deserializers

2001-10-29 Thread Paramdeep Singh
I have developed some serializers for some classes. You can have a look at the WSTK from IBM. It automatically generates the serializers/deserializers for you. With warm regards Paramdeep - Original Message - From: "David Turner" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursda

AW: AW: AW: Using soap whith websphere 3.02

2001-10-29 Thread Goerg, Marko
Be sure that there is no other xml parser (xerces, docuverse, etc.) in the classpath. -Ursprungliche Nachricht- Von: Thierry Sechao [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 29. Oktober 2001 14:07 An: [EMAIL PROTECTED] Betreff: Re: AW: AW: Using soap whith websphere 3.02 Thanks for y

Re: AW: AW: Using soap whith websphere 3.02

2001-10-29 Thread Thierry Sechao
Thanks for your help Marko, I get the jaxp1.1 and unzip it. I put the jaxp.jar and crimson.jar at the beginning of my classpath in the admin.config file. I use SAOP2.2 as you told me to do. I have an "Internal Server Error". I try to have a look but if you have an idea ... Thanks again. ---

AW: AW: Using soap whith websphere 3.02

2001-10-29 Thread Goerg, Marko
Have a look on http://java.sun.com/xml/jaxp/index.html -Ursprungliche Nachricht- Von: Thierry Sechao [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 29. Oktober 2001 12:04 An: [EMAIL PROTECTED] Betreff: Re: AW: Using soap whith websphere 3.02 Thanks, but what is jaxp? where can I get it

Re: AW: Using soap whith websphere 3.02

2001-10-29 Thread Thierry Sechao
Thanks, but what is jaxp? where can I get it? --- "Goerg, Marko" <[EMAIL PROTECTED]> wrote: > Hi, > > try to use SOAP 2.2 with jaxp, activation.jar and > mail.jar. This must work. > > regards, > Marko Gorg > > -Ursprungliche Nachricht- > Von: Thierry Sechao > [mailto:[EMAIL PROTECTE

AW: Using soap whith websphere 3.02

2001-10-29 Thread Goerg, Marko
Hi, try to use SOAP 2.2 with jaxp, activation.jar and mail.jar. This must work. regards, Marko Gorg -Ursprungliche Nachricht- Von: Thierry Sechao [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 29. Oktober 2001 11:58 An: [EMAIL PROTECTED] Betreff: Using soap whith websphere 3.02 Hi, I w

Using soap whith websphere 3.02

2001-10-29 Thread Thierry Sechao
Hi, I want to use SOAP and Websphere 3.022. I first use SAOP 1.2, xerces 1.4.3, activation.jar and mail.jar but I have problem. Do I use the right version? Does anyone know how to install? Thanks for your help. Bye, __ Do You Yahoo!? Make a gr

AW: AW: Generating proxy for service

2001-10-29 Thread Goerg, Marko
Hi Stefan, I´m german you are right (perhaps you realize this by my english ...) back to your question: I´ll started with Apache SOAP 2.2 in Juli 2001. It works but I think it´s a basic API with "only" supports SOAP 1.1. In my time as application developer I need more than this, of course Apache

Re: AW: Generating proxy for service

2001-10-29 Thread Stefan Henke
Hi Marco, thanks for your help. I think this will work. I inspected the generated file and found that the right url was insert as the knownlocation object. But I didn´t see that it was static and public access. Your name looks German, right? Do you work with Apache SOAP for a long time now? Stef

AW: Generating proxy for service

2001-10-29 Thread Goerg, Marko
Hi Stefan,   the generated proxy class got a static field    public static java.net.URL[] _KnownServiceLocations; In the constructor all known location found in WSDL will be added to this field. So when you create the proxy object, choose the first element of _KnownServiceLocations as the