-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes for authorization the p12 certificate types
- Loading branch information
Showing
11 changed files
with
66 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'SOAPEngine' | ||
s.version = '1.4' | ||
s.summary = 'This generic SOAP client allows you to access web services using a your iOS app, Mac OS X app and AppleTV app.' | ||
s.version = '1.4.2' | ||
s.summary = 'This generic SOAP client allows you to access web services using a your iOS and Mac OS X app.' | ||
s.license = { :type => 'Shareware', :file => 'LICENSE.txt' } | ||
s.authors = { 'Danilo Priore' => '[email protected]' } | ||
s.homepage = 'https://github.com/priore/SOAPEngine' | ||
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s| | |
s.xcconfig = { 'HEADER_SEARCH_PATHS' => "${PODS_ROOT}/#{s.name}/**" } | ||
s.frameworks = 'Security' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.ios.deployment_target = '7.1' | ||
s.ios.preserve_paths = 'SOAPEngine64.framework' | ||
s.ios.public_header_files = 'SOAPEngine64.framework/Headers/*.h' | ||
s.ios.source_files = 'SOAPEngine64.framework/Headers/*.h' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,11 @@ | |
// | ||
// email support: [email protected] | ||
// | ||
// Version : 1.4 | ||
// Version : 1.4.2 | ||
// Changelog : https://github.com/priore/SOAPEngine/blob/master/CHANGELOG.txt | ||
// Updates : https://github.com/priore/SOAPEngine | ||
// | ||
#define SOAPEngineFrameworkVersion @"1.4" DEPRECATED_MSG_ATTRIBUTE("SOAPEngineFrameworkVersion as deprecated please use SOAPEngine64VersionString") | ||
#define SOAPEngineFrameworkVersion @"1.4.2" DEPRECATED_MSG_ATTRIBUTE("SOAPEngineFrameworkVersion as deprecated please use SOAPEngine64VersionString") | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
|
@@ -32,23 +32,24 @@ | |
#endif | ||
|
||
// Local Notification names | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidFinishLoadingNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidFailWithErrorNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidReceiveResponseCodeNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidBeforeSendingURLRequestNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidBeforeParsingResponseStringNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidReceiveDataSizeNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidSendDataSizeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidFinishLoadingNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidFailWithErrorNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidReceiveResponseCodeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidBeforeSendingURLRequestNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidBeforeParsingResponseStringNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidReceiveDataSizeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidSendDataSizeNotification; | ||
|
||
// UserInfo dictionary keys for Local Noficiations | ||
FOUNDATION_EXPORT const NSString *SOAPEngineStatusCodeKey; // response status code | ||
FOUNDATION_EXPORT const NSString *SOAPEngineXMLResponseKey; // response xml | ||
FOUNDATION_EXPORT const NSString *SOAPEngineXMLDictionaryKey; // response dictionary | ||
FOUNDATION_EXPORT const NSString *SOAPEngineURLRequestKey; // http request | ||
FOUNDATION_EXPORT const NSString *SOAPEngineURLResponseKey; // http response | ||
FOUNDATION_EXPORT const NSString *SOAPEngineErrorKey; // errors | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDataSizeKey; // send/receive data size | ||
FOUNDATION_EXPORT const NSString *SOAPEngineTotalDataSizeKey; // send/receive total data size | ||
FOUNDATION_EXPORT NSString *const SOAPEngineStatusCodeKey; // response status code | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLResponseKey; // response xml | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLDictionaryKey; // response dictionary | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLDatayKey; // response data | ||
FOUNDATION_EXPORT NSString *const SOAPEngineURLRequestKey; // http request | ||
FOUNDATION_EXPORT NSString *const SOAPEngineURLResponseKey; // http response | ||
FOUNDATION_EXPORT NSString *const SOAPEngineErrorKey; // errors | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDataSizeKey; // send/receive data size | ||
FOUNDATION_EXPORT NSString *const SOAPEngineTotalDataSizeKey; // send/receive total data size | ||
|
||
typedef void(^SOAPEngineCompleteBlockWithDictionary)(NSInteger statusCode, NSDictionary *dict); | ||
typedef void(^SOAPEngineCompleteBlock)(NSInteger statusCode, NSString *stringXML) | ||
|
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,11 @@ | |
// | ||
// email support: [email protected] | ||
// | ||
// Version : 1.4 | ||
// Version : 1.4.2 | ||
// Changelog : https://github.com/priore/SOAPEngine/blob/master/CHANGELOG.txt | ||
// Updates : https://github.com/priore/SOAPEngine | ||
// | ||
#define SOAPEngineFrameworkVersion @"1.4" DEPRECATED_MSG_ATTRIBUTE("SOAPEngineFrameworkVersion as deprecated please use SOAPEngine64VersionString") | ||
#define SOAPEngineFrameworkVersion @"1.4.2" DEPRECATED_MSG_ATTRIBUTE("SOAPEngineFrameworkVersion as deprecated please use SOAPEngine64VersionString") | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
|
@@ -32,23 +32,24 @@ | |
#endif | ||
|
||
// Local Notification names | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidFinishLoadingNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidFailWithErrorNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidReceiveResponseCodeNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidBeforeSendingURLRequestNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidBeforeParsingResponseStringNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidReceiveDataSizeNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidSendDataSizeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidFinishLoadingNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidFailWithErrorNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidReceiveResponseCodeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidBeforeSendingURLRequestNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidBeforeParsingResponseStringNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidReceiveDataSizeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidSendDataSizeNotification; | ||
|
||
// UserInfo dictionary keys for Local Noficiations | ||
FOUNDATION_EXPORT const NSString *SOAPEngineStatusCodeKey; // response status code | ||
FOUNDATION_EXPORT const NSString *SOAPEngineXMLResponseKey; // response xml | ||
FOUNDATION_EXPORT const NSString *SOAPEngineXMLDictionaryKey; // response dictionary | ||
FOUNDATION_EXPORT const NSString *SOAPEngineURLRequestKey; // http request | ||
FOUNDATION_EXPORT const NSString *SOAPEngineURLResponseKey; // http response | ||
FOUNDATION_EXPORT const NSString *SOAPEngineErrorKey; // errors | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDataSizeKey; // send/receive data size | ||
FOUNDATION_EXPORT const NSString *SOAPEngineTotalDataSizeKey; // send/receive total data size | ||
FOUNDATION_EXPORT NSString *const SOAPEngineStatusCodeKey; // response status code | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLResponseKey; // response xml | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLDictionaryKey; // response dictionary | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLDatayKey; // response data | ||
FOUNDATION_EXPORT NSString *const SOAPEngineURLRequestKey; // http request | ||
FOUNDATION_EXPORT NSString *const SOAPEngineURLResponseKey; // http response | ||
FOUNDATION_EXPORT NSString *const SOAPEngineErrorKey; // errors | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDataSizeKey; // send/receive data size | ||
FOUNDATION_EXPORT NSString *const SOAPEngineTotalDataSizeKey; // send/receive total data size | ||
|
||
typedef void(^SOAPEngineCompleteBlockWithDictionary)(NSInteger statusCode, NSDictionary *dict); | ||
typedef void(^SOAPEngineCompleteBlock)(NSInteger statusCode, NSString *stringXML) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,11 @@ | |
// | ||
// email support: [email protected] | ||
// | ||
// Version : 1.4 | ||
// Version : 1.4.2 | ||
// Changelog : https://github.com/priore/SOAPEngine/blob/master/CHANGELOG.txt | ||
// Updates : https://github.com/priore/SOAPEngine | ||
// | ||
#define SOAPEngineFrameworkVersion @"1.4" DEPRECATED_MSG_ATTRIBUTE("SOAPEngineFrameworkVersion as deprecated please use SOAPEngine64VersionString") | ||
#define SOAPEngineFrameworkVersion @"1.4.2" DEPRECATED_MSG_ATTRIBUTE("SOAPEngineFrameworkVersion as deprecated please use SOAPEngine64VersionString") | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
|
@@ -32,23 +32,24 @@ | |
#endif | ||
|
||
// Local Notification names | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidFinishLoadingNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidFailWithErrorNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidReceiveResponseCodeNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidBeforeSendingURLRequestNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidBeforeParsingResponseStringNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidReceiveDataSizeNotification; | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDidSendDataSizeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidFinishLoadingNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidFailWithErrorNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidReceiveResponseCodeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidBeforeSendingURLRequestNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidBeforeParsingResponseStringNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidReceiveDataSizeNotification; | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDidSendDataSizeNotification; | ||
|
||
// UserInfo dictionary keys for Local Noficiations | ||
FOUNDATION_EXPORT const NSString *SOAPEngineStatusCodeKey; // response status code | ||
FOUNDATION_EXPORT const NSString *SOAPEngineXMLResponseKey; // response xml | ||
FOUNDATION_EXPORT const NSString *SOAPEngineXMLDictionaryKey; // response dictionary | ||
FOUNDATION_EXPORT const NSString *SOAPEngineURLRequestKey; // http request | ||
FOUNDATION_EXPORT const NSString *SOAPEngineURLResponseKey; // http response | ||
FOUNDATION_EXPORT const NSString *SOAPEngineErrorKey; // errors | ||
FOUNDATION_EXPORT const NSString *SOAPEngineDataSizeKey; // send/receive data size | ||
FOUNDATION_EXPORT const NSString *SOAPEngineTotalDataSizeKey; // send/receive total data size | ||
FOUNDATION_EXPORT NSString *const SOAPEngineStatusCodeKey; // response status code | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLResponseKey; // response xml | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLDictionaryKey; // response dictionary | ||
FOUNDATION_EXPORT NSString *const SOAPEngineXMLDatayKey; // response data | ||
FOUNDATION_EXPORT NSString *const SOAPEngineURLRequestKey; // http request | ||
FOUNDATION_EXPORT NSString *const SOAPEngineURLResponseKey; // http response | ||
FOUNDATION_EXPORT NSString *const SOAPEngineErrorKey; // errors | ||
FOUNDATION_EXPORT NSString *const SOAPEngineDataSizeKey; // send/receive data size | ||
FOUNDATION_EXPORT NSString *const SOAPEngineTotalDataSizeKey; // send/receive total data size | ||
|
||
typedef void(^SOAPEngineCompleteBlockWithDictionary)(NSInteger statusCode, NSDictionary *dict); | ||
typedef void(^SOAPEngineCompleteBlock)(NSInteger statusCode, NSString *stringXML) | ||
|
Binary file not shown.
Binary file not shown.