views:

41

answers:

1

We have to ASP.NET applications, one in 1.1 and one in 3.5. In order to log our errors in the same location we are going to create a WebService that the 1.1 app can call. If I include an HttpRequest as one of the parameters to the webservice, will there be a versioning problem?

+2  A: 

There will be other problem - HttpRequest isn't marked as serializable, nor is MarshalByRefObj.

Yossarian