我尝试为Axis2创建Web服务。 我使用eclipse和“Axis2 Service Archiver”从java类创建aar文件。 我的问题是我有返回自定义类的函数,如:
public TestClass TestFunc(){
return new TestClass();
}
我的问题是我的客户如何知道什么是TestClass? ,TestClass不会显示在wsdl文件中。
谢谢你的帮助
答案 0 :(得分:1)
如果可以看到操作TestFunc()出现在WSDL中 - 您应该能够在WSDL中看到与TestClass对应的类型。如果你看不清楚,WSDL如何在WSDL中显示TestFunc()的返回类型..?
谢谢..