Jump to content

Recommended Posts

Posted (edited)

Hi guys

 

I'm having an issue with _INetGetSource... I've made an app that needs to get the source from an URL but the app needs to be run as another user. when it runs as the current user there are no issues, but when i run it as the other user that should be executing it, it seems like the function can't handle SSO and it just fails.

When i run my IE directly as a different user it pops up for credentials.

does anyone have any experience with this and is there a way to fix this?

 

Greetz

Colombeen

Edited by colombeen
Posted

Can you show your code?

Additionally, can you check if the code below works? Note that you will need my HTTP UDF on the script folder (take it here).

#include 'HTTP.au3'

$sUrl = "http://" ; put your URL here

$sHTML = _HTTP_Get($sUrl)

If @error Then
    MsgBox(0, "", "HTTP error " & @extended)
Else
    MsgBox(0, "Content", $sHTML)
EndIf

 

My stuff

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...