当前位置:编程学习 > JAVA >>

webservice+cxf开发 xml配置求指导,

<bean id="outLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
-----这句代码什么时候会用到  又怎么用  ?
-------------------------------------
<jaxws:client id="HelloWordClient" 
   serviceClass="client.HelloWord" 
   address="http://localhost:8080/CXFSpring/HelloWordWebService" />
-----这段代码id是随便起名字吗?serviceClass=这里应该写什么 address=这里从8080后边开始写什么?
----------------------------------------
<jaxws:endpoint 
    id="这里是自己起名字吗?" 
    implementor="这里需要怎么写,写那个类的限定名" 
    address="/这里需要怎么写" />
------------------------------------------------
请各位师兄师姐们给予讲解下    请一定要详细   我用的是Myeclipse8.5开发工具 webservice+cxf  开发 Web服务 cxf 开发工具 --------------------编程问答-------------------- 怎么回答你好呢?首先ID都是自己取的,因为类是你自己的写的,ID肯定是自己取的。
关于配置,是不是重复了呢?
可以先试试看,报了什么错。
关于配置的意思最好还是自己领悟,很好有很一个一个字的给你解释的。
可以看看网上的文章
http://www.cnblogs.com/hoojo/archive/2011/03/30/1999563.html --------------------编程问答-------------------- server.xml
<!-- LoginService -->
<bean id="loginService" class="service.impl.LoginService" />

<!-- Expose loginWS -->
<jaxws:server id="loginWS" serviceClass="service.ILoginService" address="/loginWS">
<jaxws:serviceBean>
<ref bean="loginService"/> <!-- 要暴露的引用 -->
</jaxws:serviceBean>
</jaxws:server>

client.xml:
<!-- LoginService Client -->
<jaxws:client id="loginServiceClient" serviceClass="service.ILoginService" address="http://localhost:8080/CXFSpring/loginWS"/> --------------------编程问答-------------------- 能不能写汉字啊!英文更看不懂了!呵呵!
补充:Java ,  Web 开发
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,