Re: How to get get the SOAPMessage reference from the Axis client while using WSDL2JAVA utiliity

2003-06-26 Thread Reynardine
Chandra, See http://www-106.ibm.com/developerworks/webservices/library/ws-jaxrpc2/?dwzone=webservicesand http://www.cs.unc.edu/Courses/comp190/docs/documentation/axis/apiDocs/org/apache/axis/message/package-tree.html e.g. Public class AcmeSOAPHeaderHandler extends GenericHandler{ Public Boolean

Re: WSDL Parameter Names

2003-06-26 Thread Reynardine
Mark, In two stages... first just before generating your WSDL, recompile all your code with debug, then,when you generate your WSDL, pass the path to the implementation class (that contains all your parameter names) by supplying the -i parameter. e.g. for java... classesjavac -g yourpath\ws\*.java

Re: WSDL2Java bug? or my misunderstanding

2003-06-23 Thread Reynardine
Mark, Before trying ant/build.xml, you could try running WSDL2Java manually from the command line to see what you get i.e. java org.apache.axis.wsdl.WSDL2Java -o . -d Session -s -p yourpath.ws yourwsdlfilename.wsdl dir yourpath\ws\*.* Then, if this works you know WSDL2Java runs ok on

RE: AdminClient reports no errors, but service not deployed

2003-06-19 Thread Reynardine
Michael, Might be worth checking your Tomcat's server.xml to double check your axis context and to confirm that localhost maps to the webapps directory. Then you could retry your deploy and list commands using a different command line e.g. java org.apache.axis.client.AdminClient

Lost service method parameter names when deploying

2003-06-19 Thread Reynardine
Hello, I have deployed my new service under Tomcat/Axis. The problem is that all my helpful parameter names have been lost during the transformation. My original code had useful names like mYearofBirth CountryOfBirth but these have been transformed into names like (String in1, String in2)...

Problem where Java2WSDL\WSDL2Java converts Dates to Java.util.Calendar

2003-06-18 Thread Reynardine
Hello, A fairly newbie question. To deploy a service I've run Java2WSDL and then WSDL2Java on my implementation class. One method in this class has these parameters: public double getAccruedCoupon( Date mSettlementDate, Date mLastCouponDate, double

Re: Handling complex response type

2003-06-18 Thread Reynardine
Michael, you might try something like... java.lang.String xmlString = getWeather(); SAXParserFactory spf = SAXParserFactory.newInstance(); spf.setNamespaceAware(true); spf.setValidating(dtdValidate || xsdValidate); SAXParser saxParser = spf.newSAXParser(); XMLReader xmlReader =

Re: Handling complex response type

