User NickJ - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:46:02Z http://stackoverflow.com/feeds/user/93854 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1105305/fileupload-saveas-unauthorizedaccessexception-error-dotnetnuke 0 FileUpload SaveAs UnauthorizedAccessException error (Dotnetnuke) NickJ 2009-07-09T17:20:42Z 2009-07-09T19:09:57Z <p>Hi guys,</p> <p>I am trying to save an image file in a custom module I am building for a DNN site.</p> <p>However when I run the code I get an UnauthorizedAccessException.</p> <pre><code>if(upLoadAddImg.HasFile) { String imageLocation = ConfigurationManager.AppSettings["ImageFolderPath"]; //Upload file upLoadAddImg.SaveAs(Server.MapPath(imageLocation)); </code></pre> <p>}</p> <p>I am running on localhost using the internal visual studio server. Tthe folderpath is all right and I have made sure Network Service has full permissions.</p> <p>Am I missing something obvious or does DNN have some special permission setting I am missing?</p> http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api 2 c# WebRequest to connect to wikipedia API NickJ 2009-04-21T15:02:22Z 2009-04-21T19:05:05Z <p>Hey, </p> <p>This may be a pathetically simple problem but I cannot seem to format the post webrequest/response to get data from the wikipedia api. I have posted my code below if anyone can help me see my problem. </p> <pre><code>string pgTitle = txtPageTitle.Text; Uri address = new Uri("http://en.wikipedia.org/w/api.php"); HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest; request.Method = "POST"; request.ContentType = "application/x-www-form-urlencoded"; string action = "query"; string query = pgTitle; StringBuilder data = new StringBuilder(); data.Append("action=" + HttpUtility.UrlEncode(action)); data.Append("&amp;query=" + HttpUtility.UrlEncode(query)); byte[] byteData = UTF8Encoding.UTF8.GetBytes(data.ToString()); request.ContentLength = byteData.Length; using (Stream postStream = request.GetRequestStream()) { postStream.Write(byteData, 0, byteData.Length); } using (HttpWebResponse response = request.GetResponse() as HttpWebResponse) { // Get the response stream StreamReader reader = new StreamReader(response.GetResponseStream()); divWikiData.InnerText = reader.ReadToEnd(); } </code></pre> http://stackoverflow.com/questions/1105305/fileupload-saveas-unauthorizedaccessexception-error-dotnetnuke Comment by NickJ on FileUpload SaveAs UnauthorizedAccessException error (Dotnetnuke) NickJ 2009-07-09T19:05:25Z 2009-07-09T19:05:25Z I am running off the internal development server in Visual Studio 2008 http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api Comment by NickJ on c# WebRequest to connect to wikipedia API NickJ 2009-04-21T16:01:13Z 2009-04-21T16:01:13Z I would like to give you both some rep points for being so helpful. But I don't have enough yet. Anyway thanks guys. I will be visiting the Stack again. Keltex- maybe you could just edit your post with the answer so that other people can see the answer. cheers Nick http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#773084 Comment by NickJ on c# WebRequest to connect to wikipedia API NickJ 2009-04-21T15:52:32Z 2009-04-21T15:52:32Z Thanks so, very, much Keltex. That got it working at last. http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#773084 Comment by NickJ on c# WebRequest to connect to wikipedia API NickJ 2009-04-21T15:36:08Z 2009-04-21T15:36:08Z Keltex thanks again , for the Get request code. I really need some idea of how to use the Get request, as eventually I would like to try login and edit pages. http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#773084 Comment by NickJ on c# WebRequest to connect to wikipedia API NickJ 2009-04-21T15:32:56Z 2009-04-21T15:32:56Z The exception is : The exception is : The remote server returned an error: (417) Expectation failed. http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api Comment by NickJ on c# WebRequest to connect to wikipedia API NickJ 2009-04-21T15:28:48Z 2009-04-21T15:28:48Z The exception is : The remote server returned an error: (417) Expectation failed. http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#773084 Comment by NickJ on c# WebRequest to connect to wikipedia API NickJ 2009-04-21T15:26:51Z 2009-04-21T15:26:51Z Thanks Keltex, I can get the Get working easily enough. using: WebRequest req = WebRequest.Create(address +&quot;?&quot; + data) as WebRequest; using (WebResponse resp = req.GetResponse() as WebResponse) { StreamReader readme = new StreamReader(resp.GetResponseStream()); divWikiData.InnerText = readme.ReadToEnd(); } This Post request still defats me - and I need Post for some of the actions the api allows..