- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
网络服务建立在 Python 的 Ladon 之上框架。
Web 服务 URL 是:http://ladonize.org/python-demos/Calculator
调用web服务的代码如下:
NSString *requestString = [NSString stringWithFormat:
@"http://ladonize.org/python-demos/Calculator"];
NSString *jsonString = [NSString stringWithFormat:@"{\"methodname\":\"add\",\"args\": {\"a\":\"123\",\"b\":\"123\"}}"];
NSData *jsonData = [NSData dataWithBytes: [jsonString UTF8String] length: [jsonString length]];
NSURL *url = [NSURL URLWithString:requestString];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setHTTPBody: jsonData];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:[NSString stringWithFormat:@"%d", [jsonData length]] forHTTPHeaderField:@"Content-Length"];
NSError *errorReturned = nil;
NSURLResponse *theResponse =[[NSURLResponse alloc]init];
NSData *data = [NSURLConnection sendSynchronousRequest:request returningResponse:&theResponse error:&errorReturned];
if (errorReturned) {
NSLog(@"Error %@",errorReturned.description);
}
else
{
NSError *jsonParsingError = nil;
NSMutableArray *arrDoctorInfo = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers|NSJSONReadingAllowFragments error:&jsonParsingError];
NSString* newStr = [NSString stringWithUTF8String:[data bytes]];
NSLog(@"Dict %@",newStr);
}
我得到了以下回应
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<title>Calculator</title>
<style>
body { margin: 0px; padding: 0px; font-family: verdana; font-size: 12pt; background-color: #FCFCFC; }
div.service-header {
height: 34px;
font-weight: bold; padding: 10px; font-size: 30px; color: white; border-bottom: 1px solid black; background: #70803C;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#A0B06C', endColorstr='#70803C'); background: -webkit-gradient(linear, left top, left bottom, from(#A0B06C), to(#70803C)); background: -moz-linear-gradient(top, #A0B06C, #70803C);
text-shadow: #555555 2px 3px 3px;
}
div.service-header div.service-title {position: relative; float:left}
div.service-header .skin-selector {padding-top: 8px; margin-bottom: 0; position:relative; float: right; font-size: 12pt;}
div.service-overview {
float: right; margin: 20px; width: 200px;
-moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; background-color: #F6F6F6; border: 1px solid #E6E6E6; border-collapse: separate; font-size: 11px; padding: 10px; margin-right: 20px;
-moz-box-shadow: 2px 2px 4px #555; -webkit-box-shadow: 2px 2px 4px #555; box-shadow: 2px 2px 4px #555;
}
div.service-overview div.headline { font-weight: bold; font-size: 18px; }
div.service-overview div.title { font-weight: bold; margin: 4px; font-size: 1.2em; }
div.service-overview ul.list { padding: 0px; margin: 0px; margin-left: 15px; list-style-type: none; }
div.service-overview ul.list li { font-size: 1.1em; }
div.service-description { padding: 15px; padding-bottom: 0px; }
div.service-description div.title { font-weight: bold; font-size: 1.2em; }
div.service-description p.doc-lines { font-size: 0.8em; }
div.service-description p.url { font-size: 0.8em; font-style: italic; }
div.service-description p.url span.url-title { font-weight: bold; }
div.service-interfaces { padding: 15px; padding-bottom: 0px; }
div.service-interfaces div.title { font-weight: bold; font-size: 1.2em; }
div.service-interfaces ul.list { font-size: 0.8em; }
div.service-interfaces ul.list li { padding: 4px; }
div.service-api { padding: 15px; padding-bottom: 0px; }
div.service-api div.methods div.title { font-weight: bold; font-size: 1.2em; }
div.service-api div.methods ul.list { font-size: 0.9em; list-style-type: none; }
div.service-api div.methods ul.list li.entry {
-moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; background-color: #F6F6F6; border: 1px solid #E6E6E6;
border-collapse: separate; font-size: 0.8em; padding: 10px; margin-right: 20px;
-moz-box-shadow: 2px 2px 5px #555; -webkit-box-shadow: 2px 2px 5px #555; box-shadow: 2px 2px 5px #555;
margin-bottom: 16px;
}
div.service-api div.methods ul.list li.entry div.declaration {
font-size: 1.5em;
}
div.service-api div.methods ul.list li.entry div.declaration span.name { color: #881a1a; }
div.service-api div.methods ul.list li.entry span.param-type { color: #68387f; }
div.service-api div.methods ul.list li.entry span.param-name {}
div.service-api div.methods ul.list li.entry p.doc-lines { font-size: 1.2em; color: #276d11; }
div.service-api div.methods ul.list li.entry ul.params p.doc-lines { margin-top:0;margin-bottom:6px; font-size: 1.0em; color: #276d11; }
div.service-api div.types div.title { font-weight: bold; font-size: 1.2em; }
div.service-api div.types ul.list { font-size: 0.9em; list-style-type: none; }
div.service-api div.types ul.list li.entry {
-moz-border-radius: 7px 7px 7px 7px; -webkit-border-radius: 7px 7px 7px 7px; border-radius: 7px 7px 7px 7px; background-color: #F6F6F6; border: 1px solid #E6E6E6;
border-collapse: separate; font-size: 0.8em; padding: 10px; margin-right: 20px;
-moz-box-shadow: 2px 2px 5px #555; -webkit-box-shadow: 2px 2px 5px #555; box-shadow: 2px 2px 5px #555;
margin-bottom: 16px;
}
div.service-api div.types ul.list li.entry div.definition {
font-size: 1.5em;
}
div.service-api div.types ul.list li.entry div.definition span.name { color: #881a1a; }
div.service-api div.types ul.list li.entry span.param-type { color: #68387f; }
div.service-api div.types ul.list li.entry span.param-name {}
div.service-api div.types ul.list li.entry p.doc-lines { margin-top:0;margin-bottom:6px; font-size: 1.0em; color: #276d11; }
div.service-footer { font-size: 0.8em; text-align: center; font-style: italic; padding-top: 10px; padding-bottom: 10px; }
a:link { color: #00732F; text-decoration: none }
a:visited { color: #00732F; text-decoration: none }
a:hover { color: #00732F; text-decoration: underline }
</style>
</head>
<body>
<div class="service-header">
<div class="service-title">Calculator</div>
<form method="get" class="skin-selector">
<label for="skin-select">skins:</label>
<select id="skin-select" name="skin" onchange="document.forms[0].submit()">
<option value="">Default</option>
<option value="simple">Simple</option>
<option value="bluebox">Bluebox</option>
</select>
</form>
</div>
<div class="service-overview">
<div class="headline">Overview</div>
<div class="title">Methods</div>
<ul class="list">
<li>
<a href="#add"><span class="entry">add</span></a>
( )
</li>
</ul>
<div class="title">Types</div>
<ul class="list">
</ul>
</div>
<div class="service-description">
<div class="title">Description</div>
<p class="doc-lines">
This service does the math, and serves as example for new potential Ladon users.
</p>
</div>
<div class="service-interfaces">
<div class="title">Interfaces</div>
<ul class="list">
<li>soap11 [ <a href="http://ladonize.org/python-demos/Calculator/soap11">url</a> <a href="http://ladonize.org/python-demos/Calculator/soap11/description">description</a> ]</li>
<li>jsonwsp [ <a href="http://ladonize.org/python-demos/Calculator/jsonwsp">url</a> <a href="http://ladonize.org/python-demos/Calculator/jsonwsp/description">description</a> ]</li>
<li>soap [ <a href="http://ladonize.org/python-demos/Calculator/soap">url</a> <a href="http://ladonize.org/python-demos/Calculator/soap/description">description</a> ]</li>
</ul>
</div>
<div class="service-api">
<div class="methods">
<div class="title">Methods</div>
<ul class="list">
<li class="entry">
<div class="declaration">
<a name="add"></a><span class="name">add</span>
(
<span class="param-type">
number
</span>
<span class="param-name">a</span>
,
<span class="param-type">
number
</span>
<span class="param-name">b</span>
)
</div>
<p class="doc-lines">
Add two integers together and return the result
</p>
<div class="params-title">Parameters</div>
<ul class="params">
<li>
<span class="param-name">a</span>: <span class="param-type">
number
</span>
<br/>
<p class="doc-lines">
1st integer
</p>
</li>
<li>
<span class="param-name">b</span>: <span class="param-type">
number
</span>
<br/>
<p class="doc-lines">
2nd integer
</p>
</li>
</ul>
<div class="return-type-title">Return value</div>
<div class="return-type">
<span class="param-type">
number
</span>
<p class="doc-lines">
The result of the addition
</p>
</div>
</li>
</ul>
</div>
<div class="types">
<div class="title">Types</div>
<ul class="list">
</ul>
</div>
</div>
<div class="service-footer">Powered by Ladon for Python</div>
</body>
</html>
最佳答案
您使用的 URL 路径似乎有误,应更改为 http://ladonize.org/python-demos/Calculator/jsonwsp
。
创建 jsonData
的更好方法是使用 dataUsingEncoding:
。
您不应该创建回复:
NSURLResponse *theResponse =[[NSURLResponse alloc]init];
因为它将作为 sendSynchronousRequest
的一部分创建并返回给您。您应该做的是检查 theResponse
的内容以验证 HTTP 状态代码。
关于python - 如何从iOS应用程序调用使用Python的ladon框架开发的Web服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18546693/
我需要开发一个简单的网站,我通常使用 bootstrap CSS 框架,但是我想使用 Gumbyn,它允许我使用 16 列而不是 12 列。 我想知道是否: 我可以轻松地改变绿色吗? 如何使用固定布局
这个问题在这里已经有了答案: 关闭 13 年前。 与直接编写 PHP 代码相比,使用 PHP 框架有哪些优点/缺点?
我开发了一个 Spring/JPA 应用程序:服务、存储库和域层即将完成。 唯一缺少的层是网络层。我正在考虑将 Playframework 2.0 用于 Web 层,但我不确定是否可以在我的 Play
我现有的 struts Web 应用程序具有单点登录功能。然后我将使用 spring 框架创建一个不同的 Web 应用程序。然后想要使用从 struts 应用程序登录的用户来链接新的 spring 应
我首先使用Spark框架和ORMLite处理网页上表单提交的数据,在提交中文字符时看到了unicode问题。我首先想到问题可能是由于ORMLite,因为我的MySQL数据库的字符集已设置为使用utf8
我有一个使用 .Net 4.5 功能的模块,我们的应用程序也适用于 XP 用户。所以我正在考虑将这个 .net 4.5 依赖模块移动到单独的项目中。我怎样才能有一个解决方案,其中有两个项目针对不同的版
我知道这是一个非常笼统的问题,但我想我并不是真的在寻找明确的答案。作为 PHP 框架的新手,我很难理解它。 Javascript 框架,尤其是带有 UI 扩展的框架,似乎通过将 JS 代码与设计分开来
我需要收集一些关于现有 ORM 解决方案的信息。 请随意编写任何编程语言。 你能谈谈你用过的最好的 ORM 框架吗?为什么它比其他的更好? 最佳答案 我使用了 NHibernate 和 Entity
除了 Apple 的 SDK 之外,还有什么强大的 iPhone 框架可供开始开发?有没有可以加快开发时间的方法? 最佳答案 此类框架最大的是Three20 。 Facebook 和许多其他公司都使用
有人可以启发我使用 NodeJS 的 Web 框架吗?我最近开始从免费代码营学习express js,虽然一切进展顺利,但我对express到底是什么感到困惑。是全栈框架吗?纯粹是为了后端吗?我发现您
您可以推荐哪种 Ajax 框架/工具包来构建使用 struts 的 Web 应用程序的 GUI? 最佳答案 我会说你的 AJAX/javascript 库选择应该较少取决于你的后端是如何实现的,而更多
我有生成以下错误的 python 代码: objc[36554]: Class TKApplication is implemented in both /Library/Frameworks/Tk.
首先,很抱歉,如果我问的问题很明显,因为我没有编程背景,那我去吧: 我想运行一系列测试场景并在背景部分声明了几个变量(我打印它们以仔细检查它们是否已正确声明),第一个是整数,另外两个字符串为你可以看到
在我们承担的一个项目中,我们正在寻找一个视频捕获和录制库。我们的基础工作(基于 google 搜索)表明 vlc (libvlc)、ffmpeg (libavcodec) 和 gstreamer 是三
我试过没有运气的情况下寻找某种功能来杀死/中断Play中的正常工作!框架。 我想念什么吗?还是玩了!实际没有添加此功能? 最佳答案 Java stop类中没有像Thread方法那样的东西,由于种种原因
我们希望在我们的系统中保留所有重大事件的记录。例如,在数据库可能存储当前用户状态的地方,事件日志应记录对该状态的所有更改以及更改发生的时间。 事件记录工具应该尽可能接近于事件引发器的零开销,应该容纳结
那里有 ActionScript 2.0/3.0 的测试框架列表吗? 最佳答案 2010-05-18 更新 由于这篇文章有点旧,而且我刚刚收到了赞成票,因此可能值得提供一些更新的信息,这样人们就不会追
我有一个巨大的 numpy 数组列表(一维),它们是不同事件的时间序列。每个点都有一个标签,我想根据其标签对 numpy 数组进行窗口化。我的标签是 0、1 和 2。每个窗口都有一个固定的大小 M。
我是 Play 的新手!并编写了我的第一个应用程序。这个应用程序有一组它依赖的 URL,从 XML 响应中提取数据并返回有效的 URL。 此应用程序需要在不同的环境(Dev、Staging 和 Pro
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
我是一名优秀的程序员,十分优秀!