Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
We are using, QV 12 server along with IIS as a web server.
We are able to login to access point using and open the documents.
When we are trying to use the method - "GetwebTicket" using following settings, it throws an "Runtime Error".
The URL which we are using to get the Web ticket is -
http://<server_name>/QvAJAXZfc/GetWebTicket.aspx?cmd=<Global method='GetWebTicket'><UserId><username></UserId></Global>
We have done following settings:
QV:
DMS authorization
authentication : always
Type: custom User
Alternate Login Page
IIS
Anonymous Login : enable
other Disabled
Please assist, as I am trying for same from 2-3 days.
Please assist.
Thanks & Regards,
MK
On above thread @Bill Britt suggested below, hope helps in your case as well.
To get it back to working in 12, you need to follow this article by Microsoft: https://msdn.microsoft.com/en-us/library/hh882339(v=vs.100).aspx
By adding this snippet of code to the web.config for the ajaxzfc web site:
<system.web>
<httpRuntime requestValidationMode="2.0" />
<pages validateRequest="false" />
</system.web>
On above thread @Bill Britt suggested below, hope helps in your case as well.
To get it back to working in 12, you need to follow this article by Microsoft: https://msdn.microsoft.com/en-us/library/hh882339(v=vs.100).aspx
By adding this snippet of code to the web.config for the ajaxzfc web site:
<system.web>
<httpRuntime requestValidationMode="2.0" />
<pages validateRequest="false" />
</system.web>