使用 SudzC 传递参数
我昨天发现了一个将 WebServices 与 Objective-C 结合使用的库:Sudzc。 我尝试使用它,但调用方法中的参数有问题。 我这样调用:
SDZMobileActionsBeanService *service = [SDZMobileActionsBeanService service];
[service getListMobileMenuItemByMobileApplicationId:self action:@selector(getApp:) arg0:15];
arg0 是我的参数,当肥皂将请求传输到我的 jboss 服务器时,我看到 arg0 为空。 我也尝试使用 wsdl2objc 库,得到相同的结果。 不知道为什么,有什么建议吗?
谢谢
I discover yesterday a library to use WebServices with Objective-C : Sudzc.
I try to use this and i have a problem with parameters in call methods.
I call like this :
SDZMobileActionsBeanService *service = [SDZMobileActionsBeanService service];
[service getListMobileMenuItemByMobileApplicationId:self action:@selector(getApp:) arg0:15];
arg0 is my argument and when soap transmit request to my jboss server i see that arg0 is null.
I try also with wsdl2objc library it's the same result.
I don't know why, any suggestions?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要将 string 转换为 int ,反之亦然。检查生成的代码以查看 sudzc 声明的内容。
you might need to convert string to int or vise versa. check the generated code to see what sudzc declared it as.