aspose file tools
The moose likes Web Services and the fly likes WebServices with WTP and Jboss4.0.4 Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Web Services
Reply Bookmark "WebServices with WTP and Jboss4.0.4" Watch "WebServices with WTP and Jboss4.0.4" New topic
Author

WebServices with WTP and Jboss4.0.4

Nuno Furtado Furtado
Greenhorn

Joined: Oct 25, 2006
Posts: 1
We currently developing a big Enterprise Application, and we need to deploy several webservices.

For that we have created a Dynamic wep Project.

In that project we have created a simple class :
public class ProcMultaWS {

public ResultadoProcMulta processarMulta(XmlMulta multa){

ProcessaMultaACC acessor = new ProcessaMultaACC();
return acessor.processarMulta(multa);
}
public String hello(XmlMulta multa){
ProcessaMultaACC acessor = new ProcessaMultaACC();
return "POIS � J� FUNCA";
}
}

nothing fancy.

so we are trying to use the WTP Wizzard to generate the WebService.

First if i create the service using the Start Service it gives me a Axis AdminService error.

If i just start the Server on its own with the EAR it doesnt start my service. i've added the following entries to my web.xml

and i find it starts the Version and Admin Services but i doesnt start mine :S

need some help

let me know what other info you might need
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: WebServices with WTP and Jboss4.0.4
 
Similar Threads
How do i correct this error
Bridge between REST & WS
How to make an Axis web service start/deploy/work automatically
Making my own servlet (for the first time...)
The AXIS engine could not find a target service to invoke