我必须使用RPC XML SOAP web服务,我只是尝试通过web服务提供者提供的wsdl创建存根和定位器。现在,当我为了调用服务方法而创建XXXstub类的对象时。我在线程"main“javax.xml.rpc.ServiceException中得到异常:接口没有存根实现。
下面是我试图创建定位器和存根对象以调用服务方法的代码。
现在我正在部署到windows server 2008标准系统上,如果我在该系统上以调试模式运行我的应用程序,调试输出除了常规内容外,还列出了几十行代码:
RPC: Using rpcns4.dll.现在我不知道RPC是否会影响我,而且我知道我为我的应用程序编写的代码与RPC相去甚远,所以我得出结论,RPC的东西来自于外部API。
我创建了默认的"hello world“GWT应用程序,并注意到它有以下默认代码: * Create a remote service proxy to talk to the server-side Greeting service.private final GreetingServiceAsync greetingService = GWT.create(GreetingService.class);@RemoteServiceRelativePath("greet")
p