RE: compatibility with weblogic 6.1 beta

2001-06-13 Thread Steve Livingston
Title: RE: compatibility with weblogic 6.1 beta Attached is a 1st draft for a FAQ entry.    Stefan and Ed: I’m not clear on the nature of the problem.  I’ve always gotten the “Unable to resolve namespace” and putting zerxes first in CP has always fixed that problem … until WL6.1beta.  

Apache to MS Soap: timeInstant vs. dateTime (or xsd:date)

2001-06-13 Thread Stan Weinronk
Hi   I am trying to get a java soap application to talk nicely with a MS Soap service that requires a dateTime parameter.    The service is using 2001/XMLSchema.   What is the best strategy if I cannot change the wsdl file on the server?   Are there any good FAQ's/docs on the usage of date

Server.Exception : Fault String = java.lang.NoSuchMethodError

2001-06-13 Thread Craig Morton
Trying stockquote and a variant there off. In both cases hit this error when 'testit' Deploying the stockquote service... Ouch, the call failed: Fault Code = SOAP-ENV:Server.Exception: Fault String = java.lang.NoSuchMethodError Get this for every call to the "org.apache.soap.server.Serv

RE: compatibility with weblogic 6.1 beta

2001-06-13 Thread Matthew J. Duftler
Title: RE: compatibility with weblogic 6.1 beta Hi Steve, Ed, Stefan,   If you guys want to write this up in an HTML file, I'll merge it into the FAQs hosted on the web-site (and the install docs for WL).   Thanks, -Matt -Original Message-From: Steve Livingston [mailto:[EMAIL PR

RE: Parameter Encoding Problem

2001-06-13 Thread Matthew J. Duftler
Hi Eric, The samples.addressbook.PutListings sample shows how to pass an Element as a parameter. Thanks, -Matt > -Original Message- > From: Eric Grace [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 13, 2001 11:42 AM > To: [EMAIL PROTECTED] > Subject: Re: Parameter Encoding Problem >

RE: Installation question

2001-06-13 Thread Matthew J. Duftler
Hi Jan, Please use the TcpTunnelGui tool (as described in the docs) to see what is being sent back, and post the wire-dump here. Thanks, -Matt > -Original Message- > From: Serfontein, Jan [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 13, 2001 8:13 AM > To: '[EMAIL PROTECTED]' > Sub

RE: compatibility with weblogic 6.1 beta

2001-06-13 Thread Steve Livingston
Title: RE: compatibility with weblogic 6.1 beta Fixed me too! Tnx Stefan.   For those who repeat this fix:   1) Remember to add xerces to start of WL classpath.   2) Using WL console (rather than editing config.xml):   a)   mydomain/Services/XML -> Configure a new XML Registry.

Re: Parameter Encoding Problem

2001-06-13 Thread Sanjesh Pathak
To send an Element to SOAP service do this in your client: // assuming you declared my_element as an Element (Element my_element;) Vector params = new Vector(); params.addElement(new Parameter("my_parameter_name", Element.class, my_element, Constants.

Re: Apache SOAP webservice & .NET client

2001-06-13 Thread Joseph George
Hi, I just installed VS.NET yesterday...and i can't wait for beta2(i need to sow some results to my boss soon!). So is it possible to consume an Apache SOAP webservice from a VS.NET(beta1,c#) client? Is so, how do i go about and do it. please give explicit instructions...i'm new to all of this!! -

Re: Parameter Encoding Problem

2001-06-13 Thread Eric Grace
I'm still missing something here... Element bookEl = (Element)ret.getValue(); This casts an existing Parameter to an elementthe Parameter comes from a preexisting Response. I am trying to create a response and add parameters to itso in my case, the ret Parameter is nullgetValu

RE: Problems with Examples

2001-06-13 Thread Christian Bernard
Hi Adrian, Here is a little more help. This is what I added in my Tomcat.bat file (behind the "set CLASSPATH=%CP%" statement) : echo. echo Using CLASSPATH: %CP% echo. set CLASSPATH=%CP% set CLASSPATH=C:\Xerces_1.4.0\xerces.jar;%CLASSPATH% set CLASSPATH=C:\Soap_2.2\lib\soap.jar;%CLASSPATH% set

Re: Parameter Encoding Problem

2001-06-13 Thread Sanjiva Weerawarana
> I wondered if I can overload Soap services? Sure. Sanjiva. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]

