Skip to content

Commit

Permalink
fixes for authorization the p12 certificate types
Browse files Browse the repository at this point in the history
  • Loading branch information
priore committed Mar 1, 2017
1 parent d9d81d3 commit ace3e74
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 56 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.4.2, Mar 1, 2017
- fixes for authorization the p12 certificate types.

1.4.1, Feb 27, 2017
- added SOAPEngineXMLDatayKey constant that is used in userInfo notifications.
- fixes for the constants declaration.

1.4, Feb 23, 2017
- added a new property named "soapActionRequest" to set a different SOAPAction value in the header of the request for the support of the last versions of WCF services.

Expand Down
6 changes: 3 additions & 3 deletions SOAPEngine.podspec
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'
Expand All @@ -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'
Expand Down
35 changes: 18 additions & 17 deletions SOAPEngine64.framework/Headers/SOAPEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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)
Expand Down
Binary file modified SOAPEngine64.framework/Info.plist
Binary file not shown.
Binary file modified SOAPEngine64.framework/SOAPEngine64
Binary file not shown.
35 changes: 18 additions & 17 deletions SOAPEngineOSX.framework/Versions/A/Headers/SOAPEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions SOAPEngineOSX.framework/Versions/A/Resources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.4</string>
<string>1.4.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1.4</string>
<string>1.4.2</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
Expand Down
Binary file modified SOAPEngineOSX.framework/Versions/A/SOAPEngineOSX
Binary file not shown.
35 changes: 18 additions & 17 deletions SOAPEngineTV.framework/Headers/SOAPEngine.h
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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)
Expand Down
Binary file modified SOAPEngineTV.framework/Info.plist
Binary file not shown.
Binary file modified SOAPEngineTV.framework/SOAPEngineTV
Binary file not shown.

0 comments on commit ace3e74

Please sign in to comment.