Skip to main content

Using Classic ASP, the trusted authentication process was working fine using the code below

 

        data = "username=domain\username"

        Set httpRequest = Server.CreateObject("MSXML2.ServerXMLHTTP")

        httpRequest.Open "POST", "https://1.2.3.4/trusted", False

        httpRequest.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded"

        httpRequest.Send data

        postResponse = httpRequest.ResponseText

        session("token")=postResponse

 

However, I now always get back a response of -1.

 

I've run through Ticket Value of -1 Returned from Tableau Server, made sure the IP of the web server was added. Nothing is being added to the logs either.

 

When I go to the trusted URL all I get back is "This webpage is not available"

 

Please advise - it was working one day, I come in after the weekend and it's suddenly not working

 

Thanks

1 answer
0/9000