Re: Large Strings as parameters...please respond?!

2001-06-13 Thread Sanjiva Weerawarana
There's nothing the code that would prevent you from passing around large strings. What exactly fails? What's the error message? Sanjiva. - Original Message - From: "Colin Saxton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 9:57 AM Subject: Large Strings as

RE: Exception! java2wsdl tool

2001-06-13 Thread Peter Govind
>This jar is built to work with Axis (http://xml.apache.org/axis). You'll >need the axis.jar for it to work. > >--G Ohh darn. Nightly builds. That coupled with me brains are a bad combination! LOL! Well, here goes . Thanks-a-million "G" > > -Original Message- > > From: Pete

Re: Parameter Encoding Problem

2001-06-13 Thread Anping Wang
Thanks! I wondered if I can overload Soap services? Anping Sanjiva Weerawarana wrote: > Sure it does .. you can send stuff using different encoding styles: > you can use soapenc for 3 params, literal xml for 2 and something > else for n more and return one value in whichever encoding you > wan

Re: Exception! java2wsdl tool

2001-06-13 Thread Joseph George
The java2wsdl download link can be found inside James Birchfield post at the axis-dev list:- http://marc.theaimsgroup.com/?l=axis-dev&m=99236686802581&w=2 - Original Message - From: "Peter Govind" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 4:45 PM Subject:

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 path

RE: Exception! java2wsdl tool

2001-06-13 Thread Glen Daniels
This jar is built to work with Axis (http://xml.apache.org/axis). You'll need the axis.jar for it to work. --G > -Original Message- > From: Peter Govind [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 13, 2001 10:45 AM > To: [EMAIL PROTECTED] > Subject: Re: Exception! java2wsdl tool

Re: Exception! java2wsdl tool

2001-06-13 Thread jbirchfield
It is built using the Axis package from apache. You must have the axis.jar in your classpath. James Birchfield Ironmax maximizing your construction equipment assets 5 Corporate Center 9960 Corporate Campus Drive, Suite 2000 Louisville, KY 40223

Re: Exception! java2wsdl tool

2001-06-13 Thread Peter Govind
>James, >i get this exception when i try to run your tool: > >java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e >http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry >Exception in thread "main" java.lang.NoClassDefFoundError: >org/apache/axis/utils/Options > at

Exception! java2wsdl tool

2001-06-13 Thread Joseph George
James, i get this exception when i try to run your tool: java org.apache.axis.utils.wsdl.Java2WSDL -c exampleTry.class -e http://localhost:8080/soap/servlet/rpcrouter -n urn:try:exampleTry Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/axis/utils/Options at org.apac

Large Strings as parameters...please respond?!

2001-06-13 Thread Colin Saxton
If I send large string data as a parameter or I receive large string data then the SOAP RPC call fails...I know that developers have had similar problems...has anyone fixed it or found a solution? Some of the string data that I need to send can be in the realms of 10MB but most of the time it is o

Re: Apache SOAP webservice & .NET client

2001-06-13 Thread jbirchfield
I uploaded a pre-pre-alpha version of a java2wsdl tool to the axis-dev mailing list. You can find the jar in the archives... James Birchfield Ironmax maximizing your construction equipment assets 5 Corporate Center 9960 Corporate Campus Drive, Suite 2000 Louisville, KY 40223

Re: Apache SOAP webservice & .NET client

2001-06-13 Thread Mark Richman
If you wait for VS.NET Beta 2, you can use WSDL instead of SDL. The WSDL file can be generated from your class by the IBM WSTK easily. By the way, why don't we have an Apache SOAP WSDL and proxy class generator? - Mark On Wed, 13 June 2001, "Joseph George" wrote: > > Hi, > I checked the arch

Re: Apache SOAP webservice & .NET client

2001-06-13 Thread Peter Govind
>By the way, why don't we have an Apache SOAP WSDL and proxy class > >generator? Yeah! What's up with that ? There should be a WSDL generator with Apache SOAP so we dont have to get bloated IBM tools. By bloated I mean large as in 16 MB or so. Ouch, on dial up ? I don't think so. My SOAP expe

SOAP API questions

2001-06-13 Thread Andreas Gruenhagen
Hello to everybody, maybe these are stupid questions, but -Why does the SOAP-API use this RPC ? Why don't we take simple sockets ? Some further questions which crossed my mind while browsing the SOAP-API - Why is there a Class 'RPCRouter' ? The routing does not concern SOAP ! - Why is there no

Apache SOAP webservice & .NET client

2001-06-13 Thread Joseph George
Hi, I checked the archives of this list but most of the messages concerning .NET dealt with an apache soap client and a .NET webservice. I want to know how to make it work the otherway round. Suppose i have the following webservice in java: -- public cl

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: compatibility with weblogic 6.1 beta

2001-06-13 Thread Ed Keen
Title: RE: compatibility with weblogic 6.1 beta That fixed it!  Thanks, Stefan! -Original Message-From: Stefan Dube [mailto:[EMAIL PROTECTED]]Sent: Wednesday, June 13, 2001 4:15 AMTo: [EMAIL PROTECTED]Subject: RE: compatibility with weblogic 6.1 beta Hi! I believe the p

Installation question

2001-06-13 Thread Serfontein, Jan
Hi I installed the soap api. and tested it on the sun J2EE reference implementation. All was fine until I tried the test below: java org.apache.soap.server.ServiceManagerClient rpc-router-url list with my rpc-router-url replacing the one in italics above. The error I get is : //

RE: compatibility with weblogic 6.1 beta

2001-06-13 Thread Ed Keen
Erik, I was accidentally using an old version of xerces (1.2). When I changed it to 1.4, I can start weblogic ok, but I still have the problem with deploying soap services (unable to resolve namespace). If you run weblogic.apache.xerces.framework.Version, you will find that they are using versio

Re: Parameter Encoding Problem

2001-06-13 Thread Sanjiva Weerawarana
No because a Document can contain stuff that soap says no to (such as PIs). So you have to pass the document element if you want to send all the content of a doc (minus any PIs). The PIs may in fact work in Apache SOAP, but if it does that's a non-compliant feature. However, I have heard that the

RE: Parameter Encoding Problem

2001-06-13 Thread Saint-Martin Cecile
Hi, What is the relation between encoding style and mapping registry? With literal XML encoding style, can we pass DOM Document instead of DOM Element? SAINT-MARTIN Cecile [EMAIL PROTECTED] > -Message d'origine- > De : Sanjiva Weerawarana [mailto:[EMAIL PROTECTED]] > Envoyé : mercredi 1

Re: Problems with SOAP Messaging

2001-06-13 Thread Sanjiva Weerawarana
The problem is you targetted the call to the rpcrouter .. change the URL to messagerouter and it should work! Sanjiva. - Original Message - From: "Warwick Slade" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 4:21 AM Subject: Problems with SOAP Messaging I h

Re: Parameter Encoding Problem

2001-06-13 Thread Sanjiva Weerawarana
Sure it does .. you can send stuff using different encoding styles: you can use soapenc for 3 params, literal xml for 2 and something else for n more and return one value in whichever encoding you want. See the sample GetAllListings in addressbook for how to control the return encoding style. Not

RE: compatibility with weblogic 6.1 beta

2001-06-13 Thread Stefan Dube
Title: RE: compatibility with weblogic 6.1 beta Hi! I believe the problem is that SOAP 2.2 uses JAXP and WL uses their bundled xerces as JAXP parser. To override this you have to modify the config.xml like this: (or use the web console) Add following element as child of the element:    

can sombody help me in getting over with this problem?

2001-06-13 Thread shashikant sonawane
Hi All, I have recently installed SOAP2.2 on my machine.I have a problem running the java client.I have follwed all the instruction properly for the installation given along with the documentation.I have kept the xerces.jar in the classpath ahead of all.It gives me the error which is relat

Problems with SOAP Messaging

2001-06-13 Thread Warwick Slade
I have written my first 'rpc' SOAP service and have successfully sent data from the client to the server and responded.   However.   I really want to use the messaging pattern.   So I did the following    1. added type="message" to my isd:service descriptor and then deployed.   2. I changed m

RE: Class Loading in SOAP/Tomcat

2001-06-13 Thread tamir
Hey, Tnx for your reply, It seems as this is the only solution to the problem. However, while I can disable tomcat auto-reloading feature, I have conflicts with other web-apps, because of putting WEB-INF/classes in my classpath. Right now, I remove and add it from my classpath according to the cur