我正在开发我的第一个Web服务。
客户端是使用JavaScript开发的。
我的问题是它不起作用。我不知道我的问题是什么。
我认为客户端网站上存在错误。 我尝试使用Java Web服务客户端并在那里工作。
Web的服务:
import javax.jws.*;
import javax.jws.soap.SOAPBinding;
@WebService(name="TicketWebService", targetNamespace = "http://my.org/ns/")
@SOAPBinding(style = SOAPBinding.Style.RPC)
public class TicketWebService {
@WebMethod(operationName="getContact")
public String getContact()
{
return "Hallo Hans!!!";
}
}
在服务器上发布:
import javax.swing.JOptionPane;
import javax.xml.ws.Endpoint;
public class PublishWsOnServer
{
public static void main( String[] args )
{
Endpoint endpoint = Endpoint.publish( "http://localhost:8080/services",
new TicketWebService() );
JOptionPane.showMessageDialog( null, "Server beenden" );
endpoint.stop();
}
}
客户端:
<html>
<head>
<title>Client</title>
<script language="JavaScript">
function HelloTo()
{
var endpoint = "http://localhost:8080/services";
var soapaction = "http://localhost:8080/services/getContact";
xmlHttp = getXMLHttp();
xmlHttp.open('POST', endpoint, true);
xmlHttp.setRequestHeader('Content-Type', 'text/xml;charset=utf-8');
xmlHttp.setRequestHeader('SOAPAction', soapaction);
xmlHttp.onreadystatechange = function() {
alert(xmlHttp.responseXML);
}
xmlHttp.send(request);
}
</script>
</head>
<body onLoad="HelloTo()" id="service">
Body in Client
</body>
</html>
警报不起作用......
答案 0 :(得分:0)
我是JAX-WS的新手,但我想也许你的问题不在客户端。首先,here你有一个HelloWorld示例工作正常,如果你查看代码,你会看到在Web服务实现中注释WebService被定义为
@WebService(endpointInterface = "com.mkyong.ws.HelloWorld")
这是“TicketWebService”的完整包。另一个区别是该示例定义了一个接口(用@WebService注释标记)然后实现它,包括实现中的@WebService。我不认为这是强制性的,但定义界面是一种很好的做法。