jre6.0加入了对WebService ของ 支持,不用再用เปิด源类库了。
看看这样一段代码:
ดู sourceprint?01 @WebService (ชื่อ = "TestWS",
02 ชื่อบริการ = "TestWS")
03 TestWS ระดับสาธารณะ {
04 /**
05 * 测试相加方法
06 * @พาราม x
07 * @พาราม ย
08 * @รีเทิร์น
09 */
10 @เว็บเมธอด
11 วิธีทดสอบ int สาธารณะ (int x, int y) {
12 กลับ x + y;
13 }
14 }
ดู sourceprint?01 <PRE class=brush:java>/**
02 * @ผู้เขียน v.xieping
03 *
04 */
05 โปรแกรมชั้นเรียนสาธารณะ {
06 /**
07 * @param args
08 */
09 โมฆะสาธารณะคงหลัก (สตริง [] args) {
10 จุดสิ้นสุด.เผยแพร่(
11 " http://192.168.53.43:8090/CSEventWS/TestWS ",
12 TestWS ใหม่ ());
13 ThreadWaitor.keepWait();
14 }
15 }
16 </PRE>
这样使用
ดูแหล่งที่มาพิมพ์ 1 http://192.168.53.43:8090/CSEventWS/TestWS
ดู sourceprint?1 这个地址就可以访问到这个WebService。
ดูแหล่งที่มาพิมพ์?1
ดูแหล่งที่มาprint?1
ดู sourceprint?1 1、WSDL问题
ดู sourceprint?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 class=brush:java></PRE>
6 </PRE>
ดู sourceprint?1 2、命名空间问题
ดู sourceprint?1 但是在这里不是,而变成了http://ws.csevent/ 。
ดู sourceprint?1 <PRE class=brush:java>http://192.168.53.43:8090/CSEventWS/TestWS?wsdl</PRE>
2 <PRE class=brush:java>这样的地址查看 <definitions targetNamespace=" http://ws.csevent/ " name="TestWS"></PRE>
3 <PRE class=brush:java></PRE>
3. 参数问题
一般WSDL地址的参数是和名字相关的。但是这里不是,而要用
$params = array('arg0' => 100,'arg1' => 200);
这种方式定义。
เยี่ยมชม http://192.168.53.43:8090/CSEventWS/TestWS?wsdl查看
<ประเภท>−<xsd:schema><xsd:import namespace=" http://ws.csevent/ " schemaLocation=" http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1"/ ></xsd:สคีมา></ประเภท><ประเภท >
−<xsd:schema>
<xsd: นำเข้าเนมสเปซ = " http://ws.csevent/ "
schemaLocation=" http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1"/ >
</xsd:สคีมา>
</ประเภท>
再继续打เปิด http://192.168.53.43:8090/CSEventWS/TestWS?xsd=1就可以看到用的参数名字。
<xs:complexType name="TestMethod">
−
<xs:ลำดับ>
<xs:ชื่อองค์ประกอบ="arg0" ประเภท="xs:int"/>
<xs:ชื่อองค์ประกอบ="arg1" ชนิด="xs:int"/>
</xs:ลำดับ>
</xs:complexType>
最终调用为:
注意:以下代码是使用的slightphp框架。实现了对nusoap的初级包装。
$objSoap = HTTP_SOAP ใหม่();
$client = $objSoap->getClient($this->url,false);
$params = array('arg0' => 100,'arg1' => 200);
$r = $client->call('TestMethod',$params ,'http://ws.csevent/','',false,true);
Debug_Util::log($r,"service.log");