Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

GetWebTicket method not working

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

1 Solution

Accepted Solutions
Not applicable
Author

Webticket and authorization

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>

View solution in original post

1 Reply
Not applicable
Author

Webticket and authorization

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>