Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

invoking BPEL from Microsoft .NET

435768Sep 30 2005 — edited Jul 13 2006
Hi,
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 10 2006
Added on Sep 30 2005
6 comments
1,636 views