Skip to main content

QlikView App Dev

Discussion Board for collaboration related to QlikView App Development.

Announcements
Skip the ticket, Chat with Qlik Support instead for instant assistance.
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>