hi
i am using below code
i got error ( Server was unable to process request. ---> Credentials can only be passed over secure connections (HTTPS) )
Please assist me..
First option:
RapLinkInventoryPlusWebService.
RetailFeed webServiceManager =
new RapLinkInventoryPlusWebService.RetailFeed();
//This must be done in HTTPS protocolwebServiceManager.Login(
"MyUser",
"MyPassword");
//After log in you will receive a encrypted ticket with your credentials. This will be used to authenticate your session.
//Now you can choose to change the protocol to HTTP so it works faster. webServiceManager.Url =
"http" + webServiceManager.Url.Substring(5);
int DiamondCount;
DataTable dt = webServiceManager.GetDiamonds(
webServiceManager.Shapes.ROUND,
0.2, 15.3, //size From - To
webServiceManager.Colors.D, webServiceManager.Colors.K, // Color From - To
webServiceManager.Clarities.IF, webServiceManager.Clarities.VVS2, // Clarity From - To
webServiceManager.Cuts.EXCELLENT, webServiceManager.Cuts.VERY_GOOD,// Cut From - To
100, 150000, // Price From - To
2, 20, //Page, Results in page
ref DiamondCount);