J
Joseph Geretz
I'm implementing a web application whose purpose in life is to act as a data
conduit. Data is posted to my Web app in XML format, my application examines
the data and forwards it onward by posting it to the appropriate upstream
server.
Since transaction processing is largely identical regardless of the
transaction details (these will be handled by an upstream sever) I'm
thinking of implementing my application as an HttpModule. But I'm wondering
how this will work in terms of scalabiliy. If I understand the httpModule
architecture, there is only a single instance created to service all
transactions, even if several aspx page instances are created to handle
concurrentt page requests. If this is correct, will my proposed application
architecture destroy scalability by serializing all calls through the single
httpmodule instance? Or am I completely off base with this concern?
Thanks for your advice!
Joseph Geretz
conduit. Data is posted to my Web app in XML format, my application examines
the data and forwards it onward by posting it to the appropriate upstream
server.
Since transaction processing is largely identical regardless of the
transaction details (these will be handled by an upstream sever) I'm
thinking of implementing my application as an HttpModule. But I'm wondering
how this will work in terms of scalabiliy. If I understand the httpModule
architecture, there is only a single instance created to service all
transactions, even if several aspx page instances are created to handle
concurrentt page requests. If this is correct, will my proposed application
architecture destroy scalability by serializing all calls through the single
httpmodule instance? Or am I completely off base with this concern?
Thanks for your advice!
Joseph Geretz