Question

I have a web service which accepts XML and passes from one system into BizTalk for routing to another system.

The service seems to contain a private bool which is stopping one particular element from getting through the service, every other one gets through OK. e.g. if I have fields A, B, C, D, the private bool does not allow D to get through, so what is routed through BizTalk is the XML message minus D.

Looking for some idea where to start with this one.

Was it helpful?

Solution

if you can run codez in service app domain, you can use reflection to change the private bool.

But if you run outside of service app domain, you're pretty much bound by rules of service contract. But then again, how do you know about existence of private bool inside the service then?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top