RE: Problem while running Axis sample program

2002-04-11 Thread Casey Swenson
You must give the full path to the deploy.wsdd file if you are not in the same directory as the deploy.wsdd file for the web service you are trying to deploy. For instance the StockQuote sample's deploy.wsdd is located in xml-axis-beta1\samples\stock directory of the axis binary - xml-axis-beta1.

Problem while running Axis sample program

2002-04-11 Thread Jitender Singh Singh
Hi, I am a novice in the field of axis. I have installed and set up everything but i am not able to deploy the sample web service given in the install.html of axis.An early reply would be highly appreciated as it will kickstart my journey into Axis. When i write java org.apache.axis.cli

RE: Unsupported major.minor version 48.0

2002-04-11 Thread Newman, Scott
It is a funny thing.  I shouldn't be getting them.  The Tomcat is using 1.3.1_02, and that's what the web service was made with (as a matter of fact, the exact same ones, because they're both on the same machine), so it makes no sense to me.  I am using the Eclipse build 20020321, so I was

Re: Unsupported major.minor version 48.0

2002-04-11 Thread Ivan Filippenko
I get a similar error when I try to use jdk1.3.1_03 with my Java IDE. It mystified me, so I'm avoiding 1.3.1_03 in favor of either 1.3.1_02 or 1.4.0.  I'd sure be interested in what's up with this, as well!   -- Ivan "Newman, Scott" <[EMAIL PROTECTED]> 04/11/2002 02:47 PM Please respond to

Re: Nullpointer exception when importing schemas

2002-04-11 Thread Chris Burnley
Actually, I am beginning to think it is something else that is causing it. Will add some debugging statements to the Axis source and get back to you. On Thu, 2002-04-11 at 23:12, Russell Butek wrote: > Could we see more of this reasonably simple WSDL file? We've got at least > one test (I think

RE: Unsupported major.minor version 48.0

2002-04-11 Thread Newman, Scott
Correction, that class is throwing the error itself.  I've tried jre 1.4 and 1.3.1_02.  I'm on windowsXP.   Newman   -Original Message- From: Newman, Scott [mailto:[EMAIL PROTECTED]] Sent: 11 April, 2002 4:48 PM To: '[EMAIL PROTECTED]' Subject: Unsupported major.minor version 4

Unsupported major.minor version 48.0

2002-04-11 Thread Newman, Scott
Hi all   Does anyone get this error?  It seems that I don't really get it until I include a utility library that I made that gets included into the class that is called via axis.    Here's the trace:     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appli

Re: RE: Problem with Server

2002-04-11 Thread vpj-cd
thank you very much Sylvain, but now I have this problem: Caught SOAP exception: SOAP Fault: User 'null' not authenticated (unknown user) somebody has idea that this bad? Victor > > De: "St-Germain, Sylvain" <[EMAIL PROTECTED]> > Fecha: 11-Abr-2002 16:42 > Para: [EMAIL PROTECTED] > Asunto: R

RE: Problem with Server

2002-04-11 Thread St-Germain, Sylvain
This happen when your service is not deployed. Axis may be deployed but you need to deploy your stock quote service using something like: java -cp %cp% org.apache.axis.client.AdminClient -lhttp://localhost:8080/axis/services/AdminService deploy.wsdd And copy your classes inside axis's WEB-IN

Problem with Server

2002-04-11 Thread vpj-cd
I receive the error following , somebody has idea that this bad? Caught SOAP exception: SOAP Fault: The AXIS engine could not find a target service to invoke! targetService is null this it is my program client * EasySoap++ - A C++ library for SOAP (Simple Object Access Protocol) #include //

List as a parameter in a web service method

2002-04-11 Thread Martin Hubley
Title: List as a parameter in a web service method Hi, We are looking at Axis as a possibility on a project we are working on. My basic question is can you use the List interface for a parameter in an Axis web service method, or can only ArrayList be used? The gory details follow... I have

RE: Strange think

2002-04-11 Thread Brenda Coulson
that one has me stumped as well. sorry... -Original Message- From: Roman Brückner [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 12:26 PM To: [EMAIL PROTECTED] Subject: AW: Strange think Thanks Brenda, After your hint I checked my parser and am now using the same as the server

AW: Strange think

2002-04-11 Thread Roman Brückner
Thanks Brenda, After your hint I checked my parser and am now using the same as the server, actually it works fine for  two methods in the service one returning a java.util.Date Object the other returning a String, but the one which returns a ComplexType (bean conform) causes the followin

RE: NoSuchMethodError

2002-04-11 Thread Brenda Coulson
oh - ignore my previous comment. Charles is probably right. I was thinking that you had got part of the test running, but you haven't - it is having problems contacting your SOAP service. -Original Message- From: Ng, Charles [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:24

RE: NoSuchMethodError

2002-04-11 Thread Brenda Coulson
if you are not connected to the internet when you run the GetQuote sample, you get this error. I am assuming that lunar0.dev.ubswenergy.com is your local machine? I got this error when I wasn't dialed in the network as the Stock sample does try to get a real-time stock from a public web site/servi

RE: NoSuchMethodError

2002-04-11 Thread Ng, Charles
Is your service listening on port 8080? If not, you have to specify the port too. -Original Message- From: Lou, Zhuoming [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 11:26 AM To: [EMAIL PROTECTED] Subject: RE: NoSuchMethodError That worked. Thanks Charles. I run into anoth

RE: NoSuchMethodError

2002-04-11 Thread Lou, Zhuoming
That worked. Thanks Charles. I run into another problem, when I try to test GetQuote, I got: /vobs/apps/zlou/tomcat4.0.3/webapps/axis/WEB-INF/classes % java samples.stock.GetQuote -lhttp://lunar0.dev.ubswenergy.com/axis/servlet/AxisServlet -uuser1 -wpass1 XXX AxisFault faultCode: http://x

RE: Urgent: Help needed with deployment of my own transport and dynamicprovider in the current build

2002-04-11 Thread Steve Pannier
I have used the method outlined below to provide my own "pivot" handler. One question: My handler extends BasicHandler and contains an init() method. But my handler's init() doesn't ever execute. Any clues as to why this might be? (Every handler in the chain should have it's init() method call

RE: Strange think

2002-04-11 Thread Brenda Coulson
You have an incompatibility with your XML parser - make sure it is JAXP compliant. Furthermore, ensure that your client and server are both using a JAXP compliant XML parser. brenda -Original Message- From: Roman Brückner [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 10:46 A

Strange think

2002-04-11 Thread Roman Brückner
Hi, I have a AXIS WebService which is working fine, if I call it from a .NET client. But when I take the the client code generated by (axis tool) wsdl2java I get the following error:   java.lang.NoSuchMethodError     at org.apache.axis.encoding.DeserializationContextImpl.parse(U

RE: NoSuchMethodError

2002-04-11 Thread Ng, Charles
Make sure you have a JAXP compliant parser in your classpath. -Original Message- From: Lou, Zhuoming [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 11, 2002 10:32 AM To: [EMAIL PROTECTED] Subject: NoSuchMethodError Hi all, I installed axis in Tomcat4.0.3. When I try to run java sam

NoSuchMethodError

2002-04-11 Thread Lou, Zhuoming
Hi all, I installed axis in Tomcat4.0.3. When I try to run java samples.userguide.example1.TestClient The following exception dumps: /vobs/apps/zlou/tomcat4.0.3/webapps/axis/WEB-INF/classes % java samples.userguide.example1.TestClient Exception in thread "main" java.lang.NoSuchMethodEr

AW: Attachment contents access

2002-04-11 Thread Till Woerner
I now use Xerces-J 2.0.1 (seems to be the latest) Greetings, Till -- Caught in our narrowminded believe... - Till Woerner Berlin, Germany EMail:[EMAIL PROTECTED] ICQ#: 7162410 > -Ursprüngliche Nachricht- > Von: Hozefa Botee [mailto:[EMAIL PROTECTED]]

Re: Nullpointer exception when importing schemas

2002-04-11 Thread Russell Butek
Could we see more of this reasonably simple WSDL file? We've got at least one test (I think more) that tests XML imports and they work, so you obviously have something that we don't. Russell Butek [EMAIL PROTECTED] Chris Burnley <[EMAIL PROTECTED]> on 04/11/2002 01:31:51 AM Please respond to