Hi,
I have a c# asp.net solution.
Im trying to xml from a string, xsl from a file, and transform them and get the output.
My website is running under windows intergrated security.
This is where im falling down.
XslTransform xsl = new XslTransform();
xsl.Load(("
it returns Error Message: The remote server returned an error: (401) Unauthorized.
If i browse the URL its fine.
I know i have a permissions problem and i know i have to give it some authentication details, (god knows why), but i just cant find the example code to get me through this one.
If i turn on annon access in iis it works, but i need to use windows authenticated.
i do have intergrated=true in the web.config file
Please Please can someone help.
Im desperate
I have a c# asp.net solution.
Im trying to xml from a string, xsl from a file, and transform them and get the output.
My website is running under windows intergrated security.
This is where im falling down.
XslTransform xsl = new XslTransform();
xsl.Load(("
it returns Error Message: The remote server returned an error: (401) Unauthorized.
If i browse the URL its fine.
I know i have a permissions problem and i know i have to give it some authentication details, (god knows why), but i just cant find the example code to get me through this one.
If i turn on annon access in iis it works, but i need to use windows authenticated.
i do have intergrated=true in the web.config file
Please Please can someone help.
Im desperate