Re: BSF error: unable to load language: javascript

2001-06-22 Thread Sam Ruby
Max Bocchini wrote: > > I am trying to make the Calculator example to work.I am using soap 2.2, Tomcat 3.2.2 , > Xerces 1.4.0, bsf 2.2 and js.jar from rhino14R3.zip Try rhino 1.5. The mozilla folks made a not-backwards compatible change...if I remember correctly it was a single line change, so

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Rosh R Nair
Hi, Yes, u r right. Tomcat 3.1.1 is working perfectly with me too. Thanks Rosh Nair -Original Message- From: Se-yong, Um [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 5:54 PM To: [EMAIL PROTECTED] Subject: Re: Beginner question : Client throwing AbstractMethodError Hi.

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Rosh R Nair
Hi, I am trying with your configifuration but for me the OS is Win 2000. Now I have a different error. When I run the Tomcat i am getting XmlMapper: Can't find method setDescription in Wrapper(rpcrouter null) CLASS cla ss org.apache.tomcat.core.ServletWrapper but the webserver is working fine.

Re: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Se-yong, Um
Hi. I have got AbstractMethodError like you. My environment is : RH7.0, JDK1.3.1 from sun, Tomcat 3.2.2, Soap 2.2, Xerces 1.3.1 When xml parser from tomcat 3.2.2 precedes xerces from ASF, I got NoSuchMethodError, when xerces precedes tomcat 3.2.2's parser, I got AbstractMethodError. B

BSF error: unable to load language: javascript

2001-06-22 Thread Max Bocchini
  Hi guys, I am trying to make the Calculator example to work.I am using soap 2.2, Tomcat 3.2.2 , Xerces 1.4.0, bsf 2.2 and js.jar from rhino14R3.zip Server classpath: bsf.jar, js.jar, soap.jar, xerces.jar in this order(before the tomcat jars) I deploy the service and then i get the erro

TcpTunnelGui

2001-06-22 Thread Eva Flora
My weblogic server is running on port 7005 and I invoke TcpTunnelGui via the command: java org.apache.soap.util.net.TcpTunnelGui 7007 localhost 7005 I then try the message/SendMessage.java and POProcessor.java example and I dont see the xml file (msg1.xml) pass through the TcpTunnelGui windo

RE: SOAP Fehler(SOAP-ENV:Client): I only know how to serializean 'org.w3c.dom.Element'.

2001-06-22 Thread Hecking, Dirck J
You need to change the encoding style of the call object on the consumer side to Constants.NS_URI_SOAP_ENC. The will be no need to change the code on the server side or the deployment descriptor since the error is on the consumer side. Magic line of code: call.setEncodingStyleURI(Constants.NS_URI

SOAP Fehler(SOAP-ENV:Client): I only know how to serialize an 'org.w3c.dom.Element'.

2001-06-22 Thread Oliver Rettig
Hallo, I get from my java-client the following error-message: SOAP Fehler(SOAP-ENV:Client): I only know how to serialize an 'org.w3c.dom.Element' I invoke a method String[] test() on my apache-soap-server. What does it mean? Thanks for help Oliver begin:vcard n:Rettig;Oliver tel;fax:0721/

Re: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Javier A. Soltero
Could you send the deployment descriptor for your class? Rosh R Nair wrote: > Javier, > Yes, both the outputs are from the same request. The full o/p is: > > POST /mysoap/servlet/rpcrouter HTTP/1.0 > Host: localhost > Content-Type: text/xml; charset=utf-8 > Content-Length: 443 > SOAPAction: "

BSF error: unable to load language: javascript

2001-06-22 Thread Max Bocchini
Hi guys, I am trying to make the Calculator example to work.I am using soap 2.2, Tomcat 3.2.2 , Xerces 1.4.0, bsf 2.2 and js.jar from rhino14R3.zip Server classpath: bsf.jar, js.jar, soap.jar, xerces.jar in this order(before the tomcat jars) I deploy the service and then i get the error w

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Rosh R Nair
Javier, Yes, both the outputs are from the same request. The full o/p is: POST /mysoap/servlet/rpcrouter HTTP/1.0 Host: localhost Content-Type: text/xml; charset=utf-8 Content-Length: 443 SOAPAction: "" http://schemas.xmlsoap.org/soap/envelope/"; xmlns:xsi="http://www.w3.org/1999/XMLSchema-ins

Re: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Javier A. Soltero
Rosh, from your previous tunnel output: http://schemas.xmlsoap.org/soap/encoding/";> Rosh This is indicating that you are trying to invoke method "sayHelloTo" of a class identified by the uri "rsh.hello" The output you posted in your last message seemed incomplete. Are they from the same requ

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Rosh R Nair
Hi all, According to the Info that I just found out the Message header should contain the following info: The request SHOULD include a header "SOAPMethodName" whose value indicates the method to be invoked on the target. The value consists of a URI followed b

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Hansen, Richard
>From the Java API docs : public class AbstractMethodError extends IncompatibleClassChangeError Thrown when an application tries to call an abstract method. Normally, this error is caught by the compiler; this error can only occur at run time if the definition of some class has incompatibly cha

String[] QName

2001-06-22 Thread Oliver Rettig
Hallo, my soap-server implements String[] dummy(). How can I say the server to use the qualified name "ArrayOfString" that I defined in wsdl-file that I use with my ms-clients? cheers Oliver begin:vcard n:Rettig;Oliver tel;fax:0721/38489606 tel;home:0721/9662896 tel;work:0721/38489600 x-moz

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Rosh R Nair
Hi, The TCP Tunnel/Monitor is working properly now. Plese help me in debugging this output. The XML generated by the client is as follows: - POST /mysoap/servlet/rpcrouter HTTP/1.0 Host: localhost Content-Type: text/xml; charset=utf-8 Content-Length:

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Matthew J. Duftler
Hi Rosh, Since you have the TcpTunnelGui tool listening on port 80 (and forwarding to what I assume is your IP address and port 8080), and Apache is listening on port 8080, you need to direct your clients at port 80. You need to make the resources of your service available on your server's clas

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Matthew J. Duftler
> what is the TcpTunnelGui does.. Take a look at the "Tools" section of the User's Guide. > Is there any way I can know what XML data is coming to the Apache Soap > service ? Yes, you can use the TcpTunnelGui tool. Thanks, -Matt > -Original Message- > From: Khamesra, SandeepX [mailto:

Re: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Javier A. Soltero
Rosh, It looks like you're not setting up the tunneling correctly. You should start the tunnel on a unused port, say 9090 and map it (as you are doing) to the tomcat port 8080. You must now make sure that your soap application client is trying to connect to 9090. Once this is set up, you will be

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Rosh R Nair
Hi, I tried to use the TcpTunnelGui tool. My Soap Service is running within Apache on port 8080. But I am not getting any dump inside the tool. I ran the GUI Tool as follows: java org.apache.soap.util.net.TcpTunnelGui 80 24.176.212.99 8080 I am still confused, whether it has any relation to the

option-tag in deployment-descriptor

2001-06-22 Thread Oliver Rettig
Hallo, I´ve found this line in example deployment-descriptor: and I want to know if I can get this properties in my apache-soap-server from the system-properties? I need the possibility to get path-information in my server depending on deployment of the server. Is that the solution? cheers

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Khamesra, SandeepX
what is the TcpTunnelGui does.. Is there any way I can know what XML data is coming to the Apache Soap service ? -Original Message- From: Matthew J. Duftler [mailto:[EMAIL PROTECTED]] Sent: Friday, June 22, 2001 11:23 AM To: [EMAIL PROTECTED] Subject: RE: Beginner question : Client throw

RE: Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Matthew J. Duftler
Hi Rosh, Try running the TcpTunnelGui tool, as described in the documentation, to see what the details of the Fault are. Thanks, -Matt > -Original Message- > From: Rosh R Nair [mailto:[EMAIL PROTECTED]] > Sent: Friday, June 22, 2001 1:34 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED

Beginner question : Client throwing AbstractMethodError

2001-06-22 Thread Rosh R Nair
Hi all, I was trying out the Java World tutorial on soap. I am trying out with Tomcat 3.2 and Soap 2.2. But when I try to run a sample program which just returns a string I am getting an error: Fault Code = SOAP-ENV:Server.Exception: Fault String = java.lang.AbstractMethodError The client is

Re: Transport Unicode with SOAP

2001-06-22 Thread Simon Fell
as the 4s4c end is based on COM, which is all unicode (on win32 anyway), the server side should return a real unicode string, and 4s4c will transcode it down to UTF-8 at the transport level. You'll need the latest version (1.3.3) of 4s4c for this to work properly. Cheers Simon On Fri, 22 Jun 200

Transport Unicode with SOAP

2001-06-22 Thread Hartmut Bernecker
Hi, ... hopefully to find an answer in that forum: A problem seems to be that I want to transport Unicode with SOAP. What is my objective? ==> Sending out Unicode Responses to an Web-Browser. Where does the Unicode come from? ==> C++ Program (DCOM) What is the Web-Application I use? ==> Java

Custome Java Message Provider

2001-06-22 Thread Kenneth Partlow
We had the need on our project to use a custom java message provider. To do this I had to modify MessageRouterServlet a bit for if you use a user defined provider they expect you to use the bsf stuff (by my understanding). We wanted to use a variation of the MsgJavaProvider class so we set the se

RE: problemen with string[] as argument on ms-client invoking apache soap-server

2001-06-22 Thread Shu
Hello Oliver, >From your previous e-mail, I think that you use MS SoapToolkit C++ version to implement your Client. In this case, a parameter (or response value) of Array type must be a SAFEARRAY type. Perhaps didn't you use this when invoking SOAP call? Herve > -Message d'origine- > D

getInstance().getAllDn

2001-06-22 Thread Thomas Jankowsky
Hi all, I wrote a Singleton class and tried to access a method of this class on the server. The method call looks like "getInstance().getAllDn". I got an exception on the client side even when I encode the parenthesis with unicode 0028, 0029 and 002D. Can I call method like this? Thanks in

RE: Maintain session

2001-06-22 Thread Matthew J. Duftler
Hi Raj, This is true if you continue to use the same SoapHTTPConnection for each Call. However, if you deploy with "Request" scope, the server creates a new instance of your service for each invocation, so you will still be dealing with a new object each time. Thanks, -Matt > -Original Mess

RE: Maintain session

2001-06-22 Thread Rajagopal. V
Hi Matt, Thanks for the reply. But even if i deploy it with "Request" scope, i think it is still going to hold the session as the invoke method creates a SoapHTTPConnection anyway(for a Request scope) and the maitnainsession variable in SoapHTTPConnection has a defautl value of true(which is what

problemen with string[] as argument on ms-client invoking apache soap-server

2001-06-22 Thread Oliver Rettig
Hi, always problems with invoking commands with String[] as argument: This is my wsdl: http://www.w3.org/2001/XMLSchema"; xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"; xmlns="http://schemas.xmlsoap.org/wsdl/";>

Re: wsdl arrayOfString ms-soap-client

2001-06-22 Thread Oliver Rettig
Hi Mark, thank you for help. cheers Oliver begin:vcard n:Rettig;Oliver tel;fax:0721/38489606 tel;home:0721/9662896 tel;work:0721/38489600 x-mozilla-html:FALSE org:ORAT Software-Entwicklung adr:;;Steinstr. 23;Karlsruhe;;76133; version:2.1 email;internet:[EMAIL PROTECTED] title:Dipl.Phys. x-mozil

Re: SV: wsdl arrayOfString ms-soap-client

2001-06-22 Thread Oliver Rettig
Hallo kim.schjefstad, > I think you are right concerning the namespaces. I do put my own types into > my own namespaces for clarity, but I'm not sure if this is what you are > supposed to do. Anyway it will work using your own namespaces. > > What we do is to use a valid URL as namespace and plac

Client side error on parsing xml

2001-06-22 Thread Fabrizio Candon
Lauching the service manager I get this parsing message, I ask which file is it trying to parse? And why should it have a bad declaration? It's not any of my files... java org.apache.soap.server.ServiceManagerClient http://localhost:8841/soap/testSOAP.jhtml list I got: Exception in thread "main

RE: Missing XMLParserLiason

2001-06-22 Thread Abbott, James STASCO-OTO/72
Oops. Completely my fault. Old samples against 2.2. Doh. Thanks guys. -Original Message- From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED]] Sent: 21 June 2001 11:57 To: [EMAIL PROTECTED] Subject: Re: Missing XMLParserLiason It used to be part of Apache SOAP, but it was thrown away and