Re: JDK 1.4 Java aint finding javax.*

2002-07-22 Thread marco
packages holding javax.whatever. must be placed in the catalina_home\common\lib This is Tomcat 4.0 specific - Original Message - From: "Joe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 22, 2002 10:21 PM Subject: JDK 1.4 Java aint finding javax.* > Hi, I'm trying to s

JDK 1.4 Java aint finding javax.*

2002-07-22 Thread Joe
Hi, I'm trying to set axis up. JDK 1.4, axis 1, tomcat 4.0.4. I don't understand the NoClassDef, as it can't find javax?? It should always find javax.* shouldn't it? Perplexing me. Regards, Beri java org.apache.axis.wsdl.WSDL2Java http://localhost:8080/axis/CalculatorService.jws?wsdl java.lang.

Re: AdminClient throwing NullPointerException

2002-07-22 Thread Doug
ahhh - i believe that's it. i just noticed today that the problem mysteriously quit happening. then while adding some log4j logging to my web service, i remembered i had also restored the root logging category to INFO level after having put it to DEBUG level while trying to track down some other

Axis vs. Systinet WASP?

2002-07-22 Thread Doug
just ran across WASP (http://www.systinet.com/index.php?nav=/products/overview), which seems to be further along than Axis (e.g. SOAP 1.2). anybody here have experience with it or evaluate it against Axis? __ Do You Yahoo!? Yahoo! Health - Feel bet

Axis and applets

2002-07-22 Thread Michael Kent
Hi. I checked the mailing list archives, and it looks like other people have had the same trouble I'm having, but no real solution was posted. The problem is that whenever I try to run an Axis client (which works fine as an application) as an applet I get errors. They occur whenever I try to initi

Re: AdminClient throwing NullPointerException

2002-07-22 Thread Les Gerads
I believe it is a bug that is being triggered by having the debug logging setup. I had a log4j.properties in my classpath that I was using. I removed the file and it works OK now. The msgContext.getOperation() in the AxisServer is getting called in the invoke method when the tlog.isDebugEnabled(

Serializing composite objects

2002-07-22 Thread gautham chitupolu
Hi I have a sitaution in which I need to send an Context Object as parameter. The problem is this Context object has another object called TransactionManager. How can pass Context object as parameter. Can we implement transactions in soap calls. Is that possible? Thanks for help. -gautam

Can a Service discover the Namespace with which it was deployed?

2002-07-22 Thread doug
since the WSDD file specifies the service's namespace, it would be nice if the namespace could change without having to also change the code. however QNames (e.g. for AxisFault) need to know the namespace. is there any way to discover the "deployed" namespace at runtime? does this even make sens

RE: rpc-literal and document-literal

2002-07-22 Thread [EMAIL PROTECTED]
Are you talking about the newgroups on or the soap list on the develop.com server ? http://msdn.microsoft.com/webservices/ /s This is, as was noted earlier, just one man's opinion, but a good resource for this kind of discussion is the Microsoft WebServices area on MSDN; some very high-powered

Using AXIS with WSAD V4.03 and WAS AEs V4.02

2002-07-22 Thread Zaremskas, Michelle M N10
I am attempting to publish the samples that are provided and described in the user's guide. I am deploying these to WSAD V4.03 and am not having much success. I originally tried this using the XERCES parser that is shipped with WSAD and then I saw a couple of references to problems with this spe

RE: Install - works fine on XP, no good on Linux

2002-07-22 Thread Robert Herold
Tomcat 4.0.3 has a bug (fixed in 4.0.4) where it will not find javax.mumble packages in WEB-INF/lib. Try moving all the jars with java or javax packages into common/lib. -- bob -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Tom Lianza Sent: Monday, Ju

Install - works fine on XP, no good on Linux

2002-07-22 Thread Tom Lianza
The error message I'm getting is here: http://fokkit.kicks-ass.org:8180/axis/happyaxis.jsp java.lang.NoClassDefFoundError: javax/xml/soap/SOAPException I have the same jar files in the same places on my XP machine and my Debian machine (link above). The XP machine works, and the Debian one doe

Can the Axis-client use an HTTP Proxy Server

2002-07-22 Thread Frank Gerard
All: When making a SOAP call (using the Axis client), can you tell Axis to route the request through an HTTP Proxy server instead of making a direct connection to the target? If so, how? Thanks in advance! Frank Gerard Join 18 million Eudora users by signing up for a free Eudora Web-Mail a

Problem running the examples

2002-07-22 Thread Drumm, Christian
hi, i'm new to axis and have a problem getting the examles from the userguide running. i installed tomcat 4.0.4 and axis beta 3. i followed the instructions of the userguide. i guess the installation is fine because when i use the validate jsp all required libs are found. now i tried the calculato

AW: returning an array of strings

2002-07-22 Thread Gerrit Quast
if you are using the wsdl2java-tool, you don't have to add any mappings, since String[] is supported by default. Gerrit -Ursprüngliche Nachricht- Von: Manolis Floros [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 22. Juli 2002 17:56 An: [EMAIL PROTECTED] Betreff: RE: returning an array

Help needed with setting up an Axis call

2002-07-22 Thread Boris_Paskalev
Hi, Did anyone know how an Axis call can be set up in order to add a dom.Element to the SOAPenvelope. This could be done using SOAP call with params.addElement(new Parameter("doc", org.w3c.dom.Element.class, doc, Constants.NS_URI_LITERAL_XML));, but what will be the Axis way? Thanks Boris

Document Style Service

2002-07-22 Thread Sullivan, Mark E
Can anyone tell me the correct signature for a method in a message style service? I've gotten this to work: public Element[] PurchaseOrder(Vector elems) throws AxisFault { but it seems like there has to be a better way. thanks, mark

RE: rpc-literal and document-literal

2002-07-22 Thread Frank Cohen
Good reply message Ted. Your "we don't know yet" answer is my take on Web Services too. I've been testing Web Service based systems for the past two years and the variety and complexity of systems is huge. It brings new meaning to the old words "your results may vary." hehe Some of the things

Problem using AdminClient

2002-07-22 Thread Drumm, Christian
hi i tried to run one of the examples in user_doc. when executing java org.apache.axis.client.AdminClient deploy.wsdd i get the following messages: Jul 22, 2002 11:39:20 AM org.apache.axis.client.AdminClient process INFO: Processing file deploy.wsdd Jul 22, 2002 11:39:21 AM org.apache.axis.clie

Re: Could not find deserializer for type ... string[unbounded]

2002-07-22 Thread ian_roughley
I have sucessfully returned Vectors and string arrays - the catch is that you cannot use java2wsdl & wsdl2java to generate the deployment descriptors or stubs. You will need to code them by hand. /Ian ---

RE: [Namespace] : personnalize namespace prefix

2002-07-22 Thread St-Germain, Sylvain
Pascal, I do not know your motivation but you seems to be taking the wrong route, namespace prefix are irrelevant, you should not rely on them, you will get burn when doing your interoperability testing, SOAP::Lite will do something else, so will dotNet Sylvain. -Original Message

Re: Could not find deserializer for type ... string[unbounded]

2002-07-22 Thread Helen L Rehn
Oh, ouch. Support for arrays was the main reason I wanted so badly to move up to beta-3. At the moment, I am prevented from using the nightly build because I want to use wstk from IBM, and even the very latest wstk uses beta-3. Are there any suggestions for how I might work around this? (We

RE: rpc-literal and document-literal

2002-07-22 Thread Ted Neward
JAXRPC, as its name implies, seems to be intended for WebServices that can be described (and therefore be supported by tools and code-generative utilities) by WSDL, whereas JAXM deals much more directly with the SOAP packets themselves. I suppose an analogy here would be "do you want to crack the

Re: Could not find deserializer for type ... string[unbounded]

2002-07-22 Thread scheu
Try a nightly build. Processing for has been improved. Rich Scheuerle IBM WebSphere & Axis Web Services Development 512-838-5115 (IBM TL 678-5115) Helen L Rehn/Durham/IBM@IBMUS 07/22/2002 11:40 AM Please respond to axis-user To: [EMAIL PROTECTED] cc: Subjec

Could not find deserializer for type ... string[unbounded]

2002-07-22 Thread Helen L Rehn
Hi, I'm finally well on my way with my beta 3 upgrade. Now I have a wrapped style service that appears to be working correctly except for arrays. I have the following in my wsdl: this maps to an array of strings in the return type of a method. I used wsdl2java to generate my server si

Re: Supported Collection Types

2002-07-22 Thread Rathert Jonas (Platinion)
Hi Cyrus, thank you for the quick answer. >Axis supports the data types specified in JAX-RPC 1.0 with > the addition > of: > [...] > ArrayList Unfortunately this exactly does not work in my small example. Using ArrayList in my "original" interface, it becomes java.lang.Object[] in t

No Deserializer found to deserialize a 'http://schemas.xmlsoap.org/soap/envelope/:Parameter

2002-07-22 Thread Boris_Paskalev
Hi I have a problem that I've been trying to tackle for a week now. I'm trying to send a dom.Element and a String as parameters to Service. I used java2WSDL and WSDL2java to generate stubs for the call. If I only have Strings being passed as arguments I have no problems, but when I try to pass th

RE: returning an array of strings

2002-07-22 Thread Manolis Floros
Hi all, how should i declare the return type for an array of Strings, in the call object initialization? The service is: public String[] getKeysWS(String servicename)   thanks Manolis

RE: Including SOAP header information in WSDL

2002-07-22 Thread St-Germain, Sylvain
I doubt since Axis do not yet managed SOAP header from the WSDL. Sylvain. -Original Message-From: Jerry Thomas [mailto:[EMAIL PROTECTED]]Sent: Monday, July 08, 2002 10:58 PMTo: Apache Axis Users GroupSubject: Including SOAP header information in WSDL Apparently, .NET

Re: Authentification/Authorization MS-Soap-Client -->AXIS-Soap-Service

2002-07-22 Thread Oliver Rettig
thanks for your help, I will try it. > Hello Oliver, > > since I'm using the Visual Studio, I can only give you a hint for > this: > > After generating the ClientStub, there are several properties > accessible on the service-class. to use BasicAuthentication, you > have to provide username, passw

RE: Supported Collection Types

2002-07-22 Thread Hurst, Cyrus
Hi Jonas, Axis supports the data types specified in JAX-RPC 1.0 with the addition of: Bean Enumeration Map Vector Collection ArrayList and List Regards, -Cyrus -Original Message- From: Rathert Jonas (Platinion) [mailto:[EMAIL PROTECTED]] Sent: M

Problem creating simple Web Service using JBuilder - IndexOutOfBoundsException

2002-07-22 Thread Charlesworth, Chico
  Hi,   I'm trying to create a simple Web Service using JBuilder (which in turns uses Axis) and I get the following fault response. Appended are my xsd and wsdl files.   Can anyone see what I am doing wrong?          ns1:Server.userException    java.lang.IndexOutOfBoundsExce

Supported Collection Types

2002-07-22 Thread Rathert Jonas (Platinion)
Hi there, I'm new to this list, so at first a "Thank you!" to all the developers of axis. I just started with WebServices, and I appreciate to have an implementation that I can use to learn how to do it "the right jaxrpc way", without having to use the \HUGE Sun WSDP. One thing I miss in ax

Re: AW: Deloy a web service

2002-07-22 Thread Th Templ
Thanks for your answer. I don't see that axis.war contains all the classes of samples... Templ >From: "Stocker, Walter" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: [EMAIL PROTECTED] >Subject: AW: Deloy a web service >Date: Mon, 22 Jul 2002 14:16:30 +0200 > >Hello, > >if you deploy a s

basic authorization

2002-07-22 Thread Volkmann, Mark
Title: basic authorization I've learned how to use basic authentication and authorization from the Wrox Axis book. However, one thing I find confusing is specifying which users are authorized to use a given service. It seems that this must be specified in two places. 1) in the perms.lst file

RE: NS_URI_LITERAL_XML in AXIS

2002-07-22 Thread Boris_Paskalev
Hi everyone, I'm getting the following error when I try to use the new Axis' beta 3 release, encoding to send dom.Element as parameter to a service. I've did the following thing and I still get No Deserializer found. No Deserializer found to deserialize a 'http://schemas.xmlsoap.org/soap/enve

AW: Deloy a web service

2002-07-22 Thread Stocker, Walter
Hello, if you deploy a service, a entry is added to the WEB-INF/server-config.wsdd file in the axis webapp directory. The informations for the entry are from the deploy.wsdd file. With the entry in the WEB-INF/server-config.wsdd file a fully qualified classname is bound to the urn of the SOAP-Ser

Deloy a web service

2002-07-22 Thread Th Templ
Hello, I read this user guide on the Axis web site, but I have questions about how to deploy a webservice and its mechanism. I use to deploy the following command: java org.apache.axis.client.AdminClient -lhttp://localhost/axis/services/AdminService deploy.wsdd It works fine and I can successfu

Deloy a web service

2002-07-22 Thread Th Templ
Hello, I read this user guide on the Axis web site, but I have questions about how to deploy a webservice and its mechanism. I use to deploy the following command: java org.apache.axis.client.AdminClient -lhttp://localhost/axis/services/AdminService deploy.wsdd It works fine and I can successfull