ASP.NET Error in Version
Question:
When running Smart Image Processor 2 with the build in ASP.NET resize component i get the following error:
Request format is unrecognized for URL unexpectedly ending in '/Version'.
Description: An unhandled exception occurred during the
execution of the current web request. Please review the stack trace for
more information about the error and where it originated in the code.
Exception Details: System.InvalidOperationException: Request format is unrecognized for URL unexpectedly ending in '/Version'.
Answer:
Seems your are running your website from a different port or your ASP.NET service settings are not ok. Anyway you need to add this in a web.config file in your web root:
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
<webServices>
<protocols>
<add name="HttpGet"/>
<add name="HttpPost"/>
</protocols>
</webServices>
</system.web>
</configuration>
Comments
Be the first to write a comment
You must me logged in to write a comment.