刚接触CXF,自己写的服务端和客户端例子,正常发布,客户端访问异常,求解答

发布于 2021-11-17 04:28:45 字数 3880 浏览 810 评论 0

 

这样的 我在myEclipse中建了两个工程 一个普通的java工程 一个是web工程,部署在tomcat中, java工程里面一个接口,一个实现类,一个发布类,代码如下

IHelloWorld接口

package server; 

import javax.jws.WebParam; 

import javax.jws.WebService; 

@WebService  

public interface IHelloWorld { 

    //加入WebParam注解,以保证xml文件中参数名字的正确性  

    String sayHi(@WebParam(name="text") String text); 

}

HelloWorldImpl 实现类

package serverImpl; 

import javax.jws.WebService; 

import server.IHelloWorld;

@WebService (endpointInterface = "server.IHelloWorld", serviceName = "HelloWorld") 

public class HelloWorldImpl implements IHelloWorld { 

    public String sayHi(String text) { 

        System.out.println("sayHi called"); 

        return "Hello " + text; 

    } 

}

serviceTest发布类

package run;

import javax.xml.ws.Endpoint; 

import serverImpl.HelloWorldImpl;

 

public class ServiceTest { 

 

    protected ServiceTest() throws Exception { 

        // START SNIPPET: publish  

        System.out.println("Starting Server"); 

        HelloWorldImpl implementor = new HelloWorldImpl(); 

        String address = "http://localhost:9000/helloWorld";

        Endpoint.publish(address, implementor); 

        // END SNIPPET: publish  

    } 

    public static void main(String args[]) throws Exception { 

        new ServiceTest(); 

        System.out.println("Server ready..."); 

        Thread.sleep(5 * 60 * 1000); 

        System.out.println("Server exiting"); 

        System.exit(0); 

    } 

在新建的web工程里面,把java工程中的IHelloWorld接口连包一起考过去,然后在index.jsp中写上一段java代码 如下:

    ClientProxyFactoryBean factory = new ClientProxyFactoryBean();

    factory.setAddress("http://localhost:9000/helloWorld");

    factory.getServiceFactory().setDataBinding(new AegisDatabinding());

    IHelloWorld ser=factory.create(IHelloWorld.class);

    ser.sayHi("hello~~-v-");

运行发布类 java工程中的ServicTest(发布5分钟),然后运行tomcat访问web工程中的index.jsp页面,报错如下~~自己找了好久也没找到解决办法,请问大家能够告诉我哪里做错了么?

Interceptor for {http://serverImpl/}HelloWorld#{http://server/}sayHi has thrown exception, unwinding now

org.apache.cxf.interceptor.Fault: Unmarshalling Error: 意外的元素 (uri:"http://server/", local:"arg0")。所需元素为<{}text>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文