invoking BPEL from Microsoft .NET
435768Sep 30 2005 — edited Jul 13 2006Hi,
We are invoking the BPEL Process from microsoft .NET client.
We created a proxy for the process using the web references in .NET. We have written the following code..
using System;
using getCustomerDetails.getCustomerDetailsWebService;
namespace getCustomerDetails
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Class1
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
GetCustDetInType inValues = new GetCustDetInType();
GetCustDetOutType outValues = new GetCustDetOutType ();
inValues.pAccountNumber="1000";
XCSC_GetCustomerDetails getCustDet = new XCSC_GetCustomerDetails();
outValues = getCustDet.process(inValues);
Console.WriteLine(outValues.accountName.ToString());
}
}
}
At runtime we are getting the following exception.
An unhandled exception of type 'System.InvalidOperationException' occurred in system.xml.dll
Additional information: There is an error in XML document (2, 493).
Can any one find out the solution to get out of this issue.
Thanks in advance
Rami