Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-21 Thread Stephane Roy
Glen Mazza wrote: Could you possibly be using the (older) Crimson parser instead of Xerces? IIRC Crimson has problems with namespaces--which may account for the error that you are getting. I believe Crimson is the default with JDK 1.4. I'm using Java 1.5 and Tomcat5.5. With Axis2.1.1.1, the W

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-21 Thread Glen Mazza
Could you possibly be using the (older) Crimson parser instead of Xerces? IIRC Crimson has problems with namespaces--which may account for the error that you are getting. I believe Crimson is the default with JDK 1.4. In addition, to simplify your problem, you may wish to run the simple POJO exa

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-21 Thread Stephane Roy
Hi Anil, A few days ago, I submitted a message on the mailing list about the problem to display the WSDL in the browser, with Axis2.1.2. The full message is there: http://marc.info/?l=axis-user&m=117915706112761&w=2 It seems you have found the solution for this problem. Could you tell me how

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-18 Thread Glen Mazza
Cool. Glen Am Freitag, den 18.05.2007, 12:14 -0700 schrieb Anil Chukkapalli: > Glen > > I figured it out. > > Thanks > Anil > > On 5/18/07, Anil Chukkapalli <[EMAIL PROTECTED]> wrote: > Glen > > I tried it out using the admin utility and it still does not > w

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Glen Mazza
No, I don't think so. 5.5 should be fine. Go back and place the axis2.war file into the Tomcat webapps directory. Can you access and log into the Axis2 Admin URL at http://localhost:8080/axis2/axis2-admin? (userid/pwd: admin/axis2)? For available services, does it show the "Version" service? Th

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Anil Chukkapalli
Glen Thanks for taking time out to explain everything. I did validate the tomcat install before and executed the sample JSP applications. I am using Tomcat 5.5 instead of Tomcat 6.X as that is present on my deployment box. Can this be an issue. Thanks Anil On 5/17/07, Glen Mazza <[EMAIL PROTECT

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Glen Mazza
Anil, Sorry you're having so many difficulties. Perhaps the tutorial you are using--and I had previously suggested, alas--isn't very good, as you are having too many problems getting it to work. A newbie-level tutorial should not be causing that much difficulty--it should be making things easy f

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Anil Chukkapalli
Hi the code for "HelloWorld.java" is shown below "package org.HelloWorld; public class HelloWorld { /*This echo metod is going to be exposed as a web service */ public String echo(String val){ return val; } }" the services.xml file is also shown below " Hello

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Anil Chukkapalli
Hi I am using the tomcat to deploy my web service,i placed the axis2.war file in the webapps folder. Then i placed the .aar file in "Tomcat 5.5\webapps\axis2\WEB-INF\services". The problem is that I am getting this error message when i try to see the wsdl " http://localhost:8080/axis2/service

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Glen Mazza
Sorry, I've never used SimpleHTTPServer before, so I'm unsure. I would recommend getting the AXIS2.WAR file from the downloads, and installing it on Tomcat instead of using SimpleHTTPServer. Then install your web services within the Axis2 web application. If you don't know how to use Tomcat,

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Anil Chukkapalli
Hi Another newbie question. In the tutorial "http://wso2.org/library/95"; ". The axis2-std-SNAPSHOT-bin distribution comes with a "bin" directory which contains a Linux shell script and a Windows batch file to start the SimpleHTTPServer: http-server.sh and http-server.bat Start the server pointi

Re: [Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Glen Mazza
Quite Literally: http://wso2.org/library/95 Also, here's my attempt: http://www.jroller.com/page/gmazza?entry=creating_a_web_service_with For more articles, check the library at WS02 (http://wso2.org/library) and the Axis knowledge base (http://ws.apache.org/axis2/articles.html). Glen Am Donne

[Axis2] A hello World Example for Axis2 deployment

2007-05-17 Thread Anil Chukkapalli
Hi I am an newbie in Axis2 deployment. Can anyone provide me with a hello world example for deploying an Axis2 web service in Java. Thanks Anil