I have a web service I'm trying to use on one of my sites. When I call the web service (which is created in C#) I get an error on several lines where try to execute an SP, which was created as an assembly. This web service works on our development environment but not on live. Our live and dev environments run on the same server, but different databases.
The error is:
Sql Exception: Failed to initialize the Common Language Runtime (CLR) v2.0.50727 due to memory pressure. Please restart SQL server in Address Windowing Extensions (AWE) mode to use CLR integration features.
CLR is enabled on both live and dev. No temp tables are used. I believe its already in AWE mode. WSE was installed on the server and I'm using .Net 2.0
The SP I'm trying to call in the web service takes a string as an argument and returns a byte[].
Is there a size limitation on web services?
Any suggestions?
Edit: We're using MSSQL 2005