Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Axis 2 创建一个 Java Web 服务,它获取一个自定义 MyClass 对象作为参数。例如:
public MyService{ public String serviceMethod(MyClass myObject){ return myObject.getUsername(); } }
是否可以将 MyClass 对象发送到服务并获得响应?谢谢你。