User NickJ - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T21:46:02Zhttp://stackoverflow.com/feeds/user/93854http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1105305/fileupload-saveas-unauthorizedaccessexception-error-dotnetnuke0FileUpload SaveAs UnauthorizedAccessException error (Dotnetnuke)NickJ2009-07-09T17:20:42Z2009-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-api2c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:02:22Z2009-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("&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-dotnetnukeComment by NickJ on FileUpload SaveAs UnauthorizedAccessException error (Dotnetnuke)NickJ2009-07-09T19:05:25Z2009-07-09T19:05:25ZI am running off the internal development server in Visual Studio 2008http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-apiComment by NickJ on c# WebRequest to connect to wikipedia APINickJ2009-04-21T16:01:13Z2009-04-21T16:01:13ZI 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 Nickhttp://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#773084Comment by NickJ on c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:52:32Z2009-04-21T15:52:32ZThanks so, very, much Keltex. That got it working at last.http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#773084Comment by NickJ on c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:36:08Z2009-04-21T15:36:08ZKeltex 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#773084Comment by NickJ on c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:32:56Z2009-04-21T15:32:56ZThe 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-apiComment by NickJ on c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:28:48Z2009-04-21T15:28:48ZThe exception is :
The remote server returned an error: (417) Expectation failed.http://stackoverflow.com/questions/773029/c-webrequest-to-connect-to-wikipedia-api/773084#773084Comment by NickJ on c# WebRequest to connect to wikipedia APINickJ2009-04-21T15:26:51Z2009-04-21T15:26:51ZThanks Keltex,
I can get the Get working easily enough.
using:
WebRequest req = WebRequest.Create(address +"?" + 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..