Exception during startup processing

2002-02-22 Thread Mike Brown
I've got a web service using Tomcat/Axis that implements org.apache.catalina.LifecycleListener. I have an entry in my server.xml file that looks like: My problem is that when it tries to instantiate the class, I get the following exception: Caused by: java.lang.NoClassDefFoundErro

Business rules

2002-02-22 Thread Didier Girard
Hello, I have a very simple service (echo) : public interface EchoServices { public String callService(String in_input); } But the length of in_input should not exceed 10 characters. How can I export this business rule to the WSDL ? -> with XML Schema ? Ok, but could Java2WSDL do it for me ?

JAX-RPC DII query

2002-02-22 Thread Glyn Normington
I'm trying to code a call to the echoLinkedList method of a SOAP interoperation round 3, group E test. The WSDL may vary slightly from implementer to implementer and I want to be able to run a single test client against WSDL URL passed in via the command line, so I'm using DII to issue a method ag

FW: Fault Flow Issues

2002-02-22 Thread Romin Irani
Hi Everyone, This is a followup to my previous mail. Has anyone tried out using in the definitions. If yes, can you provide me with the WSDD syntax for the same. I am using nightly build of Feb 21, 2002. Thanks, Romin. -Original Message- From: Romin Irani [mailto:[EMAIL PROTECTED]] Se

JAXM & Axis

2002-02-22 Thread Rajan Gupta
How will JAXM & Axis play together? Will Axis adopt the JAXM API for send & recv messsages/responses? Thanks __ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com

RE: AW: Problem with message part names in WSDL

2002-02-22 Thread Kirchhoff, Florian
Actually this is the definition of an in/out parameter in the WSDL specifications (http://www.w3c.org/TR/wsdl.html#_parameter) which is why WSDL2Java produces a "Holder" class. Hope this helps. Florian > -Original Message- > From: Russell Butek [mailto:[EMAIL PROTECTED]] > Sent: Friday

Re: AW: Problem with message part names in WSDL

2002-02-22 Thread Russell Butek
Werner, your guess is correct. WSDL2Java is functioning as designed. Russell Butek [EMAIL PROTECTED] Dittmann Werner <[EMAIL PROTECTED]> on 02/22/2002 01:51:48 AM Please respond to [EMAIL PROTECTED] To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]> cc: Subject: AW: Problem with message part n

Problem with deploying sample deploy.wsdd - NoSuchMethodError

2002-02-22 Thread Danny L Yeh
It looks like a JVM problem. This problem was solved by downloading the latest JRE 1.3.1 from Javasoft. Danny Yeh - Forwarded by Danny L Yeh/Watson/IBM on 02/21/2002 09:58 PM -

RE: property files for services

2002-02-22 Thread Adam.Leggett
Put your properties file on your classpath i.e /WEB-INF/classes/ I have this simple class that I use to load props, tho there are lots of different ways to do this using the JDK: import java.util.Properties; import java.io.*; /** * Utility class with static method(s) to load resources for axis