You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code should be changed as well (BaseClient.cs line # 48):
if(proxyURL!=null){mProxy=newWebProxy(proxyURL);// if a proxyUser is specified in the configuration file,// set up the proxy object's Credentials.stringproxyUser=AppSettings.GetSetting(null,PROXY_USER);if(proxyUser!=null){stringproxyPassword=AppSettings.GetSetting(null,PROXY_PASSWORD);NetworkCredentialcredential=newNetworkCredential(proxyUser,proxyPassword);CredentialCachecache=newCredentialCache();cache.Add(newUri(proxyURL),BASIC_AUTH,credential);mProxy.Credentials=cache;}}
It should be smart to use the default proxy and if I have a different proxy for CyberSource calls, the library can not override my default configuration.
The text was updated successfully, but these errors were encountered:
I have a default proxy configuration in my web.config/app.config like:
1) First issue:
CyberSourceLibrary doesn't use the default configuration, so I need to repeat the proxy again in cybersource proxy configuration like:
2) Second issue:
When I do this, the library override my default configuration and I lost my by pass definition.
It is the code (BaseClient.cs line # 323):
This code should be changed as well (BaseClient.cs line # 48):
It should be smart to use the default proxy and if I have a different proxy for CyberSource calls, the library can not override my default configuration.
The text was updated successfully, but these errors were encountered: