Home All Groups Group Topic Archive Search About

https and Local System account

Author
23 Jan 2009 2:45 PM
Michal Valent
Hello,
I would like to make a https call under Local System account
but I get error :

A security problem occurred.

Under another account there is no problem,
under Local System account and http call there is no problem too.

The reason to use https call under Local System account is
that I have to fire javascript from MS SQL SERVER trigger
(MSSQLSERVER service must run under Local System account)
and the javascript is making xmlhttp SSL call.

xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');


var abiwsUrl = ws_uri + "/GetEnt?login=&password=";

xmlhttp.open('GET', abiwsUrl, false);

xmlhttp.onreadystatechange = HandleStateChange;

xmlhttp.send();


Can I get rid of "A security problem occurred"
anyhow in this configuration ?

thak you
miso

Author
24 Jan 2009 5:00 AM
Ken Schaefer
Hi,

I'm not sure that this is an IIS issue - IIS would respond to your request.

You probably need to take this up in an SQL Server forum if you are
attempting to invoke something from an SQL Server trigger

Cheers
Ken

Show quoteHide quote
"Michal Valent" <val***@spirit.sk> wrote in message
news:uTMPJlWfJHA.5840@TK2MSFTNGP05.phx.gbl...
> Hello,
> I would like to make a https call under Local System account
> but I get error :
>
> A security problem occurred.
>
> Under another account there is no problem,
> under Local System account and http call there is no problem too.
>
> The reason to use https call under Local System account is
> that I have to fire javascript from MS SQL SERVER trigger
> (MSSQLSERVER service must run under Local System account)
> and the javascript is making xmlhttp SSL call.
>
> xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
>
>
> var abiwsUrl = ws_uri + "/GetEnt?login=&password=";
>
> xmlhttp.open('GET', abiwsUrl, false);
>
> xmlhttp.onreadystatechange = HandleStateChange;
>
> xmlhttp.send();
>
>
> Can I get rid of "A security problem occurred"
> anyhow in this configuration ?
>
> thak you
> miso
>
>