Hello, I've used the quickstart tutorial to generate services, which are visible in a browser, and a client to view the interaction (for the "StockQuoteService"). However, I've had problems making my own from a POJO (specifically, similar to the "Version" demo in quickstart in which contacting the service automatically returns a string). For the simple code I've created, the service is visible in a browser and I can view the wsdl and xsd (though I don't see anything returned, which I can see in the "Version" demo). Now, creating the client I went to the directory where code will be (the service is called GetHTML and the client is GetHTMLClient) and ran
>%AXIS2_HOME%\bin\wsdl2java –ss –g –uri http://localhost:8080/axis2/services/GetHTML?wsdl This populated the directory with build.xml and 2 directories: resources and src. However, continuing with the next step of the quickstart tutorial, "ant generate.client" produced the error: Target generate.client does not exist in the project "null". Looking at the build.xml file, there is no target name with "generate.client" but the project is named ("GetHTML") so I don't see why the project should have been called "null". Also, of course, the build.xml file needs to be set up with "generate.client" to begin with. What do I need to do to get past this step? Thanks, Barney