Posts by user9408692 • 103 points
4 posts
-
2
votes1
answer227
viewsA: Problem running web application . net with oracle. Duplicate key
The error is related to Oracle Data Provider for .NET. There is the managed and unmanaged driver. You are using the Managed driver, and since you need to run several applications with different…
-
1
votes1
answer528
viewsA: Detect proxy configuration in webrequest
To avoid manually passing credentials you can obtain credentials as follows: WebProxy myProxy = new WebProxy(); myProxy = (WebProxy)WebProxy.GetDefaultProxy(); myProxy.Credentials =…
-
0
votes1
answer178
viewsA: know how much a i/o disk consuming process
Hello, basically you will listen to the cpu for a lot of time, to do the calculation, using the threads for such. I found an article that will serve you to meet 100% of what you need, including with…
-
4
votes1
answer438
viewsQ: Page shows only the files in IIS 7 MVC Application 5
I have a Mvc 5 application, for development I used IIS Express, everything works normally on it, but I am a problem to climb IIS 7. Still on my local machine, later I will take to Windows 2008. The…