I am using Delphi xe2. I have created DiamondManager.pas
file using wsdl component with the help of web service URL https://technet.rapaport.com/webservices/Upload/DiamondManager.asmx?WSDL.
I have received interface methods
procedure Login(const Username: string; const Password:
string); stdcall;
function
UploadFiles(const Parameters: UploadFilesParameters): UploadFilesResult;
stdcall; and etc.
I have called login procedure successfully, but I call
function uploadFiles its generated an exception
---------------------------
Debugger Exception Notification
---------------------------
Project Project1.exe raised exception class
ERemotableException with message 'Server was unable to process request. --->
You are not authenticated. Please run the Login function first.'.
---------------------------
While first I have called login function. Please anyone help
me.