使用 SudzC 传递参数

发布于 2024-11-30 13:33:28 字数 391 浏览 2 评论 0原文

我昨天发现了一个将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乄_柒ぐ汐 2024-12-07 13:33:28

您可能需要将 string 转换为 int ,反之亦然。检查生成的代码以查看 sudzc 声明的内容。

NSString *string = blah;
int value = [string intValue];

you might need to convert string to int or vise versa. check the generated code to see what sudzc declared it as.

NSString *string = blah;
int value = [string intValue];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文