Status Update : General Security Access Denied Error

P

Parth

Hi,
I have following code it is giving me Generl Security Denied Error does any
one has idea about this???
Guid assn = new Guid(((Label)gvr.FindControl("lblAssn")).Text);
string changexml =
((TextBox)gvr.FindControl("lblPSI")).Text;

CookieContainer cookiecontainer = new CookieContainer();

login.Url = baseurl + LOGINWINDOWS;
login.Credentials =
System.Net.CredentialCache.DefaultCredentials;
login.CookieContainer = cookiecontainer;
login.UseDefaultCredentials = true;

sta.Url = baseurl + QUEUEWEBSERVICE;
sta.Credentials =
System.Net.CredentialCache.DefaultCredentials;
sta.CookieContainer = cookiecontainer;
sta.UseDefaultCredentials = true;


//sta.CookieContainer = cookiecontainer;


sta.UpdateStatus(changexml.ToString());
sta.SubmitStatus(new Guid[] { assn }, "Har Har Mahadev");
Label1.Text = "Update Succesfully";

Please help me out.....

Thanks in Advance.
 
M

Mike Glen

Hi Parth,

Try posting on the microsoft.public.project.developer newsgroup (forum).
Please see FAQ Item: 24. Project Newsgroups. FAQs, companion products and
other useful Project information can be seen at this web address:
http://project.mvps.org/faqs.htm

Mike Glen
Project MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top