User Graham Ambrose - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T05:50:19Zhttp://stackoverflow.com/feeds/user/68378http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/575021/webservicehostfactory-and-iis-authentication2WebServiceHostFactory and IIS authenticationGraham Ambrose2009-02-22T14:55:35Z2009-11-22T15:25:09Z
<p>I encounter a problem with using the WebServiceHostFactory in IIS.</p>
<p>"IIS specified authentication schemes 'IntegratedWindowsAuthentication, Anonymous', but the binding only supports specification of exactly one authentication scheme. Valid authentication schemes are Digest, Negotiate, NTLM, Basic, or Anonymous. Change the IIS settings so that only a single authentication scheme is used."</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/331b2440-ff41-451e-a498-adfac2fe4493/" rel="nofollow">I wanted to keep both authentication schemes and managed to do so by not using the factory but setting up the endpoint manualy in web.config.</a></p>
<p>My question is what is WebServiceHostFactory doing to get this result? I was under the impression that WebServiceHostFactory would set the binding to the same webHttpBinding that I used in my config.</p>
<p>Edit:
I have looked at WebServiceHostFactory in reflector and it is not doing anything clever. It is just a simple factory for the WebServiceHost.</p>
<p>Does IIS still use a service host if you set up the endpoint in config? Or is the WebServiceHost setting things up differently.</p>
http://stackoverflow.com/questions/1263906/inferring-ldap-address-from-nt-domain-name1Inferring LDAP address from NT domain nameGraham Ambrose2009-08-12T02:13:36Z2009-08-17T10:55:34Z
<p>Given a NT style account name (DOMAIN\UserName) is it possible to infer what the LDAP address for that domain is so that user info can be looked up?</p>
<p>My scenario:
I have an asp.net app running on IIS that accepts both anonymous and domain users. The anonymous users have to sign in but the domain users I check the server headers for the domain user name provided by IIS. I need to look up some info from active directory like email address etc. I have got this working if I supply the LDAP address in config but would prefer not to have to maintain this extra config value if I can avoid it.</p>
http://stackoverflow.com/questions/873195/why-use-a-web-framework-like-rails-over-php/873332#8733324Answer by Graham Ambrose for Why use a web framework (like rails) over php?Graham Ambrose2009-05-16T21:18:30Z2009-05-16T21:18:30Z<p>Writing it your self may make it easier for you to understand things your self but unfortunately it can make it much harder for other developers to understand what is happening. Frameworks will often be better documented and have a larger community that can support a new developer that is working on the app that you wrote.</p>
http://stackoverflow.com/questions/851960/tfs-unittesting-not-deploying-local-copy-assembly-to-test-dir-when-on-build-serve1TFS UnitTesting not deploying local copy assembly to test dir when on build serverGraham Ambrose2009-05-12T09:34:03Z2009-05-14T14:48:33Z
<p>I have an assembly that needs to be in the test output dir for my tests to run.
I have the assembly referenced as a local copy in the project but on the build server this gets ignored.
The two ways I have found to fix this are</p>
<ol>
<li><p>Add a special attribute to test method that will make sure the file is there for each test.</p>
<p>[DeploymentItem("my assembly")]</p>
<p>This is not very practical as this assembly is required for almost every test in the assembly.</p></li>
<li><p>Add test run config file with special deployment section. I am using a TestContainer in my build scripts to run the tests I think that this may be the reason my included test run config does not get picked up and the assembly not copied. I would prefer to not have a vsmdi test list file as I am trying to run all tests and I feel this would be a violation of DRY.</p></li>
</ol>
<p>Any suggestions on how I can get my tests running?</p>
http://stackoverflow.com/questions/851960/tfs-unittesting-not-deploying-local-copy-assembly-to-test-dir-when-on-build-serve/863754#8637541Answer by Graham Ambrose for TFS UnitTesting not deploying local copy assembly to test dir when on build serverGraham Ambrose2009-05-14T14:48:33Z2009-05-14T14:48:33Z<p>As my assembly was being dynamicly loaded the unit test framework was not copying it.
I added a explict refrence to it by calling typeof on one of the types in the assembly and all is fine.</p>
<p>Thanks Jerome Laban for your help with this one.</p>
http://stackoverflow.com/questions/848223/building-a-wpf-app-with-nant/850471#8504711Answer by Graham Ambrose for Building a WPF App with NAntGraham Ambrose2009-05-11T23:03:50Z2009-05-11T23:15:35Z<p>You can compile a WPF application using CSC if you do not use any XAML in your application otherwise you will want to compile the WPF application using MSBuild.</p>
<p>Which con be done using the NAnt exec task.</p>
http://stackoverflow.com/questions/801429/problem-reflecting-in-asp-net-context1Problem reflecting in ASP.net contextGraham Ambrose2009-04-29T08:27:11Z2009-04-29T09:10:42Z
<p>I have a ASP.net application that is referencing a external assembly that I need to dynamically load and discover any types implementing a known interface. The problem I am having is that the type I reflect does not match the same interface that is running and so I cannot cast it.</p>
<p>Example:</p>
<p>This code is run in ASP.net app.</p>
<pre><code>var assembly = Assembly.LoadFile(Path.Combine(HttpRuntime.BinDirectory, "ExternalAssembly.dll"));
var type = assembly.GetExportedTypes().First<Type>(x => x.Name == "AClass"); // AClass implements IAInterface
var reflectedInterface = type.GetInterface(typeof(IAmAInterface).ToString());
if (reflectedInterface != typeof(IAmAInterface))
throw new Exception("This makes me sad"); // This code gets run
</code></pre>
<p>The only difference I can see between the reflected interface I loaded from the bin and the interface returned from typeof is that the typeof assembly has a location in the temp ASP.net path (C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\08c43c8b\3adac8cf\assembly\dl3\eb7a4127\0235ea60_a3c8c901\ReflectionTest.DLL)</p>
<p>Thanks Paul Alexander I have changed the code to use the Assembly.Load method not Assembly.LoadFile which solves the problem.</p>
<p>wwilden: I also tried extracting the interface into it's own assembly and this does also solve the problem.</p>
http://stackoverflow.com/questions/502250/bind-to-a-method-in-wpf/603172#6031720Answer by Graham Ambrose for Bind to a method in WPF?Graham Ambrose2009-03-02T17:24:20Z2009-03-02T17:24:20Z<p>ObjectDataProvider also has an ObjectInstance property that can be used instead of ObjectType</p>
http://stackoverflow.com/questions/590415/nhibernate-column-does-not-allow-nulls-insert-fails/590431#5904310Answer by Graham Ambrose for NHibernate: Column does not allow nulls. INSERT failsGraham Ambrose2009-02-26T12:58:10Z2009-02-26T12:58:10Z<p>You should save the address before saving the person. Depending on the generator you may have to use the save overload that passes in the ID.</p>
<p>If you need the save to be implicit you should set the cascade of address property in the person.</p>
http://stackoverflow.com/questions/582772/looking-for-some-examples-of-gui-apps-with-great-design/582801#5828014Answer by Graham Ambrose for Looking for some examples of GUI apps with great design.Graham Ambrose2009-02-24T17:55:07Z2009-02-24T17:55:07Z<p>I enjoyed <a href="http://www.dnrtv.com/default.aspx?showNum=112" rel="nofollow">these dot net rocks tv videos by Mark Miller on The Science of a Great User Experience</a> really got me thinking about good ui:</p>
<p><a href="http://www.dnrtv.com/default.aspx?showNum=112" rel="nofollow">http://www.dnrtv.com/default.aspx?showNum=112</a></p>
<p><a href="http://www.dnrtv.com/default.aspx?showNum=123" rel="nofollow">http://www.dnrtv.com/default.aspx?showNum=123</a></p>
http://stackoverflow.com/questions/428573/managing-complex-web-config-files-between-deployment-environments/575052#5750521Answer by Graham Ambrose for Managing complex Web.Config files between deployment environments.Graham Ambrose2009-02-22T15:17:33Z2009-02-22T15:17:33Z<p>I use this tool: <a href="http://xmlpreprocess.sourceforge.net/usersguide.html" rel="nofollow">xmlpreprocess</a></p>
<p>we maintain separate 'property' files for each environment that are merged in by the deployment script.</p>
http://stackoverflow.com/questions/1263906/inferring-ldap-address-from-nt-domain-name/1266990#1266990Comment by Graham Ambrose on Inferring LDAP address from NT domain nameGraham Ambrose2009-08-17T13:39:32Z2009-08-17T13:39:32ZThanks a lot, that's a fine looking answer. I was using a search root as I though it was required but with out my code rocks along with out the unnecessary config.http://stackoverflow.com/questions/1263906/inferring-ldap-address-from-nt-domain-name/1266990#1266990Comment by Graham Ambrose on Inferring LDAP address from NT domain nameGraham Ambrose2009-08-17T09:45:49Z2009-08-17T09:45:49ZBe nice to support different set-ups but I have one forest one domain that the ASP.NET server belongs too.http://stackoverflow.com/questions/1263906/inferring-ldap-address-from-nt-domain-name/1266990#1266990Comment by Graham Ambrose on Inferring LDAP address from NT domain nameGraham Ambrose2009-08-13T09:38:26Z2009-08-13T09:38:26ZI’m not very familiar with domain controllers I’m afraid but I think I understand what you are saying.
If I have the netBios name of the forest controller I can use that to look up the LDAP address for the user’s domain.
My problem I do not know how to get the address for any of the domain controllers. So I guess my question should be it is infer the netBois name of the domain controller for a machine when user is asp.net user.http://stackoverflow.com/questions/1263906/inferring-ldap-address-from-nt-domain-nameComment by Graham Ambrose on Inferring LDAP address from NT domain nameGraham Ambrose2009-08-12T07:58:40Z2009-08-12T07:58:40ZYes as in LDAP://hostnamehttp://stackoverflow.com/questions/851960/tfs-unittesting-not-deploying-local-copy-assembly-to-test-dir-when-on-build-serveComment by Graham Ambrose on TFS UnitTesting not deploying local copy assembly to test dir when on build serverGraham Ambrose2009-05-13T17:44:08Z2009-05-13T17:44:08ZI am using SQLite in memory database with NHibernate. The SQLite assembly is being dynamically loaded by NHibernate. I did include a reference in the test assembly but there is no reference to types. I will try adding an explicit type reference when I am setting up my tests see if that helps.http://stackoverflow.com/questions/848223/building-a-wpf-app-with-nant/850471#850471Comment by Graham Ambrose on Building a WPF App with NAntGraham Ambrose2009-05-12T14:56:34Z2009-05-12T14:56:34ZIf you are using Visual Studio 2005 and up then you can avoid it as all projects are already MSBuild files. MSBuild also understands solution files.http://stackoverflow.com/questions/189280/problem-using-sqlite-memory-with-nhibernate/196979#196979Comment by Graham Ambrose on Problem using SQLite :memory: with NHibernateGraham Ambrose2009-05-11T12:38:23Z2009-05-11T12:38:23ZDo you use the OpenSession overload to suppy the connection or do you have a more cunning way of using the same connection?http://stackoverflow.com/questions/590415/nhibernate-column-does-not-allow-nulls-insert-fails/590431#590431Comment by Graham Ambrose on NHibernate: Column does not allow nulls. INSERT failsGraham Ambrose2009-02-26T13:12:36Z2009-02-26T13:12:36ZDid you get the address with the same session that you are using to do the save? If not you need to join the address to the saving session.