User Mike Henry - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T02:50:10Zhttp://stackoverflow.com/feeds/user/14934http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/317759/why-is-the-indexer-on-my-net-component-not-always-accessible-from-vbscript0Why is the indexer on my .NET component not always accessible from VBScript?Mike Henry2008-11-25T15:42:49Z2009-11-24T13:34:31Z
<p>I have a .NET assembly which I am accessing from VBScript (classic ASP) via COM interop. One class has an indexer (a.k.a. default property) which I got working from VBScript by adding the following attribute to the indexer: <code>[DispId(0)]</code>. It works in most cases, but not when accessing the class as a member of another object.</p>
<p>How can I get it to work with the following syntax: <code>Parent.Member("key")</code> where Member has the indexer (similar to accessing the default property of the built-in <code>Request.QueryString</code>: <code>Request.QueryString("key")</code>)?</p>
<p>In my case, there is a parent class <code>TestRequest</code> with a <code>QueryString</code> property which returns an <code>IRequestDictionary</code>, which has the default indexer.</p>
<p>VBScript example:</p>
<pre><code>Dim testRequest, testQueryString
Set testRequest = Server.CreateObject("AspObjects.TestRequest")
Set testQueryString = testRequest.QueryString
testQueryString("key") = "value"
</code></pre>
<p>The following line causes an error instead of printing "value". This is the syntax I would like to get working:</p>
<pre><code>Response.Write(testRequest.QueryString("key"))
</code></pre>
<blockquote>
<p>Microsoft VBScript runtime (0x800A01C2)<br />
Wrong number of arguments or invalid property assignment: 'QueryString'</p>
</blockquote>
<p>However, the following lines <em>do</em> work without error and output the expected "value" (note that the first line accesses the default indexer on a temporary variable):</p>
<pre><code>Response.Write(testQueryString("key"))
Response.Write(testRequest.QueryString.Item("key"))
</code></pre>
<p>Below are the simplified interfaces and classes in C# 2.0. They have been registered via <code>RegAsm.exe /path/to/AspObjects.dll /codebase /tlb</code>:</p>
<pre><code>[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface IRequest {
IRequestDictionary QueryString { get; }
}
[ClassInterface(ClassInterfaceType.None)]
public class TestRequest : IRequest {
private IRequestDictionary _queryString = new RequestDictionary();
public IRequestDictionary QueryString {
get { return _queryString; }
}
}
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface IRequestDictionary : IEnumerable {
[DispId(0)]
object this[object key] {
[DispId(0)] get;
[DispId(0)] set;
}
}
[ClassInterface(ClassInterfaceType.None)]
public class RequestDictionary : IRequestDictionary {
private Hashtable _dictionary = new Hashtable();
public object this[object key] {
get { return _dictionary[key]; }
set { _dictionary[key] = value; }
}
}
</code></pre>
<p>I've tried researching and experimenting with various options but have not yet found a solution. Any help would be appreciated to figure out why the <code>testRequest.QueryString("key")</code> syntax is not working and how to get it working.</p>
<p>Note: This is a followup to <a href="http://stackoverflow.com/questions/299251/exposing-the-indexer-default-property-via-com-interop">Exposing the indexer / default property via COM Interop</a>.</p>
<p>Update: Here is some the generated IDL from the type library (using <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en" rel="nofollow">oleview</a>):</p>
<pre><code>[
uuid(C6EDF8BC-6C8B-3AB2-92AA-BBF4D29C376E),
version(1.0),
custom(0F21F359-AB84-41E8-9A78-36D110E6D2F9, AspObjects.IRequest)
]
dispinterface IRequest {
properties:
methods:
[id(0x60020000), propget]
IRequestDictionary* QueryString();
};
[
uuid(8A494CF3-1D9E-35AE-AFA7-E7B200465426),
version(1.0),
custom(0F21F359-AB84-41E8-9A78-36D110E6D2F9, AspObjects.IRequestDictionary)
]
dispinterface IRequestDictionary {
properties:
methods:
[id(00000000), propget]
VARIANT Item([in] VARIANT key);
[id(00000000),
http://stackoverflow.com/questions/1663004/why-is-my-nhibernate-query-failing-with-an-indexoutofrangeexception0Why is my NHibernate query failing with an IndexOutOfRangeException?Mike Henry2009-11-02T18:58:22Z2009-11-02T22:14:00Z
<p>I am using Fluent NHibernate and in certain cases my query is failing with a <code>System.IndexOutOfRangeException</code>.</p>
<p>It seems that the issue has to do with the combination of using <em>escaped column name(s)</em> in the mapping and calling <em><code>CreateSQLQuery().AddEntity()</code></em>. It works fine if none of the columns need escaping or if I instead use <code>CreateCriteria<Employee>()</code>.</p>
<pre><code>public class Employee {
public virtual string EmployeeNumber { get; set; }
public virtual string Username { get; set; }
}
public class EmployeeMapping : ClassMap<Employee> {
public EmployeeMapping() {
Table("Employees");
Id(e => e.EmployeeNumber)
.Column("No_");
Map(e => e.Username)
.Column("`E-mail Login`"); // Note the escaped column name
}
}
public class SqlRepository {
...
public IList<Employee> ListEmployees() {
using (ISession session = _sessionBuilder.GetSession()) {
return session
.CreateSQLQuery("SELECT No_, [E-mail Login] FROM Employees")
.AddEntity(typeof(Employee))
.List<Employee>();
}
}
}
</code></pre>
<p>Calling <code>ListEmployees()</code> results in a <code>System.IndexOutOfRangeException</code>.</p>
<p>However, if I change the <code>CreateSQLQuery().AddEntity()</code> call to <code>CreateCriteria<Employee>()</code>, it works fine. But my actual SQL is more complex so I don't think that will work for me.</p>
<p>Or, if I change the Username mapping to <code>Map(e => e.Username).Column("Username");</code> and change the SQL query to <code>SELECT No_, [E-mail Login] AS Username FROM Employees</code>, it works fine. But this would break the mapping for other places in my code that do use <code>CreateCriteria<Employee>()</code>. And I can't change the table schema at the moment.</p>
<p>Why is this failing? Do you have any other suggestions besides what I mentioned? Thanks.</p>
<p>I am using Fluent NHibernate 1.0, NHibernate 2.1.0.4000 and SQL Server 2005.</p>
<p>Here is the stack trace:</p>
<pre><code> NHibernate.ADOException was unhandled
Message="could not execute query\r\n[ SELECT No_, [E-mail Login] FROM Employees ]\r\n[SQL: SELECT No_, [E-mail Login] FROM Employees]"
Source="NHibernate"
SqlString="SELECT No_, [E-mail Login] FROM Employees"
StackTrace:
at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters)
at NHibernate.Loader.Loader.ListIgnoreQueryCache(ISessionImplementor session, QueryParameters queryParameters)
at NHibernate.Loader.Loader.List(ISessionImplementor session, QueryParameters queryParameters, ISet`1 querySpaces, IType[] resultTypes)
at NHibernate.Loader.Custom.CustomLoader.List(ISessionImplementor session, QueryParameters queryParameters)
at NHibernate.Impl.SessionImpl.ListCustomQuery(ICustomQuery customQuery, QueryParameters queryParameters, IList results)
at NHibernate.Impl.SessionImpl.List(NativeSQLQuerySpecification spec, QueryParameters queryParameters, IList results)
at NHibernate.Impl.SessionImpl.List[T](NativeSQLQuerySpecification spec, QueryParameters queryParameters)
at NHibernate.Impl.SqlQueryImpl.List[T]()
at NHibernateTest.Core.SqlRepository.ListEmployees() in C:\dev\NHibernateTest\NHibernateTest\SqlRepository.cs:line 14
at NHibernateTest.Console.Program.Main(String[] args) in C:\dev\NHibernateTest\NHibernateTest.Console\Program.cs:line 8
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException: System.IndexOutOfRangeException
Message="[E-mail Login]"
Source="System.Data"
StackTrace:
at System.Data.ProviderBase.FieldNameLookup.GetOrdinal(String fieldName)
at System.Data.SqlClient.SqlDataReader.GetOrdinal(String name)
at NHibernate.Driver.NHybridDataReader.GetOrdinal(String name)
at NHibernate.Type.NullableType.NullSafeGet(IDataReader rs, String name)
at NHibernate.Type.NullableType.NullSafeGet(IDataReader rs, String[] names, ISessionImplementor session, Object owner)
at NHibernate.Type.AbstractType.Hydrate(IDataReader rs, String[] names, ISessionImplementor session, Object owner)
at NHibernate.Persister.Entity.AbstractEntityPersister.Hydrate(IDataReader rs, Object id, Object obj, ILoadable rootLoadable, String[][] suffixedPropertyColumns, Boolean allProperties, ISessionImplementor session)
at NHibernate.Loader.Loader.LoadFromResultSet(IDataReader rs, Int32 i, Object obj, String instanceClass, EntityKey key, String rowIdAlias, LockMode lockMode, ILoadable rootPersister, ISessionImplementor session)
at NHibernate.Loader.Loader.InstanceNotYetLoaded(IDataReader dr, Int32 i, ILoadable persister, EntityKey key, LockMode lockMode, String rowIdAlias, EntityKey optionalObjectKey, Object optionalObject, IList hydratedObjects, ISessionImplementor session)
at NHibernate.Loader.Loader.GetRow(IDataReader rs, ILoadable[] persisters, EntityKey[] keys, Object optionalObject, EntityKey optionalObjectKey, LockMode[] lockModes, IList hydratedObjects, ISessionImplementor session)
at NHibernate.Loader.Loader.GetRowFromResultSet(IDataReader resultSet, ISessionImplementor session, QueryParameters queryParameters, LockMode[] lockModeArray, EntityKey optionalObjectKey, IList hydratedObjects, EntityKey[] keys, Boolean returnProxies)
at NHibernate.Loader.Loader.DoQuery(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies)
at NHibernate.Loader.Loader.DoQueryAndInitializeNonLazyCollections(ISessionImplementor session, QueryParameters queryParameters, Boolean returnProxies)
at NHibernate.Loader.Loader.DoList(ISessionImplementor session, QueryParameters queryParameters)
InnerException:
</code></pre>
http://stackoverflow.com/questions/1663004/why-is-my-nhibernate-query-failing-with-an-indexoutofrangeexception/1664067#16640670Answer by Mike Henry for Why is my NHibernate query failing with an IndexOutOfRangeException?Mike Henry2009-11-02T22:14:00Z2009-11-02T22:14:00Z<p>I got it to work by using aliases for the column names and using a result transformer. It's not ideal since it ignores my mapping and requires setting an alias for each column. But it works for now.</p>
<pre><code>public class SqlRepository {
...
public IList<Employee> ListEmployees() {
using (ISession session = _sessionBuilder.GetSession()) {
return session
.CreateSQLQuery(@"
SELECT No_ AS EmployeeNumber, [E-mail Login] AS Username
FROM Employees")
.AddScalar("EmployeeNumber", NHibernateUtil.String)
.AddScalar("Username", NHibernateUtil.String)
.SetResultTransformer(Transformers.AliasToBean<Employee>())
.List<Employee>();
}
}
}
</code></pre>
<p>Any better solutions? Could there be a bug in (Fluent) NHibernate causing the original issue?</p>
http://stackoverflow.com/questions/1203312/using-request-files-count-with-testcontrollerbuilder-from-mvccontrib0Using Request.Files.Count with TestControllerBuilder from MvcContrib?Mike Henry2009-07-29T21:59:57Z2009-10-07T19:23:11Z
<p>I have a controller action in ASP.NET MVC that handles uploaded files. However, it seems there is no way to call <code>Request.Files.Count</code> while using MvcContrib's <code>TestControllerBuilder</code>.</p>
<p>I know I can work around this by abstracting <code>Request.Files</code>. My questions are:</p>
<ol>
<li>Is it indeed the case that there is no direct way to call <code>Request.Files.Count</code> when using the <code>TestControllerBuilder</code>? Or am I doing something wrong?</li>
<li>Is there a way to stub the call to <code>Request.Files.Count</code> while using <code>TestControllerBuilder</code> using Rhino Mocks?</li>
<li>Do you think I should submit a request or patch for handling <code>Request.Files.Count</code> to MvcContrib?</li>
</ol>
<h2>Example code:</h2>
<p>I want to make sure that there is at least one file in the <code>Request.Files</code> collection so I have the following conditional in my action:</p>
<pre><code>public class MyController : Controller {
public ActionResult Upload() {
if (Request.Files == null || Request.Files.Count == 0)
ViewData.ModelState.AddModelError("File", "Please upload a file");
// do stuff
return View();
}
}
</code></pre>
<p>I am using the <code>TestControllerBuilder</code> from MvcContrib to create the test double for my controller tests. However, the call to <code>Request.Files.Count</code> always seems to throw a an exception. For example running the following NUnit test throws a <code>NotImplementedException</code> during the call to <code>controller.Upload()</code> at the call to <code>Request.Files.Count</code>:</p>
<pre><code>[Test]
public void Upload_should_return_default_view_given_one_file() {
MyController controller = new MyController();
TestControllerBuilder controllerBuilder = new TestControllerBuilder();
controllerBuilder.InitializeController(controller);
controllerBuilder.Files["file"] =
MockRepository.GenerateStub<HttpPostedFileBase>();
var result = controller.Upload() as ViewResult;
Assert.That(result.ViewData.ModelState.IsValid, Is.True);
result.AssertViewRendered().ForView(string.Empty);
}
</code></pre>
<p>I've also attempted stubbing the call to <code>Request.Files.Count</code> to no avail (I'm using Rhino Mocks). None of the below work (even if I change <code>controller</code> and/or <code>controllerBuilder</code> to a stub):</p>
<pre><code>controllerBuilder.Stub(cb => cb.HttpContext.Request.Files.Count).Return(1);
controller.Stub(c => c.Request.Files.Count).Return(1);
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1186708/rotating-jpegs-in-net-with-minimal-loss-of-quality0Rotating JPEGs in .NET with minimal loss of qualityMike Henry2009-07-27T06:27:42Z2009-07-27T07:53:47Z
<p>I am attempting to support rotating JPEG images from ASP.NET MVC (in 90 degree increments). I am attempting to use <code>System.Drawing</code> (GDI+), however I am running into issues.</p>
<p>I tried using <a href="http://msdn.microsoft.com/en-us/library/system.drawing.image.rotateflip.aspx" rel="nofollow"><code>Image.RotateFlip</code></a> which is able to rotate the image but causes a loss of quality. Even with an encoder quality of 100, there are still visible artifacts on the rotated image that weren't on the original image nor do they show up when I rotate it using other programs (Gimp, etc.).</p>
<pre><code>using (Image image = Image.FromFile("C:\\source.jpg")) {
ImageFormat sourceFormat = image.RawFormat;
image.RotateFlip(RotateFlipType.Rotate90FlipNone);
EncoderParameters encoderParams = null;
try {
if (sourceFormat == ImageFormat.Jpeg) {
encoderParams = new EncoderParameters(1);
encoderParams.Param[0] = new EncoderParameter(Encoder.Quality, 100L);
}
image.Save("C:\\target.jpg", GetEncoder(sourceFormat), encoderParams);
} finally {
if (encoderParams != null)
encoderParams.Dispose();
}
}
</code></pre>
<p>I found an article on <a href="http://msdn.microsoft.com/en-us/library/ms533845%28VS.85%29.aspx" rel="nofollow">transforming a JPEG without loss of information</a>. Using <code>Encoder.Transformation</code> appears to be an option from .NET - however I cannot get it to cause any of my JPEG test images to rotate at all, whether or not the dimensions are a multiple of 16.</p>
<pre><code>using (Image image = Image.FromFile("C:\\source.jpg")) {
ImageFormat sourceFormat = image.RawFormat;
EncoderParameters encoderParams = null;
try {
if (sourceFormat == ImageFormat.Jpeg) {
encoderParams = new EncoderParameters(1);
encoderParams.Param[0] = new EncoderParameter(Encoder.Transformation,
(long)EncoderValue.TransformRotate90);
}
image.Save("C:\\target.jpg", GetEncoder(sourceFormat), encoderParams);
} finally {
if (encoderParams != null)
encoderParams.Dispose();
}
}
</code></pre>
<p>Does anyone know how to successfully rotate a JPEG in .NET in 90 degree increments with minimal or no loss of quality using either of the above methods or another method? Thanks.</p>
<p>Also, here's my implementation of <code>GetEncoder</code>:</p>
<pre><code>private ImageCodecInfo GetEncoder(ImageFormat format) {
foreach (var info in ImageCodecInfo.GetImageEncoders())
if (info.FormatID == format.Guid)
return info;
return null;
}
</code></pre>
<h1>Edit:</h1>
<p>I updated the above code to better match my actual code. The bug was in the following line:</p>
<pre><code>if (sourceFormat == ImageFormat.Jpeg) {
</code></pre>
<p>It should have been:</p>
<pre><code>if (sourceFormat.Guid == ImageFormat.Jpeg.Guid) {
</code></pre>
http://stackoverflow.com/questions/1186708/rotating-jpegs-in-net-with-minimal-loss-of-quality/1186861#11868610Answer by Mike Henry for Rotating JPEGs in .NET with minimal loss of qualityMike Henry2009-07-27T07:17:04Z2009-07-27T07:53:47Z<p>Thanks for confirming that my posted code worked. This helped me isolate my problem. I feel stupid now. My actual code had a check for image format before setting <code>encoderParams</code> - but it had a bug:</p>
<pre><code>if (sourceFormat == ImageFormat.Jpeg) {
// set encoderParams here
</code></pre>
<p>I discovered the above conditional was always false so <code>encoderParams</code> wasn't being set. The fix was simple:</p>
<pre><code>if (sourceFormat.Guid == ImageFormat.Jpeg.Guid) {
</code></pre>
http://stackoverflow.com/questions/657170/query-unmapped-columns-in-nhibernate/1113005#11130053Answer by Mike Henry for Query Unmapped Columns in NHibernateMike Henry2009-07-11T05:12:32Z2009-07-11T05:12:32Z<p>Ayende Rahien posted an article which describes specifying <code>access="noop"</code> in the mapping to specify query-only properties. See <a href="http://ayende.com/Blog/archive/2009/06/10/nhibernate-ndash-query-only-properties.aspx" rel="nofollow" title="NHibernate – query only properties">NHibernate – query only properties</a>. I have not tried this myself.</p>
http://stackoverflow.com/questions/1042598/how-to-map-blog-archive-using-nhibernate0How to map blog archive using NHibernateMike Henry2009-06-25T07:31:49Z2009-06-25T14:33:22Z
<p>I would like to format a blog archive like below given <code>Year=2008</code> and <code>Month=2</code> (February):</p>
<ul>
<li>2009</li>
<li>2008
<ul>
<li>March</li>
<li>February
<ul>
<li>Article C</li>
<li>Article B</li>
<li>Article A</li>
</ul></li>
<li>January</li>
</ul></li>
<li>2007</li>
</ul>
<p>I have the following classes:</p>
<pre><code>public class BlogArchive {
public int Year { get; set; }
public int Month { get; set; }
public List<BlogYear> Years { get; set; }
}
public class BlogYear {
public virtual int Year { get; set; }
public virtual List<BlogMonth> Months { get; set; }
}
public class BlogMonth {
public virtual int Month { get; set; }
public virtual List<BlogArticle> Articles { get; set; }
}
public class BlogArticle {
public virtual int Id { get; set; }
public virtual DateTime Date { get; set; }
public virtual string Title { get; set; }
}
</code></pre>
<p>The table schema is like:</p>
<pre><code>CREATE TABLE BlogArticles
(
Id int IDENTITY(1,1) PRIMARY KEY,
ArticleDate datetime,
Title varchar(100)
)
</code></pre>
<p>In SQL I would get the years like:</p>
<pre><code>SELECT DISTINCT YEAR(ArticleDate) AS Year FROM BlogArticles ORDER BY Year DESC
</code></pre>
<p>and months for a year like:</p>
<pre><code>SELECT DISTINCT MONTH(ArticleDate) AS Month FROM BlogArticles WHERE YEAR(ArticleDate) = @year ORDER BY Month DESC
</code></pre>
<p>How would I map these collections using (Fluent) NHibernate? It doesn't seem obvious because year and month have to be calculated from <code>ArticleDate</code> rather than directly corresponding to specific key columns.</p>
<p>Or would you recommend a completely different strategy?</p>
<p>Note: This design assumes lazy-loading so only relevant data would be loaded.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel7How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-20T16:33:39Z2009-06-13T17:33:09Z
<p>According to <em><a href="http://weblogs.asp.net/scottgu/archive/2009/03/10/free-asp-net-mvc-ebook-tutorial.aspx" rel="nofollow">Professional ASP.NET MVC 1.0</a></em>, page 8, "If you are using VS 2008 Standard Edition or Visual Web Developer 2008 Express you will need to download and install the NUnit, MBUnit or XUnit extensions for ASP.NET MVC in order for [the Create Unit Test Project] dialog to be shown."</p>
<p>Is there such an extension available to download for NUnit 2.4.8? If so where can I download it from?</p>
<p>If not, how can I set it up? I looked at the <a href="http://stackoverflow.com/questions/21137/asp-net-mvc-and-nunit">ASP.Net MVC and nUnit</a> question and the articles <a href="http://msdn.microsoft.com/en-us/library/dd381614.aspx" rel="nofollow">How to: Add a Custom MVC Test Framework in Visual Studio</a> and <a href="http://blogs.msdn.com/webdevtools/archive/2008/03/06/asp-net-mvc-test-framework-integration-demo.aspx" rel="nofollow">ASP.NET MVC Test Framework Integration Walkthrough</a>. But they all refer to running <code>devenv /setup</code> which doesn't seem to be available for Visual Web Developer 2008 Express. Has anyone gotten the Create Unit Test Project dialog working with NUnit and VWD Express? How so?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/686215#6862154Answer by Mike Henry for How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-26T15:14:48Z2009-06-13T17:33:09Z<p><strong>Edit:</strong> There's an easier solution <a href="http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/805276#805276">below</a>.</p>
<p>I got the Create Unit Test Project dialog working with NUnit and Visual Web Developer Express. I had to add an NUnit <a href="http://blogs.msdn.com/webdevtools/archive/2008/03/06/asp-net-mvc-test-framework-integration-demo.aspx" rel="nofollow">test template</a> to the following location: <code>%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\VWDExpress\ProjectTemplates\CSharp\Test\1033</code> (I had to create the <code>Test\1033</code> subfolders).</p>
<p>Then I ran <code>VWDExpress /setup</code> per Craig Stuntz's recommendation (from <code>%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE</code>).</p>
<p>And it worked!</p>
<p>Note: I had previously added registry settings from <a href="http://blogs.msdn.com/webdevtools/archive/2008/03/06/asp-net-mvc-test-framework-integration-demo.aspx" rel="nofollow">here</a> but applied them to <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VWDExpress\9.0\MVC\TestProjectTemplates</code>.</p>
<p>For your convenience, here are the differences from the <a href="http://blogs.msdn.com/webdevtools/archive/2008/03/06/asp-net-mvc-test-framework-integration-demo.aspx" rel="nofollow">ASP.NET MVC Test Framework Integration Walkthrough</a> article:</p>
<p>Step 1. Copy the template zip files to <code>%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\VWDExpress\ProjectTemplates\CSharp\Test\1033</code> (note the VWDExpress folder)</p>
<p>Step 2. Before merging the registry file(s), edit them to point to the appropriate location under: <code>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VWDExpress\9.0\MVC\TestProjectTemplates</code> (note the VWDExpress key)</p>
<p>Step 4. Run <code>VWDExpress /setup</code> instead of <code>devenv /setup</code></p>
http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/805276#8052764Answer by Mike Henry for How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-04-30T03:50:12Z2009-04-30T03:50:12Z<p>I just found this <a href="http://blogs.msdn.com/webdevtools/archive/2009/04/28/updated-nunit-templates-for-asp-net-mvc-1-0-rtm.aspx" rel="nofollow">Updated NUnit Templates for ASP.Net MVC 1.0 RTM</a> which includes a cmd file to setup the NUnit test framework templates for VWD Express.</p>
<p>Yay, no more manual steps (unless you really want to).</p>
http://stackoverflow.com/questions/770419/how-to-make-a-parametrized-sql-query-on-classic-asp/783353#7833531Answer by Mike Henry for How to make a parametrized SQL Query on Classic ASP?Mike Henry2009-04-23T20:15:46Z2009-04-23T20:15:46Z<p>Another option to including <code>adovbs.inc</code> is to add a reference to the following type library near the top of your ASP. Supposedly this has better performance than an include:</p>
<pre><code><!--METADATA TYPE="TypeLib" NAME="ADODB Type Library" UUID="00000205-0000-0010-8000-00AA006D2EA4" FILE="C:\Program Files\Common Files\System\ado\msado15.dll" VERSION="2.5" -->
</code></pre>
<p><a href="http://www.asp101.com/articles/john/typelibs/default.asp" rel="nofollow">Here</a> is a list of some type libraries.</p>
http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/782468#7824681Answer by Mike Henry for How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-04-23T16:16:49Z2009-04-23T16:16:49Z<p>I just found a blog article that also addresses this issue: <a href="http://acoderslife.wordpress.com/2009/03/25/nunit-vwd-express-mvc-setup/" rel="nofollow">NUnit VWD Express MVC setup « A Coders Life</a></p>
http://stackoverflow.com/questions/355217/should-i-default-my-website-to-www-foo-or-not/355249#3552490Answer by Mike Henry for Should I default my website to www.foo or not?Mike Henry2008-12-10T06:31:48Z2008-12-10T06:31:48Z<p>I think one reason is to help with search rankings so that for each page only one page is getting rankings instead of being split between two domains.</p>
http://stackoverflow.com/questions/80258/how-to-get-someone-started-with-alt-net/344435#3444350Answer by Mike Henry for How to get someone started with ALT.NET Mike Henry2008-12-05T16:38:36Z2008-12-05T16:38:36Z<p>The <a href="http://altnetpodcast.com/" rel="nofollow">Alt.NET Podcast</a> may be a good place to get some ideas. They have podcasts on continuous improvement, agile, DI/IoC, ORM, OOP w/ Ruby, etc. (in that order).</p>
http://stackoverflow.com/questions/317759/why-is-the-indexer-on-my-net-component-not-always-accessible-from-vbscript/321147#3211470Answer by Mike Henry for Why is the indexer on my .NET component not always accessible from VBScript?Mike Henry2008-11-26T15:40:55Z2008-11-26T15:55:12Z<p>I found that <code>testRequest.QueryString()("key")</code> works, but what I want is <code>testRequest.QueryString("key")</code>.</p>
<p>I found a very relevant article by <a href="http://blogs.msdn.com/ericlippert/" rel="nofollow" title="Fabulous Adventures In Coding">Eric Lippert</a> (who has some really great articles on VBScript, by the way). The article, <a href="http://blogs.msdn.com/ericlippert/archive/2005/08/30/458051.aspx" rel="nofollow">VBScript Default Property Semantics</a>, discusses the conditions for whether to invoke a default property or just a method call. My code is behaving like a method call, though it seems to meet the conditions for a default property.</p>
<p>Here are the rules from Eric's article:</p>
<blockquote>
<p>The rule for implementers of
IDispatch::Invoke is if all of the
following are true:</p>
<ul>
<li>the caller invokes a property</li>
<li>the caller passes an argument list</li>
<li>the property does not actually take an argument list</li>
<li>that property returns an object</li>
<li>that object has a default property</li>
<li>that default property takes an argument list</li>
</ul>
<p>then invoke the default property with
the argument list.</p>
</blockquote>
<p>Can anyone tell if any of these conditions are not being met? Or could it be possible that the default .NET implementation of <code>IDispatch.Invoke</code> behaves differently? Any suggestions?</p>
http://stackoverflow.com/questions/316166/how-do-i-include-a-common-file-in-vbscript-similar-to-c-include/319816#3198160Answer by Mike Henry for How do I include a common file in VBScript (similar to C #include)?Mike Henry2008-11-26T05:18:19Z2008-11-26T05:18:19Z<p>IIS 5 and up also allow a <a href="http://support.microsoft.com/kb/224963" rel="nofollow" title="Using Enhanced <SCRIPT> Tags for Includes"><code>script</code> tag</a> for including other files from an ASP file. (Is your VBScript an ASP page or a Windows script?) Here's an example:</p>
<pre><code><script language="VBScript" runat="server" src="include.asp"></script>
</code></pre>
<p>The behavior and rules are a bit different from server-side includes. Note: I have never actually tried using this syntax from classic ASP.</p>
http://stackoverflow.com/questions/315242/source-control-setup/318924#3189240Answer by Mike Henry for Source control setupMike Henry2008-11-25T21:24:37Z2008-11-25T21:24:37Z<p>There are a couple of ways I've added projects to source control. Here's a higher level description:</p>
<p>One way is to import an empty top-level folder, then svn checkout, then copy the project files to that working copy, then svn add all but the files to be ignored (or svn revert specific files/folders) and set ignore properties as desired, then commit.</p>
<p>Another way is to make a copy of the project files, manually delete files and folders to be ignored, then svn import. Then delete those files. Then do an svn checkout, then setup the ignore properties on that working copy and svn commit. Then copy the original ignored files/folders to the working copy.</p>
<p>Of course, the more things that are globally ignored the easier these steps will be.</p>
http://stackoverflow.com/questions/299251/exposing-the-indexer-default-property-via-com-interop1Exposing the indexer / default property via COM InteropMike Henry2008-11-18T16:23:35Z2008-11-25T18:10:43Z
<p>I am attempting to write a component in C# to be consumed by classic ASP that allows me to access the indexer of the component (aka default property).</p>
<p>For example:<br />
C# component:</p>
<pre><code>public class MyCollection {
public string this[string key] {
get { /* return the value associated with key */ }
}
public void Add(string key, string value) {
/* add a new element */
}
}
</code></pre>
<p>ASP consumer:</p>
<pre><code>Dim collection
Set collection = Server.CreateObject("MyCollection ")
Call collection.Add("key", "value")
Response.Write(collection("key")) ' should print "value"
</code></pre>
<p>Is there an attribute I need to set, do I need to implement an interface or do I need to do something else? Or this not possible via COM Interop?</p>
<p>The purpose is that I am attempting to create test doubles for some of the built-in ASP objects such as Request, which make use of collections using these default properties (such as <code>Request.QueryString("key")</code>). Alternative suggestions are welcome.</p>
<p>Update: I asked a follow-up question: <a href="http://stackoverflow.com/questions/317759/why-is-the-indexer-on-my-net-component-not-always-accessible-from-vbscript">Why is the indexer on my .NET component not always accessible from VBScript?</a></p>
http://stackoverflow.com/questions/2300/how-do-i-build-a-collection-in-classic-asp/312122#3121220Answer by Mike Henry for How do I build a collection in classic ASP?Mike Henry2008-11-23T04:40:57Z2008-11-23T04:40:57Z<p>One approach I've used before is to use a property of the collection that returns an array, which can be iterated over.</p>
<pre><code>Class MyCollection
Public Property Get Items
Items = ReturnItemsAsAnArray()
End Property
...
End Class
</code></pre>
<p>Iterate like:</p>
<pre><code>Set things = New MyCollection
For Each thing in things.Items
...
Next
</code></pre>
http://stackoverflow.com/questions/287370/asp-vbscript-gotchas/312108#3121083Answer by Mike Henry for ASP/VBScript "Gotchas"Mike Henry2008-11-23T04:13:14Z2008-11-23T04:13:14Z<p>Conditionals are a bit unintuitive at times.</p>
<p>For example, when dealing with <code>Null</code>s: Although <code>True</code> and <code>Null</code> are not equal, the following expression will act like <code>False</code>. In this case it's good to check for <code>Null</code> explicitly using <code>IsNull</code>.</p>
<pre><code>valueIsTrue = True
valueIsNull = Null
If valueIsTrue <> valueIsNull Then ...
</code></pre>
<p>Also, unlike some other languages, all parts of a condition are evaluated even if the first part is <code>False</code>. For example, the following example would return an error if <code>myObject</code> were <code>Nothing</code>:</p>
<pre><code>If Not IsNothing(myObject) And myObject.IsValid() Then ...
</code></pre>
<p>The solution is to separate the conditions using nested <code>If</code>s or some other means:</p>
<pre><code>If Not IsNothing(myObject) Then
If myObject.IsValid() Then
...
</code></pre>
http://stackoverflow.com/questions/299251/exposing-the-indexer-default-property-via-com-interop/311946#3119460Answer by Mike Henry for Exposing the indexer / default property via COM InteropMike Henry2008-11-23T00:25:05Z2008-11-23T00:34:16Z<p>Here is a better solution that uses an indexer rather than an <a href="#301260" rel="nofollow"><code>Item</code> method</a>:</p>
<pre><code>public class MyCollection {
private NameValueCollection _collection;
[DispId(0)]
public string this[string name] {
get { return _collection[name]; }
set { _collection[name] = value; }
}
}
</code></pre>
<p>It can be used from ASP like:</p>
<pre><code>Dim collection
Set collection = Server.CreateObject("MyCollection")
collection("key") = "value"
Response.Write(collection("key")) ' should print "value"
</code></pre>
<p>Note: I could not get this to work earlier because I had overloaded the indexer, <code>this[string name]</code>, with <code>this[int index]</code>.</p>
http://stackoverflow.com/questions/299251/exposing-the-indexer-default-property-via-com-interop/301260#3012600Answer by Mike Henry for Exposing the indexer / default property via COM InteropMike Henry2008-11-19T07:43:28Z2008-11-23T00:31:35Z<p>Thanks to Rob Walker's tip, I got it working by adding the following method and attribute to MyCollection:</p>
<pre><code>[DispId(0)]
public string Item(string key) {
return this[key];
}
</code></pre>
<p>Edit: See <a href="#311946" rel="nofollow">this better solution</a> which uses an indexer.</p>
http://stackoverflow.com/questions/302781/classic-asp-db-opening-function-does-not-work/310736#3107362Answer by Mike Henry for Classic ASP DB opening function does not workMike Henry2008-11-22T02:10:52Z2008-11-22T02:10:52Z<p>I see a few possible syntax issues with the code you posted:</p>
<pre><code> ...
conn.open = connStr_FC08
...
connDB = conn
...
cn = connDB("Y")
</code></pre>
<p>Should it be updated to the following?</p>
<pre><code> ...
conn.ConnectionString = connStr_FC08
...
Set connDB = conn
...
Set cn = connDB("Y")
</code></pre>
http://stackoverflow.com/questions/305688/can-you-turn-off-case-sensitivity-in-vbscript-strings/310643#3106433Answer by Mike Henry for Can you turn off case-sensitivity in VBScript strings?Mike Henry2008-11-22T00:44:03Z2008-11-22T00:44:03Z<p>There is a <a href="http://msdn.microsoft.com/en-us/library/ya4w6fwy(VS.85).aspx" rel="nofollow"><code>StrComp</code></a> function which allows performing a case-insensitive comparison of two strings by passing <code>vbTextCompare</code> as the third argument. The main documentation doesn't make that obvious, but it is discussed in this <a href="http://www.microsoft.com/technet/scriptcenter/resources/qanda/jun05/hey0622.mspx" rel="nofollow" title="How Can I Compare Two String Values Regardless of Letter Case?">Hey, Scripting Guy</a> article.</p>
<p>For example:</p>
<pre><code>If StrComp(strFoo, Request.QueryString("x"), vbTextCompare) = 0 Then ...
</code></pre>
<p>However, in practice, I use <code>LCase</code> or <code>UCase</code> way more than <code>StrComp</code> for case-insensitive string comparisons because it's more obvious to me.</p>
http://stackoverflow.com/questions/95724/what-is-the-easiest-way-to-convert-from-asp-classic-to-asp-net/293759#2937590Answer by Mike Henry for What is the easiest way to convert from asp classic to asp.net?Mike Henry2008-11-16T10:21:34Z2008-11-16T10:27:40Z<p>I'm also working on a gradual migration from classic ASP to ASP.NET. Our first phase is migrating some common logic from an ASP include to a .NET assembly that is exposed to COM Interop so they can be called by both classic ASP and ASP.NET. I've written some tests using <a href="http://aspunit.sourceforge.net/" rel="nofollow">ASPUnit</a> to verify the behavior after migration to the .NET assembly (with the added benefit of safer refactoring). Once the core logic is in .NET, we can begin creating new pages in ASP.NET and migrating individual ASP pages to ASP.NET at our own pace.</p>
<p>I would recommend .NET 2.0 or 3.5 over 1.1. ASP.NET MVC looks like an attractive upgrade path.</p>
http://stackoverflow.com/questions/270510/how-to-encrypt-in-vbscript-using-aes/293716#2937161Answer by Mike Henry for How to encrypt in vbscript using AES?Mike Henry2008-11-16T09:12:40Z2008-11-16T09:12:40Z<p>One option would be to create a simple wrapper class in .NET for the <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.rijndaelmanaged.aspx" rel="nofollow">RijndaelManaged class</a> from the .NET framework and expose it via <a href="http://msdn.microsoft.com/en-us/library/zsfww439.aspx" rel="nofollow" title="Exposing .NET Framework Components to COM">COM Interop</a> so you can call it from VBScript.</p>
http://stackoverflow.com/questions/277159/how-to-stop-vs2008-trying-to-compile-asp-pages-as-visual-basic/293682#2936821Answer by Mike Henry for How to stop VS2008 trying to compile .ASP pages as Visual Basic?Mike Henry2008-11-16T08:26:27Z2008-11-16T08:26:27Z<p>Have you installed Service Pack 1? It addresses some issues with classic ASP.</p>
http://stackoverflow.com/questions/23899/best-practices-for-refactoring-classic-asp/293072#2930722Answer by Mike Henry for Best practices for refactoring classic ASP?Mike Henry2008-11-15T21:27:24Z2008-11-15T21:27:24Z<p>I use <a href="http://aspunit.sourceforge.net/" rel="nofollow">ASPUnit</a> for unit testing some of our classic ASP and find it to be helpful. It may be old, but so is ASP. It's simple, but it does work and you can customize or extend it if necessary.</p>
<p>I've also found <a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> by Michael Feathers to be a helpful guide for finding ways to get some of that old code under test.</p>
<p>Include files can help as long as you keep it simple. At one point I tried creating an include for each class and that didn't work out too well. I like having a couple main includes with common business logic, and for complicated pages sometimes an include with logic for each of those pages. I suppose you could do MVC with a similar setup.</p>
http://stackoverflow.com/questions/269581/what-are-alternatives-to-generic-collections-for-com-interop0What are alternatives to generic collections for COM Interop?Mike Henry2008-11-06T17:43:38Z2008-11-06T20:10:00Z
<p>I am attempting to return a collection of departments from a .NET assembly to be consumed by ASP via COM Interop. Using .NET I would just return a generic collection, e.g. <code>List<Department></code>, but it seems that generics don't work well with COM Interop. So, what are my options?</p>
<p>I would like to both iterate over the list and be able to access an item by index. Should I inherit from <code>List<Department></code>, implement an <code>IList</code>, <code>IList<Department></code> or another interface, or is there a better way? Ideally I would prefer not to have to implement a custom collection for every type of list I need. Also, will <code>List[index]</code> even work with COM Interop?</p>
<p>Thanks,
Mike</p>
<h2>Example .NET components (C#):</h2>
<pre><code>public class Department {
public string Code { get; private set; }
public string Name { get; private set; }
// ...
}
public class MyLibrary {
public List<Department> GetDepartments() {
// return a list of Departments from the database
}
}
</code></pre>
<h2>Example ASP code:</h2>
<pre><code><%
Function PrintDepartments(departments)
Dim department
For Each department In departments
Response.Write(department.Code & ": " & department.Name & "<br />")
Next
End Function
Dim myLibrary, departments
Set myLibrary = Server.CreateObject("MyAssembly.MyLibrary")
Set departments = myLibrary.GetDepartments()
%>
<h1>Departments</h1>
<% Call PrintDepartments(departments) %>
<h1>The third department</h1>
<%= departments(2).Name %>
</code></pre>
<h2>Related questions:</h2>
<ul>
<li><a href="http://stackoverflow.com/questions/161704/using-generic-lists-on-serviced-component">Using Generic lists on serviced component</a></li>
<li><a href="http://stackoverflow.com/questions/56375/are-non-generic-collections-in-net-obsolete">Are non-generic collections in .NET obsolete?</a></li>
</ul>
http://stackoverflow.com/questions/317759/why-is-the-indexer-on-my-net-component-not-always-accessible-from-vbscript/1539519#1539519Comment by Mike Henry on Why is the indexer on my .NET component not always accessible from VBScript?Mike Henry2009-10-14T19:53:51Z2009-10-14T19:53:51ZThanks for your thorough reply. I haven't had a chance to test this yet but will try to soon.http://stackoverflow.com/questions/1186708/rotating-jpegs-in-net-with-minimal-loss-of-quality/1186777#1186777Comment by Mike Henry on Rotating JPEGs in .NET with minimal loss of qualityMike Henry2009-07-27T07:43:21Z2009-07-27T07:43:21ZThanks for the suggestion. That didn't help but I found my bug.http://stackoverflow.com/questions/1186708/rotating-jpegs-in-net-with-minimal-loss-of-qualityComment by Mike Henry on Rotating JPEGs in .NET with minimal loss of qualityMike Henry2009-07-27T07:40:21Z2009-07-27T07:40:21ZThanks @pb, I was getting an ImageCodecInfo but not an encoderParams because my actual code had an additional check before setting it that had a bug.http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/690994#690994Comment by Mike Henry on How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-28T05:52:08Z2009-03-28T05:52:08ZTry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VWDExpress\9.0\MVC\TestProjectTemplateshttp://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/676480#676480Comment by Mike Henry on How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-26T15:02:17Z2009-03-26T15:02:17ZYour comment got me thinking. I already had my NUnit test template in that folder, but not in "...\Microsoft Visual Studio 9.0\Common7\IDE\VWDExpress\ProjectTemplates\CSharp\Test\1033".http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/679665#679665Comment by Mike Henry on How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-25T19:48:52Z2009-03-25T19:48:52ZI tried reinstalling NUnit and rerunning VWDExpress /setup but I still do not see the Create Unit Test Project dialog.http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/676480#676480Comment by Mike Henry on How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-25T19:34:57Z2009-03-25T19:34:57ZThanks. I tried running the xunit.installer.exe from xUnit.net 1.1 but received the following exception:
System.ArgumentNullException: Value cannot be null.
Parameter name: path1
at System.IO.Path.Combine(String path1, String path2)
at Xunit.Installer.MvcHelper.GetVs90ProjectTemplatePath()
...http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/679665#679665Comment by Mike Henry on How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-25T19:31:42Z2009-03-25T19:31:42ZYes, I installed the full .net 2.0 NUnit 2.4.8 using the MSI installer. I suppose it may be worth trying to uninstall and reinstall NUnit since I installed NUnit before ASP.NET MVC.http://stackoverflow.com/questions/666941/how-do-i-add-nunit-as-a-test-framework-option-for-asp-net-mvc-to-visual-web-devel/667586#667586Comment by Mike Henry on How do I add NUnit as a test framework option for ASP.NET MVC to Visual Web Developer 2008 Express?Mike Henry2009-03-20T20:24:33Z2009-03-20T20:24:33ZThanks. I tried that, but still no Create Unit Test Project dialog. I wonder which step I could have messed up.http://stackoverflow.com/questions/87303/how-can-i-create-a-human-readable-script-for-every-dts-package-on-a-sql-server/150970#150970Comment by Mike Henry on How can I create a human-readable script for every DTS package on a SQL server?Mike Henry2008-12-18T17:56:47Z2008-12-18T17:56:47ZTo get this working for me I had to fix the conditional in Main to <code>If strServerName <> "" Then</code> and add error handling to the DTSDataPumpTask section of GetTasks.
http://stackoverflow.com/questions/87303/how-can-i-create-a-human-readable-script-for-every-dts-package-on-a-sql-server/150970#150970Comment by Mike Henry on How can I create a human-readable script for every DTS package on a SQL server?Mike Henry2008-12-18T17:11:27Z2008-12-18T17:11:27ZThanks for sharing this! Looks like some of the angle brackets didn't format properly.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234152#234152Comment by Mike Henry on What is your best programmer joke?Mike Henry2008-12-02T06:20:37Z2008-12-02T06:20:37ZHilarious. FYI a spanner is a wrenchhttp://stackoverflow.com/questions/195508/how-to-obtain-a-list-of-available-com-interfaces-in-windows/195517#195517Comment by Mike Henry on How to obtain a list of available COM interfaces in WindowsMike Henry2008-11-25T20:48:00Z2008-11-25T20:48:00ZI ended up using OleView from the Windows 2003 Resource Kit Tools since it includes iviewers.dll: <a href="http://www.microsoft.com/downloads/details.aspx?familyid=9d467a69-57ff-4ae7-96ee-b18c4790cffd&displaylang=en" rel="nofollow">microsoft.com/downloads/…</a>http://stackoverflow.com/questions/317759/why-is-the-indexer-on-my-net-component-not-always-accessible-from-vbscript/317851#317851Comment by Mike Henry on Why is the indexer on my .NET component not always accessible from VBScript?Mike Henry2008-11-25T17:50:03Z2008-11-25T17:50:03ZI got oleview working from the win 2003 resource kit and posted the generated IDL. PS Are your initials "WAG", or does that mean something else?http://stackoverflow.com/questions/317759/why-is-the-indexer-on-my-net-component-not-always-accessible-from-vbscript/317851#317851Comment by Mike Henry on Why is the indexer on my .NET component not always accessible from VBScript?Mike Henry2008-11-25T16:56:18Z2008-11-25T16:56:18ZI tried using get_Item and it had the same issue where I could use the indexer from a temporary variable but not like testRequest.QueryString("key").