User alexandrul - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T03:22:24Zhttp://stackoverflow.com/feeds/user/19756http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799561/string-format-for-castle-dictionaryadapter0String format for Castle DictionaryAdapteralexandrul2009-11-25T19:56:31Z2009-11-25T22:43:57Z
<p>I'm using Castle DictionaryAdapter in order to get the application settings from the <strong>app.config</strong> as an interface ( based on <a href="http://blog.andreloker.de/post/2008/09/05/Getting-rid-of-strings-%283%29-take-your-app-settings-to-the-next-level.aspx" rel="nofollow">Getting rid of strings (3): take your app settings to the next level</a> ):</p>
<pre><code>public interface ISettings {
int MaxUsers { get; }
string FeedbackMail { get; }
DateTime LastUserLogin { get; }
}
</code></pre>
<p><strong>app.config</strong></p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="MaxUsers" value="20"/>
<add key="FeedbackMail" value="foo@localhost"/>
<add key="LastUserLogin" value="2009-06-15T13:45:30.0900000"/>
</appSettings>
</configuration>
</code></pre>
<p>Is it possible to configure DictionaryAdapter to use a custom string format like <strong>"yyyyMMdd-HHmm"</strong> for converting the value stored in <strong>app.config</strong> ?</p>
http://stackoverflow.com/questions/276229/best-book-on-asp-net-3-5-c-programming7Best book on ASP.NET 3.5 (C#) programming?alexandrul2008-11-09T18:10:52Z2009-10-26T06:15:45Z
<p>I have to choose one of the following books, and I didn't find many reviews besides the comments on the Amazon pages (which are mostly positive):</p>
<ul>
<li>Programming Microsoft ASP.NET 3.5 --- by Dino Esposito (Microsoft Press)</li>
<li>Professional ASP.NET 3.5: In C# and VB --- by Bill Evjen, Scott Hanselman, Devin Rader (Wrox)</li>
<li>Programming ASP.NET 3.5 --- by Jesse Liberty, Dan Maharry, Dan Hurwitz (O'Reilly)</li>
<li>Pro ASP.NET 3.5 in C# 2008, Second Edition --- by Matthew MacDonald, Mario Szpuszta (Apress)</li>
<li>ASP.NET 3.5 Unleashed --- by Stephen Walther (Sams)</li>
<li>ASP.NET 3.5 Website Programming: Problem - Design - Solution --- by Chris Love (Wrox)</li>
</ul>
<p>Can the owners of those books recommend one of them, considering my needs of learning:</p>
<ul>
<li>data binding from various sources (including generic collections, not only datasets from SQL Server with or without stored procedures),</li>
<li>choosing the most adequate way of displaying various data in tabular format (including master-details in the same table, if possible),</li>
<li>the basics of custom controls,</li>
<li>the basics of master pages.</li>
</ul>
<p>Also, if those topics are more detailed in other books, please give me a hint.</p>
<p>Environment: ASP.NET 2.0+, C# 2.0+</p>
http://stackoverflow.com/questions/1605487/using-ioc-container-for-reading-runtime-settings0Using IoC container for reading runtime settingsalexandrul2009-10-22T07:04:11Z2009-10-25T10:05:50Z
<p>I have an C# dll project for which I have to store the runtime settings in an external XML file, and this dll will be used in an ASP.NET/ASP.NET MVC application for which I also have to store the runtime settings in a external file.</p>
<p>Which IoC container can be used to create an object with the runtime settings loaded from a specific external file, and also works for web applications running in medium trust? Any howto/tutorial would be greatly appreciated.</p>
<p>So far I've found only this articles:</p>
<ul>
<li><a href="http://www.wijix.com/post/Use-Castle-Windsor-to-Read-Your-Config-Files-Automatically.aspx" rel="nofollow">Use Castle Windsor to Read Your Config Files Automatically</a></li>
<li><a href="http://blog.andreloker.de/post/2008/09/05/Getting-rid-of-strings-%283%29-take-your-app-settings-to-the-next-level.aspx" rel="nofollow">Getting rid of strings (3): take your app settings to the next level</a></li>
</ul>
<p>but I remember that I've stumbled long time ago on some more detailed articles about using Castle Windsor (not just DictionaryAdapter) and Linq-to-XML for this purpose.</p>
<p><strong>Update</strong></p>
<p>I'm sending mails from my dll to a variable number of SMTP servers, based on the current record type. For type A I'm using a given SMTP server+port, for type B I'm using an alternate set of server+port values. Of course, I want to be able to modify those values after deployment, so I store them in a XML file.</p>
<p>If I'm storing the SMTP settings as a class with 2 properties (SMTPServer as String and SMTPPort as Int32), is it possible to return from an IoC container the required object based on the given record type, and both properties to have the values read from the container configuration file?</p>
http://stackoverflow.com/questions/1605487/using-ioc-container-for-reading-runtime-settings/1620502#16205020Answer by alexandrul for Using IoC container for reading runtime settingsalexandrul2009-10-25T10:05:50Z2009-10-25T10:05:50Z<p>What I was trying to achieve was something like in this article: <a href="http://www.timbarcz.com/blog/WindsorConfigParametersWithNonPrimitiveTypes.aspx" rel="nofollow">Windsor Config Parameters With Non-Primitive Types</a></p>
http://stackoverflow.com/questions/638579/recommend-a-flat-file-blog-engine/1593158#15931581Answer by alexandrul for Recommend a flat-file blog engine?alexandrul2009-10-20T08:25:47Z2009-10-20T08:25:47Z<p><a href="http://pivotx.net/" rel="nofollow">PivotX</a></p>
<ul>
<li>Multiple Weblogs</li>
<li>Multiple Authors</li>
<li>Built-in commenting & moderation</li>
<li>Built-in spam protection</li>
<li>Easy to install templates (themes)</li>
<li>Pages</li>
<li>MySQL Database</li>
<li>Flat Files Database</li>
<li>SEO friendly</li>
<li>Self hosted</li>
</ul>
http://stackoverflow.com/questions/183918/any-good-git-tutorials/1592958#15929580Answer by alexandrul for Any good git tutorials?alexandrul2009-10-20T07:16:28Z2009-10-20T07:16:28Z<p>I've gathered many links about git on my blog: <a href="http://asimilatorul.com/adapter/post/git-resources/" rel="nofollow">Git resources</a></p>
http://stackoverflow.com/questions/1556119/ssh-private-key-permissions-using-git-gui-or-ssh-keygen-are-too-open/1562318#15623180Answer by alexandrul for SSH Private Key Permissions using Git GUI or ssh-keygen are too openalexandrul2009-10-13T19:11:30Z2009-10-17T14:36:53Z<p>I'm playing right now with Git 1.6.5, and I can't replicate your setup:</p>
<pre><code>Administrator@WS2008 /k/git
$ ll ~/.ssh
total 8
drwxr-xr-x 2 Administ Administ 4096 Oct 13 22:04 ./
drwxr-xr-x 6 Administ Administ 4096 Oct 6 21:36 ../
-rw-r--r-- 1 Administ Administ 0 Oct 13 22:04 c.txt
-rw-r--r-- 1 Administ Administ 403 Sep 30 22:36 config_disabled
-rw-r--r-- 1 Administ Administ 887 Aug 30 16:33 id_rsa
-rw-r--r-- 1 Administ Administ 226 Aug 30 16:34 id_rsa.pub
-rw-r--r-- 1 Administ Administ 843 Aug 30 16:32 id_rsa_putty.ppk
-rw-r--r-- 1 Administ Administ 294 Aug 30 16:33 id_rsa_putty.pub
-rw-r--r-- 1 Administ Administ 1626 Sep 30 22:49 known_hosts
Administrator@WS2008 /k/git
$ git clone git@github.com:alexandrul/gitbook.git
Initialized empty Git repository in k:/git/gitbook/.git/
remote: Counting objects: 1152, done.
remote: Compressing objects: 100% (625/625), done.
remote: Total 1152 (delta 438), reused 1056 (delta 383)s
Receiving objects: 100% (1152/1152), 1.31 MiB | 78 KiB/s, done.
Resolving deltas: 100% (438/438), done.
Administrator@WS2008 /k/git
$ ssh git@github.com
ERROR: Hi alexandrul! You've successfully authenticated, but GitHub does not pro
vide shell access
Connection to github.com closed.
$ ssh -v
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007
</code></pre>
<p>chmod doesn't modify file permissions for my keys either.</p>
<p>Environment:</p>
<ul>
<li>Windows Server 2008 SP2 on NTFS</li>
<li>user: administrator</li>
<li>environment vars:
<ul>
<li>PLINK_PROTOCOL=ssh</li>
<li>HOME=/c/profiles/home</li>
</ul></li>
</ul>
<p><strong>Update:</strong> Git 1.6.5.1 works as well.</p>
http://stackoverflow.com/questions/1488753/how-to-merge-two-branches-without-a-common-ancestor4How to merge two branches without a common ancestor?alexandrul2009-09-28T18:56:55Z2009-10-13T11:07:59Z
<p>I have started using Git in the middle of my project, where the first two commits are just some initial settings (.gitignore and .gitattributes), and the third commit <strong>M2</strong> adds the content of the SVN trunk:</p>
<pre><code>I1 -- I2 -- M2 -- N -- .. -- Z
</code></pre>
<p>I have imported the SVN history in a branch named <strong>svn</strong>, where <strong>M1</strong> is the SVN trunk (with the same content as <strong>M2</strong>, except .gitignore and .gitattributes):</p>
<pre><code>A -- B -- ... -- K -- L -- M1
</code></pre>
<p><strong>Q:</strong> What is the best approach in merging both branches?</p>
<p>I could merge <strong>M1</strong> and <strong>M2</strong> into <strong>M3</strong>, and then rebase, but I don't know how to delete the <strong>I1</strong> and <strong>I2</strong> commits and if I can safely remove the <strong>M3</strong> commit (I have found some advices to preserve the merge commits, but in this case <strong>M3</strong> it's not necessary anymore).</p>
<pre><code>A -- B -- ... -- K -- L -- M1
\
M3 -- N' -- .. -- Z'
/
I1 -- I2 -- M2 -- N -- .. -- Z
</code></pre>
<p>Another way would be to cherry-pick the <strong>N</strong> .. <strong>Z</strong> commits into <strong>svn</strong> branch by hand, but I would like to avoid this approach.</p>
<p>The most elegant solution would be to rebase the changes introduced by <strong>N</strong> .. <strong>Z</strong> commits on top of <strong>svn</strong> branch, but I didn't found yet the required syntax for two branches without a common ancestor.</p>
http://stackoverflow.com/questions/1482824/setup-git-server-with-msysgit-on-windows/1483342#14833420Answer by alexandrul for Setup GIT Server with Msysgit on Windowsalexandrul2009-09-27T11:03:31Z2009-10-13T10:46:55Z<p>So in your search you already found <a href="http://stackoverflow.com/questions/1238040/how-to-make-msysgit-installation-a-remote-repository">How to make msysgit installation a remote repository</a> and <a href="http://www.jedi.be/blog/2009/05/06/8-ways-to-share-your-git-repository/" rel="nofollow">8 ways to share your git repository</a>?</p>
<p>If you need really need gitosis, there are much more tutorials using Cygwin than using msysGit.</p>
http://stackoverflow.com/questions/1389281/tortoisegit-git-not-found4TortoiseGit - git not foundalexandrul2009-09-07T12:49:16Z2009-10-13T04:08:27Z
<p>I'm using TortoiseGit with msysGit installed with the <code>msysGit-fullinstall-1.6.4-preview20090729.exe</code> and it works in a very strange way:</p>
<ul>
<li>on the <code>About</code> windows it says it can't find git, even if all the operations seems to complete ok</li>
<li>on the <code>Settings</code> window, <code>General</code> tab, <code>MSysGit</code> section, the version is blank even with the correct path set (....\msysGit\bin)</li>
<li>on the <code>Settings</code> window, <code>Git\Config</code> tab, any attempt to alter and save the settings lead to some stange text-less error, and the only way to close the window is by `Cancel' button</li>
<li>on every operation it seems to look for git.exe on all the folders in path, which is at least strange, given that it knows exactly where to find the executable</li>
</ul>
<p>The first three points are not present if I install msysGit with the <code>Git-1.6.4-preview20090730.exe</code>, even if the path is set the same in both cases (....\msysGit\cmd)</p>
<p>What can I do to make TortoiseGit recognise git installation from the <code>msysGit-fullinstall-1.6.4-preview20090729.exe</code>?</p>
<p><hr /></p>
<p>Environment:</p>
<ul>
<li>Git-1.6.4-preview20090730.exe</li>
<li>msysGit-fullinstall-1.6.4-preview20090729.exe</li>
<li>TortoiseGit 1.0.2.0 32bit</li>
</ul>
<p><hr /></p>
<p><strong>EDIT:</strong></p>
<p>I don't want to put <code>msysGit\bin</code> in path, just <code>msysGit\cmd</code>.</p>
<p>If I simply replace the files from <code>msysGit-fullinstall-1.6.4-preview20090729.exe</code> with the files from an <code>Git-1.6.4-preview20090730.exe</code> installation, then TortoiseGit seems to recognize the git version and allows me to edit the Git\Config section in the settings. This is at least strange, given that the rest of the environment is not modified at all.</p>
<p>As soon as I restore the <code>msysGit-fullinstall-1.6.4-preview20090729.exe</code> files, TortoiseGit cease to function properly.</p>
http://stackoverflow.com/questions/1258353/running-git-instaweb-on-boot/1508981#15089811Answer by alexandrul for Running git-instaweb on bootalexandrul2009-10-02T11:29:16Z2009-10-02T11:29:16Z<p><strong>git-instaweb</strong> sets up <strong>gitweb</strong> into <strong>{project folder}/.git/gitweb</strong> folder, so you could simply call the web server with the config file generated inside that folder.</p>
http://stackoverflow.com/questions/1500400/is-tortoisegit-ready-for-prime-time-yet/1500434#15004344Answer by alexandrul for Is TortoiseGit ready for prime time yet?alexandrul2009-09-30T20:20:18Z2009-10-02T11:22:27Z<p>So far I'm using TortoiseGit 1.0.2.0 just for file status indication in explorer, and sometimes it just doesn't show the icons anymore for a given project (I didn't figure out yet what is the patterns that leads to that behavior).</p>
<p>IMHO in the long term it's better to learn to use git commands directly.</p>
<p><strong>UPDATE</strong></p>
<p>If TortoiseGit is not showing the file status icons, then delete the <strong>index_cached.igit</strong> file inside your <strong>.git</strong> folder.</p>
http://stackoverflow.com/questions/1238040/how-to-make-msysgit-installation-a-remote-repository/1414637#14146370Answer by alexandrul for How to make msysgit installation a remote repositoryalexandrul2009-09-12T08:29:36Z2009-09-27T10:21:58Z<p>The easiest way would be to share the repository and map it to the local machine, then you could push to it just like to another local repository.</p>
<p>Another solution would be to serve the remote repository through an Webdav enabled HTTP server (Apache should work ok).</p>
<p>For other solutions, see the <strong>Setting up Git server</strong> section on my blog: <a href="http://asimilatorul.com/adapter/post/git-resources/" rel="nofollow">Git resources</a></p>
http://stackoverflow.com/questions/1473096/local-pc-hosted-or-remote-svn/1473182#14731821Answer by alexandrul for Local PC Hosted or Remote SVNalexandrul2009-09-24T17:49:19Z2009-09-25T06:07:49Z<p>My current setup is based on Git: one PC hosts a bare repository, and each of the PCs are working on local repositories. The sync between the repos is done by simply sharing the bare repository, and in the same way any two local repositories can be synchronized.</p>
<p>See my question about this setup: <a href="http://stackoverflow.com/questions/1336051/easiest-or-best-way-to-keep-in-sync-a-msysgit-repository-between-three-internal-w">Easiest or best way to keep in sync a msysgit repository between three internal Windows-based notebooks?</a></p>
http://stackoverflow.com/questions/1413862/git-push-validation-from-windows-sets-author-to-unknown/1437378#14373782Answer by alexandrul for git push validation from windows sets author to unknownalexandrul2009-09-17T08:04:26Z2009-09-24T17:58:53Z<p>Did you try to set the user name with the following commands:</p>
<pre><code>// global settings
$ git config --global user.name "FirstName LastName"
$ git config --global user.email "user@example.com"
</code></pre>
<p>or</p>
<pre><code>// for a specific project
$ git config user.name "FirstName LastName"
$ git config user.email "user@example.com"
</code></pre>
<p><strong>Edit</strong>: global settings are stored in the folder designated by the HOME environment variables, which should be unique for each Windows user, so you will have real data about the logged in user.</p>
http://stackoverflow.com/questions/1423735/platform-independent-permalinks-best-practices0Platform-independent permalinks - best practices?alexandrul2009-09-14T20:28:26Z2009-09-15T07:55:20Z
<p>I'm trying to figure out a generic permalinks structure for blogging, in order to be platform-independent. I know that Wordpress supports permalinks, and has some plugins for various permalinks style migration, but I also have to get it working in FlatPress and PivotX, and I don't have URL rewriting support in every place.</p>
<p>So far, I will try to use a folder like <strong>/permalinks/</strong> into which an <strong>index.php</strong> file would redirect to the actual post, e.g. <strong>/permalinks/index.php?external-link-01</strong> would redirect to <strong>/index.php/2009-02-03/external-link-01</strong> or <strong>/index.php/e=42</strong>, based on the actual blogging platform being used.</p>
<p>For nicer permalinks, and to avoid URL rewriting, I could create a subfolder for each permalink (like <strong>/permalinks/external-link-01/</strong>), in which the default index file would do the redirection.</p>
<p>So,</p>
<ol>
<li>Is there a nicer way to maintain this kind of permalinks?</li>
<li>What kind of redirect must I use?</li>
<li>What can I do in order to allow bookmarking the permalink after the redirect? (e.g. the current page is <strong>/index.php/e=42</strong> and the bookmark should be <strong>/permalinks/index.php?external-link-01</strong>)</li>
</ol>
http://stackoverflow.com/questions/1389281/tortoisegit-git-not-found/1403547#14035470Answer by alexandrul for TortoiseGit - git not foundalexandrul2009-09-10T05:42:17Z2009-09-10T05:42:17Z<p>It seems that bash prompt from <code>msysGit-fullinstall-1.6.4-preview20090729.exe</code> also adds <code>msysGit\mingw\bin</code> to path, so in order to use <strong>TortoiseGit</strong> and/or <strong>Git Extensions</strong> I have copied all the files from <code>msysGit\mingw\bin</code> to <code>msysGit\bin</code> and set the location to <code>git.exe</code> in both tools.</p>
http://stackoverflow.com/questions/790744/recommended-key-size-and-type-for-gnupg1Recommended key size and type for GnuPG?alexandrul2009-04-26T12:08:34Z2009-09-09T10:55:39Z
<p><a href="http://www.glump.net/howto/gpg%5Fintro" rel="nofollow">A Practical Introduction to GNU Privacy Guard in Windows</a> recommends DSA and ElGamal, but I would like to know if RSA is good enough to use these days, and if so, what minimum key size should I use? Is it ok to use SHA-256 for signing (for compatibility with e-mail clients)?</p>
<p>Also, beside <a href="http://www.e-ignite.co.uk/html/key%5Ftypes.html" rel="nofollow">e-ignite: Key Types</a>, can you point to other sources for this subject?</p>
http://stackoverflow.com/questions/1316470/alternate-way-to-load-javascript-counter-script1Alternate way to load javascript counter scriptalexandrul2009-08-22T17:03:33Z2009-09-04T17:58:56Z
<p>I am trying to load the statcounter script from my custom js file. The original script looks like this:</p>
<pre><code><html>
<head>...</head>
<body>
...
<script type="text/javascript">
var sc_project=11111111;
var sc_invisible=1;
var sc_partition=11111111;
var sc_click_stat=1;
var sc_security="11111111";
</script><script type="text/javascript" src="http://www.statcounter.com/counter/counter_xhtml.js"></script>
...
</body></html>
</code></pre>
<p>The code seems to set the variables, then loads the counter script which reads the values of the variables and does its job.
I'm trying to call the counter script like this:</p>
<pre><code>// file: counters.js
function CounterFromStatCounter() {
sc_project=11111111;
sc_invisible=1;
sc_partition=11111111;
sc_click_stat=1;
sc_security="11111111";
var oHead = document.getElementsByTagName('HEAD').item(0);
var oScript= document.createElement("script");
oScript.type = "text/javascript";
oScript.src="http://www.statcounter.com/counter/counter_xhtml.js";
oHead.appendChild( oScript);
}
// main page
<html>
<head>
...
<script type="text/javascript" src="counters.js"></script>
...
</head>
<body>
...
<script type="text/javascript">
CounterFromStatCounter();
</script>
...
</body></html>
</code></pre>
<p>The code seems to work: the <strong>script</strong> element that references the statcounter script appears in the <strong>head</strong> section as it should, but no visits are recorded - this means that the variables set in my script cannot be accesed by the counter script.</p>
<p>What am I doing wrong? </p>
http://stackoverflow.com/questions/1336051/easiest-or-best-way-to-keep-in-sync-a-msysgit-repository-between-three-internal-w1Easiest or best way to keep in sync a msysgit repository between three internal Windows-based notebooks?alexandrul2009-08-26T16:39:10Z2009-08-26T19:27:10Z
<p>I want to keep in sync a couple of internal projects between 3 Windows-based notebooks using msysgit. No external repository is desired.</p>
<p>In the best case, every time two developers meets, they should be able to sync their projects.</p>
<p>The only setup I could figure out would be an IIS/Apache web server on each notebook, so one developer would fetch by http from the other notebook, then merge, then the other developer would fetch from the first notebook also by http and so on.</p>
<p>Is there any easier way to do it, or do you know a detailed tutorial about serving msysgit repositories by http with Apache/IIS ?</p>
http://stackoverflow.com/questions/837285/how-to-utilize-webdev-webserver-exe-vs-web-server-in-x64/1273812#12738121Answer by alexandrul for How to utilize WebDev.WebServer.exe (VS Web Server) in x64?alexandrul2009-08-13T18:38:56Z2009-08-13T18:46:52Z<p>You could try to compile a 64-bit Cassini from <a href="http://blogs.msdn.com/dmitryr/archive/2009/04/23/cassini-support-for-friendly-urls-routing.aspx" rel="nofollow">source</a>.</p>
http://stackoverflow.com/questions/1087496/subsonic-3-activerecord-generated-code-with-warnings3SubSonic 3 ActiveRecord generated code with warningsalexandrul2009-07-06T15:05:28Z2009-08-10T00:19:07Z
<p>While using SubSonic 3 with ActiveRecord T4 templates, the generated code shows many warnings about CLS-compliance, unused items, and lack of GetHashCode() implementation.</p>
<p>In order to avoid them, I did the following modifications:</p>
<pre><code>// Structs.tt
[CLSCompliant(false)] // added
public class <#=tbl.CleanName#>Table: DatabaseTable
{ ...
// ActiveRecord.tt
[CLSCompliant(false)] // added
public partial class <#=tbl.ClassName#>: IActiveRecord
{
#region Built-in testing
#pragma warning disable 0169 // added
static IList<<#=tbl.ClassName#>> TestItems;
#pragma warning restore 0169 // added
...
public override Int32 GetHashCode() // added
{
return this.KeyValue().GetHashCode();
}
...
</code></pre>
<p>Is there a better way to get rid of the warnings? Or a better GetHashCode() implementation?</p>
http://stackoverflow.com/questions/954481/rss-2-0-feed-set-update-limit-for-outlook-20070RSS 2.0 feed - set update limit for Outlook 2007alexandrul2009-06-05T06:18:43Z2009-08-06T15:47:58Z
<p>I am generating an RSS 2.0 feed using <strong>System.ServiceModel.Syndication.SyndicationFeed</strong> for Outlook 2007 SP2 clients, and I would like to know if it is possible to set the update limit for the feed in order to be recognized by Outlook client.</p>
http://stackoverflow.com/questions/1219574/cassini-exceptions-on-medium-trust-asp-net-mvc-application-using-linq-to-sql0Cassini exceptions on medium trust ASP.NET MVC application using Linq-to-SQLalexandrul2009-08-02T19:11:31Z2009-08-02T19:45:53Z
<p>I am receiving the following exception trying to browse a medium trust ASP.NET MVC application (using Linq-to-SQL) on Cassini 3.5.0.2:</p>
<pre><code>Could not load file or assembly 'Cassini, Version=3.5.0.2, Culture=neutral, PublicKeyToken=da0fefd60d522a7d'
or one of its dependencies. Failed to grant permission to execute. (Exception from HRESULT: 0x80131418)
</code></pre>
<p>with an inner exception:</p>
<pre><code>Execution permission cannot be acquired.
Stack trace:
at System.Security.SecurityManager.ResolvePolicy(Evidence evidence, PermissionSet reqdPset, PermissionSet optPset,
PermissionSet denyPset, PermissionSet& denied, Boolean checkExecutionPermission)
at System.Security.SecurityManager.ResolvePolicy(Evidence evidence, PermissionSet reqdPset, PermissionSet optPset,
PermissionSet denyPset, PermissionSet& denied, Int32& securitySpecialFlags, Boolean checkExecutionPermission)
</code></pre>
<p>The same application works on IIS7 and on internal VS2008 web server. Cassini works without any problems with ASP.NET MVC application which are not using Linq-to-SQL.</p>
<p>Both the ASP.NET MVC application and the Linq-to-SQL repository project have <code>[assembly: System.Security.AllowPartiallyTrustedCallers]</code> applied in order to work in medium trust.</p>
<p>Has anyone any clue about this problem?</p>
<p><strong>EDIT</strong></p>
<p>The exception is thrown on this line from <code>Server.cs</code>:</p>
<pre><code>return appManager.CreateObject(appId, hostType, virtualPath, physicalPath, false);
</code></pre>
http://stackoverflow.com/questions/436250/link-to-download-cassini-source-code/1219514#12195140Answer by alexandrul for Link to download Cassini source code?alexandrul2009-08-02T18:41:44Z2009-08-02T18:41:44Z<p>A newer version was released: <a href="http://blogs.msdn.com/dmitryr/archive/2009/04/23/cassini-support-for-friendly-urls-routing.aspx" rel="nofollow">Cassini 3.5.0.2: Support for Friendly URLs / Routing</a></p>
http://stackoverflow.com/questions/1187591/is-there-any-way-to-alter-a-column-to-switch-off-not-null/1187804#11878040Answer by alexandrul for Is there any way to ALTER a column to switch off 'NOT NULL'?alexandrul2009-07-27T12:03:19Z2009-07-27T12:03:19Z<p>When the number of tables is low enough I'm using SSMSE (SQL Server Management Studio Express), by entering design mode on each table and checking <strong>Allow Nulls</strong> on the required columns.</p>
<p>For a larger number of tables, try the answer provided by <strong>ChrisCM</strong>.</p>
http://stackoverflow.com/questions/1176879/visual-studio-2008-freezes-when-i-edit-xaml-code/1176900#11769000Answer by alexandrul for Visual Studio 2008 freezes when I edit XAML codealexandrul2009-07-24T10:46:00Z2009-07-27T07:42:58Z<p>You could try this update: <a href="https://connect.microsoft.com/VisualStudio/Downloads/DownloadDetails.aspx?DownloadID=17287" rel="nofollow">Installing DExplorer after VS 2008 breaks xaml intellisense </a></p>
<p><strong>EDIT:</strong> You could try closing the <strong>Properties</strong> window when editing XAML, it helped me before with ASP.NET.</p>
<p>Some other links:</p>
<ul>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/vssetup/thread/61d52410-f101-4725-8a78-00c8d141cca8" rel="nofollow">Xaml Editor Crashes after Visual Studio 2008 SP1</a></li>
<li><a href="http://www.thejoyofcode.com/Using%5Fthe%5FSource%5FCode%5FEditor%5Ffor%5FXAML%5Fin%5FVisual%5FStudio.aspx" rel="nofollow">Using the Source Code Editor for XAML in Visual Studio</a></li>
</ul>
http://stackoverflow.com/questions/1185397/sql-server-intellisense/1185495#11854950Answer by alexandrul for Sql Server Intellisense?alexandrul2009-07-26T20:43:41Z2009-07-26T20:43:41Z<p>I am using the free version of <a href="http://sqlmanager.net/en/products/mssql/manager/matrix" rel="nofollow">EMS SQL Manager for SQL Server</a>, which has code completion and syntax highlight.</p>
http://stackoverflow.com/questions/1020231/which-is-the-best-dns-server-solution-for-windows-server-2008-web-edition/1175994#11759940Answer by alexandrul for Which is the best DNS Server solution for Windows Server 2008 Web Editionalexandrul2009-07-24T06:19:11Z2009-07-24T06:19:11Z<p><a href="http://oldwww.isc.org/sw/bind/view/?release=9.6.1&noframes=1" rel="nofollow">BIND</a>. Plenty of documentation, and works just fine if you have time to learn.</p>
http://stackoverflow.com/questions/327448/windows-server-2008-as-development-machine-step-by-step14Windows Server 2008 as development machine - step by stepalexandrul2008-11-29T11:31:22Z2009-07-24T06:15:03Z
<p>I have found many tutorials about using Windows Server 2003 as a development machine, and very little information about Windows Server 2008 for the same purpose.</p>
<p>For a nicer experience, I have followed the steps from <a href="http://www.win2008workstation.com/wordpress/" rel="nofollow">Convert your Windows Server 2008 to a Workstation</a>.</p>
<p>I am searching for the requirements and installation order for IIS 7 with IIS 6 compatibility mode, .NET Framework 3.5 SP1 (does it require the installation of <code>.NET Framework 3.0</code> feature, or can be installed directly), SQL Server 2005 SP2 (with Reporting services and Analysis Services), Visual Studio 2008 SP1.</p>
http://stackoverflow.com/questions/1799561/string-format-for-castle-dictionaryadapter/1800443#1800443Comment by alexandrul on String format for Castle DictionaryAdapteralexandrul2009-11-25T22:48:07Z2009-11-25T22:48:07ZThank you, will give it a try.http://stackoverflow.com/questions/814432/xpath-visualization/814531#814531Comment by alexandrul on Xpath visualizationalexandrul2009-11-23T15:28:14Z2009-11-23T15:28:14Z@Gishu can you upload somewhere the XML file, the desired query, and the expected results?http://stackoverflow.com/questions/857754/how-do-i-split-a-sql-script-into-multiple-files/857832#857832Comment by alexandrul on How do I split a .sql script into multiple files?alexandrul2009-11-09T07:43:03Z2009-11-09T07:43:03ZHow can you make Database Publishing Wizard output separate files per object?http://stackoverflow.com/questions/1605487/using-ioc-container-for-reading-runtime-settingsComment by alexandrul on Using IoC container for reading runtime settingsalexandrul2009-10-23T10:01:19Z2009-10-23T10:01:19Z@Krzysztof Koźmic: thank you for your time and patience, I have updated the question.http://stackoverflow.com/questions/1605487/using-ioc-container-for-reading-runtime-settingsComment by alexandrul on Using IoC container for reading runtime settingsalexandrul2009-10-22T16:48:31Z2009-10-22T16:48:31Z@Krzysztof Koźmic: not really, I'm keeping my application settings as a class (with properties like smtp name, port, mail address and so on), and i would like to use the same IoC container for both my application as a DI and for loading my settings from an external configuration file.http://stackoverflow.com/questions/1270535/what-is-windows-vistas-equivalent-for-the-version-tab-in-properties/1587645#1587645Comment by alexandrul on What is Windows Vista's equivalent for the Version tab in Properties?alexandrul2009-10-21T06:15:20Z2009-10-21T06:15:20ZSadly, I haven't found any other way to display assembly version in explorer on vista, so all I have is this convention for my dll's.http://stackoverflow.com/questions/696582/what-orm-should-i-use-for-a-asp-net-mvc-project/700177#700177Comment by alexandrul on What ORM should I use for a ASP.Net MVC project?alexandrul2009-10-16T16:57:50Z2009-10-16T16:57:50Z@Matt: that's because ASP.NET MVC doesn't impose any restrictions on the ORM used, it's up to you to choose one.http://stackoverflow.com/questions/1559957/after-git-rm-why-is-that-file-still-present-when-a-co-worker-pulls/1560029#1560029Comment by alexandrul on after "git rm", why is that file still present when a co-worker pulls?alexandrul2009-10-14T05:49:29Z2009-10-14T05:49:29Z@Jacob: don't know about you, but I see it like a feedback, and I like to know the reasons for upvotinghttp://stackoverflow.com/questions/1556119/ssh-private-key-permissions-using-git-gui-or-ssh-keygen-are-too-open/1562318#1562318Comment by alexandrul on SSH Private Key Permissions using Git GUI or ssh-keygen are too openalexandrul2009-10-14T04:16:15Z2009-10-14T04:16:15Znope, I just generated the keys with putty-genhttp://stackoverflow.com/questions/1452783/git-clone-with-msysgit-on-windows-not-workingComment by alexandrul on 'git clone' with msysGit on Windows not workingalexandrul2009-10-13T16:46:47Z2009-10-13T16:46:47ZYou could also try Git 1.6.5 with msysGit as described on my blog ( <a href="http://asimilatorul.com/adapter/post/git-on-windows-with-msysgit/" rel="nofollow">asimilatorul.com/adapter/post/…</a> ), I'm happily using github and other repositories over git, ssh, and http protocols.http://stackoverflow.com/questions/1524655/asp-net-mvc-entity-framework-avoid-tag-soupComment by alexandrul on Asp.Net MVC / Entity Framework. Avoid tag soup?alexandrul2009-10-06T12:23:07Z2009-10-06T12:23:07ZIt would take some extra effort, but switching view engines might give you a clearer look of the page content. Take a look at Spark View Engine: <a href="http://sparkviewengine.com/" rel="nofollow">sparkviewengine.com</a> http://stackoverflow.com/questions/1524655/asp-net-mvc-entity-framework-avoid-tag-soup/1524732#1524732Comment by alexandrul on Asp.Net MVC / Entity Framework. Avoid tag soup?alexandrul2009-10-06T12:22:23Z2009-10-06T12:22:23Z@Martijn Laarman: thank you, you are correct, just couldn't show a spark sample in a comment.http://stackoverflow.com/questions/1524655/asp-net-mvc-entity-framework-avoid-tag-soup/1524732#1524732Comment by alexandrul on Asp.Net MVC / Entity Framework. Avoid tag soup?alexandrul2009-10-06T10:39:45Z2009-10-06T10:39:45Z@Martijn Laarman: please define "shameless plug". I just quoted from the project site to avoid a simple link answer. I don't use it, so I don't know to show the solution in Spark, and also the OP might not be interested in switching view engines.http://stackoverflow.com/questions/1488753/how-to-merge-two-branches-without-a-common-ancestor/1491057#1491057Comment by alexandrul on How to merge two branches without a common ancestor?alexandrul2009-09-29T12:47:13Z2009-09-29T12:47:13Z@Jakub: would you give an example of using filter-branch with grafts (as an answer in order to be able to upvote) ? I'm ok with rewriting history.http://stackoverflow.com/questions/1488753/how-to-merge-two-branches-without-a-common-ancestor/1491057#1491057Comment by alexandrul on How to merge two branches without a common ancestor?alexandrul2009-09-29T07:27:48Z2009-09-29T07:27:48Z+1 will look into it