Tag Info

Hot answers tagged

3

The message is clear. Cannot read configuration file due to insufficient permissions How to solve it. Every asp.net application is run under one pool assigned to it, and each pool is run under a specific account. Open the IIS, locate the pool under which your app is try to run, see the user that is assigned to that pool, and give read permissions to ...


2

I had similar questions when I was moving from Apache servers (where it's dead easy to send a nightly email) to Windows (where you have options). Clients have sometimes pushed me towards SQL Mail. It's not terrible. If your web app has a SQL backend, and it's okay to schedule things there, it's capable of sending emails when properly configured.


2

Just add this section to Web.config, and all requests to the route/{*pathInfo} will be handled by the specified handler, even when there are dots in pathInfo. (taken from ServiceStack MVC Host Web.config example and this answer http://stackoverflow.com/a/12151501/801189) This should work for both IIS 6 & 7. You could assign specific handlers to ...


2

Yes there's a better way: you can use Silverlight (basically it's a C# equivalent to Flash). Even if Silverlight is quite the same as WPF, there is some differences due to the fact that silverlight is made for web. So you'll have to make some changes to your application. About integrating it in your page, it seems quite simple: You can use an object html ...


2

When the user clicks the export button the request is sent to the server and the server will process that request until it ends, in your case in an email. Even if the client browser closed after the button was pressed the request was still sent and the server has no idea that the client browser closed. Now, normally (with the browser open throughout the ...


1

you have to tell PHP to report errors error_reporting(E_ALL); ini_set('display_errors',1); are the very least You have to set default time zone


1

So i figured it out. By the way, sorry for the vauge question, i was pretty confuesd why my wcf service wouldnt be hosted. I got the web.config working by with the following steps: "Add new website" to solution (WCF-Service) Delete the two servicefiles (Service.cs, IService.cs) because i'v allready my services defined in my other service library. Add ...


1

You should avoid doing such detection in JavaScript and instead pass the value from the .NET code. You will always risk running into problems with urls like http://server/MyApp/MyApp/action where you cannot know which is the name of a controller and which the path to the application. In your Layout.cshtml file (or wherever you need it) add the following ...


1

Try the below code. function getBaseURL() { var url = location.href; // entire url including querystring - also: window.location.href; var baseURL = url.substring(0, url.indexOf('/', 14)); if (baseURL.indexOf('http://localhost') != -1) { // Base Url for localhost var url = location.href; // window.location.href; var ...


1

Typically issues like this with Internet Explorer and SSL have to do with caching. Make sure that Internet Explorer does not have the setting Do not save encrypted pages to disk enabled (checked). You can find that setting in IE under Internet Options > Advanced > under the Security section. Make sure that you are not sending no-cache headers with the ...


1

You can use Request.Form to access posted form from any HttpHandler, Page or Controller. Given that you only need to post, maybe HttpHandler is the best choice actually. Then it is up to you how to work keys/values in Request.Form to build your email.


1

favicon: Add this to your web.config file: <configuration> <location path="favicon.ico"> <system.webServer> <staticContent> <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="90.00:00:00" /> </staticContent> </system.webServer> </location> </configuration> ...


1

Your rule needs to be changed to: <rule name="foo.com" enabled="true"> <match filterByTags="A, Area, Base, Form, Frame, Head, IFrame, Img, Input, Link, Script" pattern="^(.*)foo.com(.*)$" /> <action type="Rewrite" value="{R:1}foo.localhost{R:2}" /> </rule> In the pattern, ^(.*) will match anything (0 or more characters) from ...


1

There could be many reasons why this is happening, I would recommend that you add the below to your web.config (just before the is closed), so that you can get some diagnostics information on what your WCF webservice is doing : <system.diagnostics> <sources> <source name="System.ServiceModel" switchValue="Information, ...


1

Generally the user account the application pool runs under will not have permissions to write to any sub-folders for security reasons. You will have to check which user your application runs under and then give that user write permissions to the SpeechFile folder. Make sure that is the only folder that you do give it write permissions to so that the security ...


1

The only way to solve this problem is to not write to that folder. You are not allowed to write to that folder .Just Tried to Give Access Rights to your Folder SpeechFile. You may also use Environment.SpecialFolder to help you find where you need to go.


1

Let's analyze your options: Use task scheduler in your server to launch console app Use task schedule**r in your server to **web service hosted in IIS Have an IIS application running 100% of time in an infinite loop that that checks time every minute and if it happens to be the correct time send the emails Have a windows service. Use task scheduler in a ...



Only top voted, non community-wiki answers of a minimum length are eligible