- 浏览: 772545 次
- 性别:
- 来自: 天堂
文章分类
最新评论
-
xiaozhao-521:
呀呀呀呀呀呀呀
RequestTest222 -
Andy_hyh:
打扰了,问下openmeeting源码可以运行起来吗?
Openmeetings安装 详细步骤 -
qindongliang1922:
擦,现在还行么,厉害
北京免费吃饭的地方 -
minixx77:
...
Openmeetings安装 详细步骤 -
wwwqqqiang:
喜欢楼主分享问题的方式,有思想
UIView 和 CALayer的那点事
一:Using SO AP 1.1
Host: www.ecubicle.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: “http://www.ecubicle.net/webservices/FindCountryAsXml”
<?xml version=”1.0” encoding=”utf-8”?>
<soap:Envelope xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xmlns:xsd=http://www.w3.org/2001/XMLSchema
xmlns:soap=”http://schemas.xmlsoap.org/soap/envelope/“>
<soap:Body>
<FindCountryAsXml xmlns=”http://www.ecubicle.net/webservices/“>
<V4IPAddress>string</V4IPAddress>
</FindCountryAsXml>
</soap:Body>
</soap:Envelope>
(1)请求的webservice url的地址为“http://www.ecubicle.net/iptocountry.asmx”
(2)url 的 SOAPAction 是 “http://www.ecubicle.net/webservices/FindCountryAsXml”
(3) 请求的Content-Type 格式为“text/xml; charset=utf-8.”
(4)请求的方式为post
(5)请求的内容(SOAP request)格式为
<soap:Envelope xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xmlns:xsd=”http://www.w3.org/2001/XMLSchema”
xmlns:soap=”http://schemas.xmlsoap.org/soap/envelope/“>
<soap:Body>
<FindCountryAsXml xmlns=”http://www.ecubicle.net/webservices/“>
<V4IPAddress>string</V4IPAddress>
</FindCountryAsXml>
</soap:Body>
</soap:Envelope>
(6)请的内容长度(Content-Length)为SOAP request的字节长度
(7)返回的结果格式为
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version=”1.0” encoding=”utf-8”?>
<soap:Envelope xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xmlns:xsd=”http://www.w3.org/2001/XMLSchema”
xmlns:soap=”http://schemas.xmlsoap.org/soap/envelope/“>
<soap:Body>
<FindCountryAsXmlResponse xmlns=”http://www.ecubicle.net/webservices/“>
<FindCountryAsXmlResult>xml result</FindCountryAsXmlResult>
</FindCountryAsXmlResponse>
</soap:Body>
</soap:Envelope>
- (IBAction)buttonClicked:(id)sender {
NSString *soapMsg =[NSString stringWithFormat:@“<?xml version=\“1.0\“ encoding=\“utf-8\“?>”
“<soap:Envelope xmlns:xsi=”“\“http://www.w3.org/2001/XMLSchema-instance\“ “
“xmlns:xsd=\“http://www.w3.org/2001/XMLSchema\“ ““xmlns:soap=\“http://schemas.xmlsoap.org/soap/envelope/\“>”“<soap:Body>”
“<FindCountryAsXml xmlns=\“http://www.ecubicle.net/webservices/\“>”
“<V4IPAddress>%@</V4IPAddress>”“</FindCountryAsXml>”“</soap:Body>”“</soap:Envelope>”, ipAddress.text];
//---print it to the Debugger Console for verification---
NSLog(soapMsg);
NSURL *url = [NSURL URLWithString:@“http://www.ecubicle.net/iptocountry.asmx”];
NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
//---set the various headers---
NSString *msgLength = [NSString stringWithFormat:@“%d”, [soapMsg length]];
[req addValue:@“text/xml; charset=utf-8” forHTTPHeaderField:@“Content-Type”];
[req addValue:@“http://www.ecubicle.net/webservices/FindCountryAsXml”forHTTPHeaderField:@“SOAPAction”];
[req addValue:msgLength forHTTPHeaderField:@“Content-Length”];
//---set the HTTP method and body---
[req setHTTPMethod:@“POST”];
[req setHTTPBody:[soapMsg dataUsingEncoding:NSUTF8StringEncoding]];
[activityIndicator startAnimating];
conn = [[NSURLConnection alloc] initWithRequest:req delegate:self];
if (conn) {
webData = [[NSMutableData data] retain];
}
}
二:Using SO AP 1.2
请求格式
Host: www.ecubicle.net
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version=”1.0” encoding=”utf-8”?>
<soap12:Envelope xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xmlns:xsd=”http://www.w3.org/2001/XMLSchema”
xmlns:soap12=”http://www.w3.org/2003/05/soap-envelope”>
<soap12:Body>
<FindCountryAsXml xmlns=”http://www.ecubicle.net/webservices/“>
<V4IPAddress>string</V4IPAddress>
</FindCountryAsXml>
</soap12:Body>
</soap12:Envelope>
返回结果格式
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version=”1.0” encoding=”utf-8”?>
<soap12:Envelope xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance”
xmlns:xsd=”http://www.w3.org/2001/XMLSchema”
xmlns:soap12=”http://www.w3.org/2003/05/soap-envelope”>
<soap12:Body>
<FindCountryAsXmlResponse xmlns=”http://www.ecubicle.net/webservices/“>
<FindCountryAsXmlResult>xml result</FindCountryAsXmlResult>
</FindCountryAsXmlResponse>
</soap12:Body>
</soap12:Envelope>
请求代码同SOAP 1.1
三:Using HTTP GET
请求格式
Host: www.ecubicle.net
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
(1)请求的地址为http://www.ecubicle.net/iptocountry.asmx/FindCountryAsXml?V4IPAddress=“aa”.
发送的数据格式必须为键值对如key1=value1&key2=value2&key3=value3.
(2) 请求的Content-Type 格式为“text/xml; charset=utf-8.”
(3)请求的内容长度(Content-Length)为 0
(4)请求的方式为GET.
(5)返回结果发送为
xml result
请求发送
NSString *queryString =[NSString stringWithFormat:@“http://www.ecubicle.net/iptocountry.asmx/FindCountryAsXml?V4IPAddress=%@“,ipAddress.text];
NSURL *url = [NSURL URLWithString:queryString];
NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
[req addValue:@“text/xml; charset=utf-8” forHTTPHeaderField:@“Content-Type”];
[req addValue:0 forHTTPHeaderField:@“Content-Length”];
[req setHTTPMethod:@“GET”];
[activityIndicator startAnimating];
conn = [[NSURLConnection alloc] initWithRequest:req delegate:self];
if (conn) {
webData = [[NSMutableData data] retain];
}
}
四: Using HTTP POS T
Host: www.ecubicle.net
Content-Type: application/x-www-form-urlencoded
Content-Length: length
V4IPAddress=string
(1)请求地址为http://www.ecubicle.net/iptocountry.asmx/FindCountryAsXml
(2)Content-Type为“application/x-www-form-urlencoded”
(3)Content-Length 为V4IPAddress=string的长度。
The data to be sent is formatted as key/value pairs — key1=value1&key2=value2&key3=value3. Unlike
HTTP GET, the data are not sent through the query string; it is sent after the HTTP headers.
(4)The HTTP Method is POST.
(5)返回结果格式为
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version=”1.0”?>
xml result
请求发送
- (IBAction)buttonClicked:(id)sender {
NSString *postString =[NSString stringWithFormat:@“V4IPAddress=%@“, ipAddress.text];
NSLog(postString);
NSURL *url = [NSURL URLWithString:@“http://www.ecubicle.net/iptocountry.asmx/FindCountryAsXml”];
NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
NSString *msgLength = [NSString stringWithFormat:@“%d”, [postString length]];
[req addValue:@“application/x-www-form-urlencoded”forHTTPHeaderField:@“Content-Type”];
[req addValue:msgLength forHTTPHeaderField:@“Content-Length”];
[req setHTTPMethod:@“POST”];
[req setHTTPBody: [postString dataUsingEncoding:NSUTF8StringEncoding]];
[activityIndicator startAnimating];
conn = [[NSURLConnection alloc] initWithRequest:req delegate:self];
if (conn) {
webData = [[NSMutableData data] retain];
}
}
评论
不是,这里只是创建一个NSMutableData实例,在这里该实例的内容为空
发表评论
-
iOS 自定义UIActionSheet
2012-12-18 16:07 16418一:模态视图 UIActi ... -
UIView 和 CALayer的那点事
2012-11-17 23:51 30755UIView 和 CALayer的那点事 (1 ... -
iOS Open Source : Popover API for iPhone
2012-01-20 15:02 1941http://iphonedevelopertips.com/ ... -
ios 任务、线程、定时器
2011-12-26 18:09 8028一:operations(任务) cocoa提供了三种 ... -
ios url缓存策略——NSURLCache、 NSURLRequest
2011-12-26 17:09 24356一:url 缓存策略 NSURLRequest ... -
ios NSInvocation简单使用
2011-12-22 16:39 6370在ios直接调用某个对象的消息是方法有两种: 一:perfo ... -
sdk3.2手势实例
2011-11-09 10:11 1740#import <UIKit/UIKit.h>@i ... -
关于iphone 利用hpple解析html的问题
2011-08-04 18:28 2223最近在用happe解析html中的图片。有个翻页操作,如果请 ... -
iphone hpple 解析html,xml
2011-07-19 16:21 2751使用Objective-C解析HTML或者XML,系统自带有两 ... -
激活 iPhone通过 GPRS 连接服务器功能的代码
2011-05-13 15:14 1656如果您的 iPhone 应用里含有连接服务器的功能,也许会遇到 ... -
address book api 图型
2011-04-28 15:51 1147最近要搞地址簿了,整理一下 -
[OmniGraffle]iPhone app原型制作工具
2011-04-06 17:35 3957在写程序之前,我们通常需要做一些mockup出来(不知道款爷有 ... -
自定义uislider 样式
2011-04-04 21:28 3837UIImage *stetchLeftTrack= [[UII ... -
iphone 下AsyncSocket网络库编程
2011-04-02 21:04 7639iphone的标准推荐CFNetwork ... -
进阶AlertView运用 - 登入设计
2011-04-01 17:52 3038说明:示范如何利用AlertView来制作系统登入的介面程式碼 ... -
iPad UIPopoverController弹出窗口的位置和坐标
2011-04-01 17:42 2000优化规则: TodoViewControlle ... -
iPhone系统自动化测试
2011-04-01 17:39 2617首先mac系统是必备的2 安装iPhone SD ... -
iphone上面编写具有root权限的程序
2011-04-01 17:31 6294正常途径下, 我们编写的程序发布在App store上, 使用 ... -
聊天。。。。。
2011-04-01 17:13 1092是得分手段 -
iOS开发基础:Modal View Controller的不同呈现方式
2011-04-01 16:40 2814ModalViewController可以有不同的呈现方式(m ...
相关推荐
在iOS开发中,网络请求是应用与服务器交互的重要方式,主要分为同步请求和异步请求,同时HTTP协议提供了两种常见的请求方法:GET和POST。理解这些概念及其在iOS中的实现对于构建用户友好的应用程序至关重要。 1. **...
SOAP客户端是一款专为iPhone设计的Web服务工具,它使得在iOS平台上与SOAP(Simple Object Access Protocol)服务进行交互变得简单而高效。SOAP是一种基于XML的协议,广泛用于构建分布式系统,尤其是在企业级应用中,...
在iOS开发中,网络请求是应用与服务器交互的基础,主要包括同步请求、异步请求以及HTTP协议中的两种主要请求方法:GET和POST。接下来,我们将详细探讨这些概念。 1. **同步请求**: - 同步请求是阻塞式的,当发送...
开发者需要构造合适的URL,携带必要的参数,以GET或POST方式提交到服务器。 2. **WebService类型**:在描述中提到了XML和JSON,这表明服务可能是基于SOAP的(因为SOAP通常使用XML作为消息格式),也可能有RESTful...
标题“Hello_SOAP-getOffesetUTCTime”暗示了一个示例项目,它涉及使用SOAP(Simple Object Access Protocol)在iPhone平台上与Web服务进行交互,尤其是获取UTC偏移时间的功能。SOAP是一种基于XML的协议,用于在Web...
标题与描述中提到的知识点主要围绕在iOS应用开发中如何处理数据、用户默认设置(User Defaults)、SQLite数据库以及网络服务(Web Services)。以下是对这些关键概念的深入解析: ### 处理iOS应用中的数据 在iOS应用...
【标题】"卡永久iphone在线源码(POST)"指的是一个用于实现iPhone设备激活或解锁的在线源代码,其中可能包含处理POST请求的功能。在IT领域,源码是程序员用编程语言编写的原始代码,它是软件的基础,可以被编译成可...
- GET请求用于获取Web服务中的数据,而POST请求可以提交数据到服务器。 - 需要处理网络请求的状态,如成功、失败、超时等。 3. **SOAP与RESTful Web服务**: - SOAP(Simple Object Access Protocol)是一种基于...
本教程将详细介绍如何在Objective-C中使用SOAP请求与WSDL服务进行交互,特别适用于iPhone应用开发。 首先,我们需要准备一个WSDL2OBJC工具,这是一个开源项目,它能够根据WSDL文件自动生成Objective-C客户端代码。...
总之,《初识iPhone与iPad Web应用开发》是一本全面的教程,适合对Web开发有一定基础,希望通过iOS平台扩展影响力的开发者。通过学习,你将能够创建出既美观又实用的Web应用,充分利用iPhone和iPad的潜力,为用户...
在iOS系统中,快捷方式(Shortcuts)是一种方便用户快速执行特定任务的工具,通过创建自定义的Siri快捷方式或者在主屏幕上添加快捷图标,用户可以一键触发一系列操作。本资源提供的是"Iphone快捷方式管理器"的C#源码...
Web Service是一种基于网络的、中间件独立的应用程序接口,它通过标准协议(如SOAP、REST)来交换数据。在iPhone应用中,我们通常使用HTTP或HTTPS协议来与Web Service进行通信。 1. **选择合适的通信方式**: - ...
总结来说,这个`iPhone HTTP`工具类提供了一种简单的方式来处理HTTP请求,包括同步和异步的GET和POST操作,以及处理服务器响应。通过自定义的协议和方法,开发者可以轻松地集成到自己的应用程序中,进行网络数据的...
在iOS设备上构建基于Web的时间控件是一种常见需求,特别是在开发跨平台的移动应用时。时间控件(通常称为DatePicker)允许用户方便地选择日期或时间,为网站和应用程序提供了直观的用户界面。本篇文章将深入探讨如何...
4. **交互一致性**:遵循Apple的Human Interface Guidelines(人机交互指南),确保Web应用的交互方式与原生应用一致,提高用户熟悉度和满意度。 最后,UiUIKit的灵活性和易用性使其成为开发者和设计师的理想选择,...
在移动设备领域,尤其是苹果的iPhone,Web开发已经成为构建交互性强、用户体验良好的应用程序的重要途径。iUI是一款专门针对iPhone和类似设备的Web应用程序设计的开源框架,它允许开发者使用HTML、CSS和JavaScript来...
本文将详细讲解如何使用SOAP(Simple Object Access Protocol)请求来查询手机号码的归属地,主要针对iPhone平台,并提供源代码示例。 SOAP是一种基于XML的协议,用于在Web服务中交换结构化和类型化的信息。它允许...
### 使用Eclipse开发iPhone Web应用程序 #### 一、引言 随着智能手机的普及与移动互联网技术的发展,开发针对特定设备的应用程序变得尤为重要。对于iOS设备,尤其是iPhone而言,虽然原生应用开发通常采用Swift或...