All,
A small but irritating issue.
I am trying to create a DLL that uses the Client Object model to change a Site Tile
Microsoft.SharePoint.Client.ClientContext myCContext = new Microsoft.SharePoint.Client.ClientContext(lsiteurl);
System.Net.NetworkCredential ReqCredential = new NetworkCredential("user", "pwd", "domain");
System.Net.WebProxy ReqProxy = new System.Net.WebProxy("IP:8080", false);
myCContext.Credentials = ReqCredential;
ReqProxy.Credentials = ReqCredential;
WebRequest.DefaultWebProxy = ReqProxy;
//GlobalProxySelection.Select = ReqProxy;
Microsoft.SharePoint.Client.Web lWeb = myCContext.Web;
myCContext.Load(lWeb);
lerror = "Load SPWeb";
myCContext.ExecuteQuery();
But What I try, Every time it throws an exception on the myCContext.ExecuteQuery()
Every time the same error "407 Proxy Authentication Required", please help me resolve this issue
the solution in How do I pass my proxy credentials to a SharePoint Client Context object...? (SharePoint Client Object Model) does nothing, even the creating the new Network credentials, Proxy, ...
Thx for any help