jre6.0加入了对WebService的支持,不用再用开源类库了.
看看这样一段代码:
ver código fuenteprint?01 @WebService(nombre="TestWS",
02 nombredeservicio="PruebaWS")
03 prueba de clase pública {
04 /**
05 * 测试相加方法
06 * @param x
07 * @param y
08 * @retorno
09 */
10 @Método Web
11 público int TestMethod (int x, int y) {
12 retorno x + y;
13 }
14 }
ver código fuenteprint?01 <PRE clase=pincel:java>/**
02 * @autor v.xieping
03 *
04 */
05 Programa de clase pública {
06 /**
07 * @param argumentos
08 */
09 público estático vacío principal (String [] argumentos) {
10 Punto final.publicar(
11 " http://192.168.53.43:8090/CSEventWS/TestWS ",
12 nuevos TestWS());
13 ThreadWaitor.keepWait();
14 }
15 }
16</PRE>
这样使用
ver fuenteprint?1 http://192.168.53.43:8090/CSEventWS/TestWS
ver código fuenteprint?1 这个地址就可以访问到这个WebService。
ver fuenteprint?1
ver código fuenteprint?1
ver fuenteprint?1 1、WSDL问题
ver código fuenteprint?1 不过使用地址<PRE class=brush:java>http://192.168.53.43:8090/CSEventWS/TestWS</PRE>
2 <PRE class=brush:java>还是地址</PRE>
3 <PRE class=brush:java><PRE class=brush:java>http://192.168.53.43:8090/CSEventWS/TestWS?wsdl</PRE>
4 <PRE class=brush:java>在创建nusoap对象时,都不能认为他是wsdl。也就是说这两个地址都是非wsdl的。</PRE>
5 <PRE clase=pincel:java></PRE>
6</PRE>
ver código fuenteprint?1 2、命名空间问题
ver código fuenteprint ?1
ver fuenteprint?1 可以使用 <PRE class=brush:java>http://192.168.53.43:8090/CSEventWS/TestWS?wsdl</PRE>
2 <PRE class=brush:java>这样的地址查看 <definiciones targetNamespace=" http://ws.csevent/ " name="TestWS"></PRE>
3 <PRE clase=pincel:java></PRE>
3、参数问题
一般WSDL地址的参数是和名字相关的。但是这里不是,而要用
$params = array('arg0' => 100,'arg1' => 200);
这种方式定义.
Disponible http://192.168.53.43:8090/CSEventWS/TestWS?wsdl查看
<tipos>−<xsd:schema><xsd:import namespace=" http://ws.csevent/ " esquemaLocation=" http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1"/ </xsd:schema></types><tipos >
−<xsd:esquema>
<xsd:importar espacio de nombres=" http://ws.csevent/ "
esquemaLocation=" http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1 "/>
</xsd:esquema>
</tipos>
Consulte http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1就可以看到用的参数名字.
<xs:complexType nombre="Método de prueba">
−
<xs:secuencia>
<xs:elemento nombre="arg0" tipo="xs:int"/>
<xs:elemento nombre="arg1" tipo="xs:int"/>
</xs:secuencia>
</xs:tipocomplejo>
最终调用为:
注意:以下代码是使用的slightphp框架。实现了对nusoap的初级包装。
$objSoap = nuevo HTTP_SOAP();
$cliente = $objSoap->getClient($this->url,false);
$params = array('arg0' => 100,'arg1' => 200);
$r = $cliente->call('TestMethod',$params ,'http://ws.csevent/','',false,true);
Debug_Util::log($r,"servicio.log");