c***c 发帖数: 6234 | 1 1. C++ can not call a Java Web Service which return an Object. Right? I have
to call a C++ described Web Service Right?
2. Is it possible that a method returns multiple parameters, such as
String Method (Class1 obj1, Class2 obj2, Class3 obj3)
obj2 and obj3 are empty and after I call Method(1,obj2,obj3), I get value back
Thanks | c*****s 发帖数: 214 | 2
webservcie是和语言无关的。它用WSDL描述,通讯的内容是soap,协议理论上没限制一般
是http。所以没有返回java对象的webservice,也有没有用C++描述的webservice。每种
语言的webservice工具包里应该有把消息拿出来和自己对象/结构绑定的工具。
当然可以。返回的消息内容格式是定义在wsdl里的xml,可以是任何xml结构。
back
没看明白
【在 c***c 的大作中提到】 : 1. C++ can not call a Java Web Service which return an Object. Right? I have : to call a C++ described Web Service Right? : 2. Is it possible that a method returns multiple parameters, such as : String Method (Class1 obj1, Class2 obj2, Class3 obj3) : obj2 and obj3 are empty and after I call Method(1,obj2,obj3), I get value back : Thanks
| s*********n 发帖数: 38 | 3 why not define a class containing the three objects, then you can pass and
return an object of this type.
have
般
种
【在 c*****s 的大作中提到】 : : webservcie是和语言无关的。它用WSDL描述,通讯的内容是soap,协议理论上没限制一般 : 是http。所以没有返回java对象的webservice,也有没有用C++描述的webservice。每种 : 语言的webservice工具包里应该有把消息拿出来和自己对象/结构绑定的工具。 : 当然可以。返回的消息内容格式是定义在wsdl里的xml,可以是任何xml结构。 : back : 没看明白
| A**o 发帖数: 1550 | 4 Or just use a collection object, say Colletion, List, Set, Map...
一
每
value
【在 s*********n 的大作中提到】 : why not define a class containing the three objects, then you can pass and : return an object of this type. : : have : 般 : 种
|
|