我是使用灵活办法的,并试图利用网络服务。
这一网络服务参考了科学、技术和科学研究所的若干档案。 这些XSD文件遵循这一“顺序”:
<call.xsd>
<input.xsd>
</input.xsd>
<output.xsd>
<struct1.xsd>
</struct1.xsd>
<struct2.xsd>
</struct2.xsd>
<struct3.xsd>
</struct3.xsd>
</output.xsd>
</call.xsd>
在“网络监测”上,有成千上万人向“结构XSD”要求,没有结果或过错。
在这里,我如何宣布网络服务:
<s:WebService id="myService" wsdl="http://localhost:9080/Path/WebServiceName.wsdl"
concurrency="single">
<s:operation name="call_WebServiceOperation" result="resultHandler(event)"
fault="faultHandler(event)" resultFormat="object" />
</s:WebService>
在这里,我是如何发起:
public var request:Request
private function init():void {
request = new Request("param1", "param2", "param3", "param4", "param5", "param6");
myService.call_WebServiceOperation(request);
}
这里是处理事件的Im:
protected function resultHandler(event:ResultEvent):void
{
// TODO Auto-generated method stub
} -> Debugging here
protected function faultHandler(event:FaultEvent):void
{
Alert.show(event.fault.faultString);
}
Any ideas why this is?