Answered How do I serialize the OpenEdge.Net.HTTP.IHttpResponse class object?

Cecil

19+ years progress programming and still learning.
I’m feeling like such a noob.

I want to pass the class object "OpenEdge.Net.HTTP.IHttpResponse" to a remote AppServer.

This can’t be done because the class object is "marshaled".

How do I serialize the class object so that I can pass it to the AppServer?
 
Last edited:

peterjudge

Member
@Cecil you're never a noob

the OpenEdge.Net.HTTP.HttpRequest (or http response) isn't natively serializable , ie CLASS ... SERIALIZABLE.

So you have to log a bug with progress and while they fix that, deal with that yourself (yes I accept the irony of that statement).

"Deal with it" means probably writing your own serialization
 
Top