User1510859543 posted
We are using a urlMappings element in our web.config file and it works fine. My question is does the "url" setting have to point to an actual web page or not? For example, in the section sample below does "~/misc/ReplySMS.aspx" actually have to exist
as a physical page or will it thrown an error if it does not?
<urlMappings enabled="true">
<add url="~/misc/ReplySMS.aspx" mappedUrl="~/SMSReplyHandler.ashx" />
</urlMappings>