2013-05-28 68 views
8

我打算在企業應用程序中使用WSLD2OBJC以使用基於SOAP的服務。但對於wsdl2objc最後一次更新是在2010年使用soap與IOS

  1. wsdl2objc安全的企業應用程序使用?
  2. 是否有其他可靠的組件用於soap解析?
  3. 或者我可以使用Plain XML請求與NSXMLParse滿足我的需求嗎?
+0

你打算在後端使用.NET,PHP或Ruby嗎?爲什麼你想使用SOAP而不是REST? –

+0

後端是在.NET中。 –

回答

2

首先,WSLD2OBJC是過於臃腫使用

1)一般情況下,如果未加密的消息SOAP本身並不安全。從考慮到這個SOAP體someSOAPmethod如果您在.NET中使用屬性[WebMethod]與SOAP V1.0:

POST /WebService/Common.asmx HTTP/1.1 
Host: localhost 
Content-Type: text/xml; charset=utf-8 
Content-Length: length 
SOAPAction: "http://example.com/someSOAPmethod" 
<?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> 
    <SomeSOAPmethod xmlns=\"http://example.com/\"> 
    <encryptedMessage>%@</encryptedMessage> //<-- this is vary, depends on your parameter 
    </SomeSOAPmethod> 
</soap:Body> 
</soap:Envelope> 

的%@必須與encryped數據傳遞,以確保SOAP。你可以使用任何類型的加密,但我更喜歡AES。爲了保護更多的HTTPS連接(RSA加密)。

2)您可以使用WSLD2OBJC構建自己的解析。從someSOAP方法的例子

-(NSMutableURLRequest *)encapsulateSOAP:(NSString *)encryptedMessage withSoapMethod:(NSString *)soapMethod andBaseURL:(NSURL *)baseURL 
{ 

    NSString* soapMessage = [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><%@ xmlns=\"http://example.com/\"><encryptedMessage>%@</encryptedMessage></%@></soap:Body></soap:Envelope>", soapMethod, encryptedMessage, soapMethod]; 


    NSString* msgLength = [NSString stringWithFormat:@"%d", [soapMessage length]]; 

    NSMutableURLRequest* theRequest = [NSMutableURLRequest requestWithURL:baseURLl]; 
    [theRequest addValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"]; 
    [theRequest addValue:[NSString stringWithFormat:@"%@%@", @"http://example.com/", soapMethod ] forHTTPHeaderField:@"SOAPAction"]; 
    [theRequest setHTTPMethod:@"POST"]; 
    [theRequest addValue:msgLength forHTTPHeaderField:@"Content-Length"]; 
    [theRequest setHTTPBody: [soapMessage dataUsingEncoding:NSUTF8StringEncoding]]; 
    [theRequest setTimeoutInterval:10]; 

    return theRequest; 
} 

如何使用上面的方法:

NSString *encryptedMessage = //some encrypted message 
    NSString *soapMethod = @"someSOAPmethod"; 
    NSURL *baseURL = [NSURL urlWithString:@"http://example.com"]; 
    NSMutableURLRequest *requestQueue = [self encapsulateSOAPRequest:encryptedMessage withSoapMethod:soapMethod andBaseURL:baseURL]; 
    //then request using AFNetworking, ASIHTTP or your own networking library 

3)是的,你可以使用NSXMLParse或任何你要綁定的SOAP請求或取消綁定SOAP響應第三方庫。

+0

上面的示例我顯示的是僅用於請求方法 –

+0

謝謝..我會試試這個 –