Question

I have just migrated ASP website and COM+ component from old server to new 64 bit win 2012 server. But One of the functionality where we upload the file onto the server has become very slow. We have used SoftArtison's FileUp assembly.

Same website and component deployed on winxp takes 1 minute to upload the file, and on win 2012 64 bit server about 20 minutes. On winxp FileUp assembly used is older version.

I have just ran out of ideas as on what to do and what could be cause.

Was it helpful?

Solution

Thanks. But the issue was not related to SoftArtisans FileUp. The issue was regarding the COM+ VB component. Actually I have found the root cause. There was high level string manipulation (split, substring, trim, append, concat) happening while generation of XML and VB does not have StringBuilder, so this was using up lot of memory and consuming time as well. I have moved the XML generation logic to .Net Comvisible dll, deploying the same in GAC and calling dll from VB code. And it is working very quickly now.

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