Calling Orchestration exposed as web service
Code for C# Client is as:
staticvoid Main(string[] args)
{
Request req =newRequest();//Creatin an object of schema declared in BizTalk Project
//assiging value to each element of schema
req.RequestId ="RQ234F6";
req.RegionName ="North";
req.NumOfConnRequested = 100;
req.EstimCost ="1000000";
req.Description ="Need More Connection";
//creating object of Type Orchestration webservice
_UserToManager_Workflow1_Port_RequestResponseForHIPoc ws =
new_UserToManager_Workflow1_Port_RequestResponseForHIPoc();
//ws.PreAuthenticate =true;
ReplyUser rep = ws.Operation_1(req);
Console.ReadKey();
}
But at the run time it throw a SOAP error. Please tell me what I am missing here ?I had not added any proxy file here as we do in WSE-web service.
It a simple call to Orchestration(BizTalk) exposed as web service. If you have any document to do so also please share that with me.
Thanks