2003-06-18 Thread Reynardine
n("Sent: '" + args[0] + "', got: '" + ret + "'");} catch (Exception e) { System.err.println(e.toString()); } } } Thanks, Michael SobczakNuTechs, Inc.6785 Telegraph Road, Suite 350Bloomfield Hills, MI 48301pager: (248) 316-6524 " Reynardine" <[EMAIL

RE: www.webservicex.net has gone ?

2003-02-10 Thread Reynardine
over the weekend affecting lots of servers, maybe it got hit? -Original Message- From: Reynardine [mailto:[EMAIL PROTECTED]] Sent: Monday, January 27, 2003 1:34 PM To: [EMAIL PROTECTED] Subject: www.webservicex.net has gone ? I had an axis web service client working using

RE: Calling axis web services from JavaScript

2003-02-04 Thread Reynardine
I got a web service client working using java/javascript. It uses 'pushlets.jar' ( see http://sourceforge.net/projects/pushlets/ ) which implement a publish/subscribe design pattern. Browsers subscribe to a specific web service client running on Tomcat. The client (java servlet) calls the

Re: SAXParser throws carriage returns away

2003-01-28 Thread Reynardine
I had some SAXParser problems handling special characters in XML. If you find you want to add hand coded character handling methods, I found the following links helpful: http://www.peerfear.org/alexandria/content/html/jxr/org/apache/xalan/xpath/xml/FormatterToHTML.html and

www.webservicex.net has gone ?

2003-01-27 Thread Reynardine
I had an axis web service client working using the WebserviceX's stockquote service? Over the weekend the site is now dead. Does anyone know what happened ? -- Rey -- __ Sign-up for your own FREE Personalized E-mail at Mail.com

Happyaxis.jsp fails when upgrading to Java 1.4

2002-11-22 Thread Reynardine
Hello, Please can someone help. My axis 1.0 installation was fine under Tomcat 4.0.4 and Java 1.3. Then because of some JSTL problems with Java 1.3 I upgraded to Java 1.4. Tomcat 4.0.4 is still ok and I can compile and run jsp's and servlets. However, Axis is now broken when I validate and

Re: Happyaxis.jsp fails when upgrading to Java 1.4

2002-11-22 Thread Reynardine
ect: Re: Happyaxis.jsp fails when upgrading to Java 1.4 - Original Message ----- From: " Reynardine" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, November 22, 2002 7:39 AM Subject: Happyaxis.jsp fails when upgrading to Java 1.4 Hello, Please can som

Re: webservices list, google search query

2002-11-18 Thread Reynardine
Some more web services are on http://www.webservicex.net/ Also see the IBM UDDI and the Microsoft UDDI i.e. http://uddi.microsoft.com/search/frames.aspx?frames=truesearch=a6d2e0ea-cad4-47eb-9f11-70ea618e4efb -Rey - Original Message - From: RXZ JLo [EMAIL PROTECTED] Date: Wed, 13 Nov

Re: java.lang.NoClassDefFoundError is plaguing me

2002-11-08 Thread Reynardine
While its not a permanent or architecurally satisfactory solution ... have you tried copying jdom.jar to the Tomcat/common/lib directory ? I fixed a similar problem this way. -Rey - Original Message - From: [EMAIL PROTECTED] Date: Fri, 8 Nov 2002 11:49:17 -0700 To: [EMAIL PROTECTED]

How to trap HTTP refresh in a requestcontroller servlet

2002-11-08 Thread Reynardine
Apologies this is not an axis question but if anyone knows I'd be grateful. I have a requestcontroller servlet and several 'view' jsp's. I want to trap the reload event in order to re-initialise the whole app when the user hits refresh/reload/F5. My servlet has init(), destroy()) methods but

How to pass a structure or class to a web service and get the modified class back?

2002-11-06 Thread Reynardine
To call a web service from a servlet passing a string parameter I can do.. call.addParameter( symbol, XMLType.XSD_STRING, ParameterMode.IN ); But how do I pass a structure or a class to a web service and receive the same (modified) class back? Is this right or nearly right ? Cain able

Re: is nagoya.org working? connection refused

2002-11-01 Thread Reynardine
There is an 'IP tester' web service on xmethods. It can test is a site is 'down'. See http://www.xmethods.net/ve2/ViewListing.po?serviceid=14 Here is the java command line client and the output I get for nagoya.org package tcpip.ws; public class TCPIPTester { public static void main(String

Problem consuming web services from a servlet

2002-10-31 Thread Reynardine
Hi, I am quite new to Axis and can deploy and test some simple services from the command line. I want to consume these services from a servlet. For example, I've tried Eric Jung's example on http://marc.theaimsgroup.com/?l=axis-userm=102942726001805w=2 I'm using Tomcat and 'normal' servlets

Re: Problem consuming web services from a servlet

2002-10-31 Thread Reynardine
(ie: WEB-INF/lib). The NoClassDefFoundError implies that the class was found at compile time but it's not found at runtime. Regards Francisco Andrades Grassi www.NextJ.com On Thu, 2002-10-31 at 10:57, Reynardine wrote: Hi, I am quite new to Axis and can deploy and test some simple

Re: TestClient problem. (Connection refused).

2002-10-25 Thread Reynardine
So long as I specify the -l switch on the command line e.g. java fibonacci.FibonacciTester -lhttp://localhost/axis/servlet/AxisServlet Fibonacci(10) = 55 things work ok. -Rey - Original Message - From: Fadly [EMAIL PROTECTED] Date: Fri, 25 Oct 2002 22:43:03 +0700 To: [EMAIL

RE: Beginner here

2002-10-23 Thread Reynardine
To deploy try something like this ... Locate the deployment descriptor for the sample stock web service, cd to this directory and execute the deploy command: cd D:\ApacheApps\Tomcat\webapps\axis\samples\stock java org.apache.axis.client.AdminClient

Fibonacci example : AdminClient java error when deploying

2002-10-22 Thread Reynardine
I am deploying the fibonacci service example on http://www.onjava.com/pub/a/onjava/2002/06/05/axis.html?page=2 Can anyone assist with the error I get when I deploy with AdminClient ? java -verbose org.apache.axis.client.AdminClient deploy.wsdd [Loaded org.apache.axis.utils.DOM2Writer] -

Re: Fibonacci example : AdminClient java error when deploying

2002-10-22 Thread Reynardine
Fixed connection refused error by using java org.apache.axis.client.AdminClient -llocal://AdminService (list or deploy ) instead of java org.apache.axis.client.AdminClient (list or deploy) (see http://xml.apache.org/mail/axis-user/200112 ) -Rey --

Re: AW: what might be wrong? Please help me.

2002-10-21 Thread Reynardine
For flexibility some people put all their jars in /webapps/axis/../lib and keep *no* jars in common/lib. Then they add /webapps/../lib to the Tomcat list of java endorsed dirs. To do this, edit setclasspath script in Tomcat/bin, make your change and restart Tomcat. I prefer not to do this. I

Re: what might be wrong? Please help me.

2002-10-21 Thread Reynardine
It looks as though Tomcat is running from or has been started from a different classpath to yours and it does not know about your classpath. Try starting a new xterm session from your .cshrcand restart Tomcat from this session? -Rey- Original Message -From: Emma Johansson <[EMAIL

Re: Amount Currency Converter webservice

2002-10-18 Thread Reynardine
Three other currency conversion services are published and documented on www.xmethods.net. Specifically http://www.xml-webservices.net/services/conversions/euro_convert/euro_conver.asmx?WSDL http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl

Re: Changing Axis parser

2002-10-15 Thread Reynardine
In the Tomcat startup file, $JAVA_HOME/jre/lib/endorsed points to ../tomcat/common/lib . Trying xerces 1 and xerces 2, I found Axis looks here for its parser jars. So if you're running Axis under Tomcat (probably not if you're running XP) be aware of the web server startup file when adding

Axis 1.0, Tomcat 4.0.4, JDK 1.3.1 on Windows 98 SE

2002-10-13 Thread Reynardine
I've got this working on my laptop. If any Win98 users are having installation trouble, send me an email and I'll reply with my configuration. Two points of interest. I have Soap 2 and Axis 1.0 both running under Tomcat without problems. My xerces 2.2.0 jars are currently in

Axis and Tomcat 3

2002-10-10 Thread Reynardine
Hello, I am new to the list and have checked the Axis FAQ's but cannot find an answer to this question. Can Axis work on Tomcat 3 ? I know Tomcat 4 is better but I am using a web host running Tomcat 3 shared by many users who are happy with Tomcat 3. I would prefer to install and use Axis