From 5bd727e8d5d617e40db70bb3498ef0ede5409bfe Mon Sep 17 00:00:00 2001 From: rkesarwa Date: Wed, 21 Apr 2021 12:14:18 +0530 Subject: [PATCH 1/4] change expirationYear and update README for MetaKey config guide --- NVPTest/NVPTest.cpp | 2 +- README.md | 9 +++++++++ resources/auth.xml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NVPTest/NVPTest.cpp b/NVPTest/NVPTest.cpp index 4d260c1c..3fbe2992 100644 --- a/NVPTest/NVPTest.cpp +++ b/NVPTest/NVPTest.cpp @@ -113,7 +113,7 @@ std::wstring runAuth(CybsMap *cfgMap) { request[L"shipTo_country"] = L"US"; request[L"card_accountNumber"] = L"xxxxxxxxxxxxxxxx"; request[L"card_expirationMonth"] = L"12"; - request[L"card_expirationYear"] = L"2020"; + request[L"card_expirationYear"] = L"2021"; request[L"purchaseTotals_currency"] = L"USD"; request[L"item_0_unitPrice"] = L"12.34"; request[L"ccAuthService_run"] = L"true"; diff --git a/README.md b/README.md index fc43aa9f..67237ee6 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,16 @@ For running the sample follow "Running the Samples" section. NOTE:To run NVPTest samples,Please provide a test account number instead of masked account number"xxxxx" in NVPTest.cpp file else transaction fails. +##Meta Key support +Meta Key is a key generated by an entity that can be used to authenticate on behalf of other entities provided that the entity which holds key is a parent entity or associated as a partner. +SOAPI Cplusplus SDK supports meta key by default. Additional detail regarding cybs.ini changes. + +merchantID=
+keysDirectory=\
+keyPassword=\
+keyFilename=\
+Send merchantID in request. ##Generating stub code for different wsdl version: 1. Go to /stub_generator. diff --git a/resources/auth.xml b/resources/auth.xml index 8bc1f9bf..9a7e8b2e 100644 --- a/resources/auth.xml +++ b/resources/auth.xml @@ -36,7 +36,7 @@ 4111111111111111 12 - 2020 + 2021 From 75c51d3d97849a2881c58f1ba2af9c9d25e5e100 Mon Sep 17 00:00:00 2001 From: rkesarwa Date: Wed, 28 Apr 2021 19:23:41 +0530 Subject: [PATCH 2/4] update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67237ee6..f086d985 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ For running the sample follow "Running the Samples" section. NOTE:To run NVPTest samples,Please provide a test account number instead of masked account number"xxxxx" in NVPTest.cpp file else transaction fails. -##Meta Key support +## Meta Key support Meta Key is a key generated by an entity that can be used to authenticate on behalf of other entities provided that the entity which holds key is a parent entity or associated as a partner. SOAPI Cplusplus SDK supports meta key by default. Additional detail regarding cybs.ini changes. From f86f47f943912997636dd167154079710f6a8fa7 Mon Sep 17 00:00:00 2001 From: rkesarwa Date: Thu, 20 May 2021 12:27:56 +0530 Subject: [PATCH 3/4] Added new release version --- BaseClient/util.h | 2 +- Makefile | 2 +- mkinstall.bat | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BaseClient/util.h b/BaseClient/util.h index e940b792..9982dc35 100644 --- a/BaseClient/util.h +++ b/BaseClient/util.h @@ -68,7 +68,7 @@ const char CYBS_C_USE_AKAMAI[] = "sendToAkamai"; /* Please do not modify these values */ -static const wchar_t CLIENT_LIBRARY_VERSION_VALUE[] = L"6.0.3"; +static const wchar_t CLIENT_LIBRARY_VERSION_VALUE[] = L"6.0.4"; static const wchar_t CLIENT_LIBRARY_VALUE[] = L"C SOAP"; static const wchar_t CLIENT_APPLICATION_VALUE[] = L"Simple Order API"; diff --git a/Makefile b/Makefile index 4f780b08..f140577b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -API_VERSION = 6.0.3 +API_VERSION = 6.0.4 PROD_NAME = simapi-c ZIP_NAME = $(PROD_NAME)-linux DIST_BASE = builds diff --git a/mkinstall.bat b/mkinstall.bat index 3377482e..8b24d0ae 100644 --- a/mkinstall.bat +++ b/mkinstall.bat @@ -5,7 +5,7 @@ rem This is the packaging batch file for Windows. rem For Linux, run "make" in the client subdirectory. rem ************************************************* set platform=%1 -set CLIENT_LIBRARY_VERSION_VALUE=6.0.3 +set CLIENT_LIBRARY_VERSION_VALUE=6.0.4 set BUILD_DIR=builds if "%platform%"=="win32" ( From bcb505d7cc0afda64a91bc35cec99cf75c566e5b Mon Sep 17 00:00:00 2001 From: rkesarwa Date: Wed, 26 May 2021 18:49:22 +0530 Subject: [PATCH 4/4] Refactor readme.md file --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f086d985..3a256f4a 100644 --- a/README.md +++ b/README.md @@ -82,11 +82,11 @@ Meta Key is a key generated by an entity that can be used to authenticate on beh SOAPI Cplusplus SDK supports meta key by default. Additional detail regarding cybs.ini changes. -merchantID=
-keysDirectory=\
-keyPassword=\
-keyFilename=\
-Send merchantID in request. +merchantID= and send merchantID in request.
+keysDirectory=\
+keyPassword=\
+keyFilename=\
+ ##Generating stub code for different wsdl version: 1. Go to /stub_generator.