如何通过xml保存到数据库

发布于 2024-11-09 13:33:00 字数 267 浏览 0 评论 0原文

我正在调用服务器端 api,它以 xml 格式返回数据库行。我已经解析了。然后我在iphone中编辑了xml。现在我想将更改后的 xml 保存回服务器。然后服务器端 php 脚本将解析 xml 以保存更改以反映在数据库中。我的问题是当我调用 api 时,它返回 xml 响应。但是我怎样才能将 xml 提供给 api.我猜是通过构建 URL 来实现的。如果是的话我应该写什么HTTP请求头?我想我必须使用post方法。我不想使用 SOAP,我想使用 REST。任何人都可以建议有关该主题的任何示例吗? 谢谢 鲁帕安贾安

I am calling a server side api which returns me the DB rows in xml format. I have parsed it. Then I edited the xml in iphone. Now I want to save the xml back to server with the changes. Then server side php script will parse the xml to save the changes to reflect in the database. My question is when I was calling the api , it was returning xml response. But how can I feed the xml to the api. I guess by constructing URL. If so what should I write HTTP request header? I think I have to use post method. I dont want to use SOAP, I want to use REST. Can anyone suggest any sample about this topic?
Thanks
Rupaanjaan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

朮生 2024-11-16 13:33:00

创建一个像这样的请求...

NSMutableURLRequest * request = [[NSMutableURLRequest alloc] init];
[request setHTTPMethod:@"POST"];
[request setURL:[NSURL URLWithString:your-url];
[request setValue:set-appropriate-value forHTTPHeaderField:@"Content-Type"];
[request setValue:set-value forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody:NSData-object-holding-data-you-intend-to-post-on-server];

Create a request like this...

NSMutableURLRequest * request = [[NSMutableURLRequest alloc] init];
[request setHTTPMethod:@"POST"];
[request setURL:[NSURL URLWithString:your-url];
[request setValue:set-appropriate-value forHTTPHeaderField:@"Content-Type"];
[request setValue:set-value forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody:NSData-object-holding-data-you-intend-to-post-on-server];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文