Hi,
I am consuming AIF service in my .NET (C#) code. I want to intercept and log the soap request(xml) before sending it to AIF service? Below is the code on how I call the Create customer operation in AX customer service in C#:
So How can I intercept the request?
BasicHttpBinding_CustomerService oService = new BasicHttpBinding_CustomerService();
AxdCustomer oAxCustomer = new AxdCustomer();
oAxCustomer.Name = "TestName";
EntityKey[] oResponse = oService.create(oAxCustomer);
*This post is locked for comments
I have the same question (0)