User Matt Bishop - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T15:39:17Zhttp://stackoverflow.com/feeds/user/4301http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/46692/information-management-policy-in-sharepoint1Information Management Policy in SharePointMatt Bishop2008-09-05T19:30:37Z2008-10-31T21:08:17Z
<p>An obscure puzzle, but it's driving me absolutely nuts:</p>
<p>I'm creating a custom Information Management Policy in MOSS. I've implemented IPolicyFeature, and my policy feature happily registers itself by configuring a new SPItemEventReceiver. All new items in my library fire the events as they should, and it all works fine.</p>
<p>IPolicyFeature also has a method ProcessListItem, which is supposed to retroactively apply the policy to items that were already in the library (at least, it's supposed to do that for as long as it keeps returning <code>true</code>). Except it doesn't. It only applies the policy to the <strong><em>first</em></strong> item in the library, and I have absolutely no idea why.</p>
<p>It doesn't seem to be throwing an exception, and it really does return true from processing that first item, and I can't think what else to look at. Anyone?</p>
<p>Edit: Cory's answer, below, set me on the right track. Something else was indeed failing -- I didn't find out what, since my windbg-fu isn't what it should be, but I suspect it was something like "modifying a collection while it's being iterated over". My code was modifying the SPListItem that's passed into ProcessListItem, and then calling SystemUpdate on it; as soon as I changed the code so that it created its own variable (pointing at the exact same SPListItem) and used that, the problem went away...</p>
http://stackoverflow.com/questions/46692/information-management-policy-in-sharepoint/47352#473520Answer by Matt Bishop for Information Management Policy in SharePointMatt Bishop2008-09-06T09:20:00Z2008-09-06T09:20:00Z<p>Some nice ideas there, thanks. The Visual Studio debugger wasn't showing an exception (and I've wrapped everything in try/catch blocks just in case), but I hadn't thought of trying Windbg...</p>
http://stackoverflow.com/questions/45779/c-dynamic-event-subscription/45913#459133Answer by Matt Bishop for C# Dynamic Event SubscriptionMatt Bishop2008-09-05T14:25:09Z2008-09-05T14:25:09Z<p>It's not a completely general solution, but if all your events are of the form
void Foo(object o, T args) , where T derives from EventArgs, then you can use delegate contravariance to get away with it. Like this (where the signature of KeyDown is not the same as that of Click) :</p>
<pre><code> public Form1()
{
Button b = new Button();
TextBox tb = new TextBox();
this.Controls.Add(b);
this.Controls.Add(tb);
WireUp(b, "Click", "Clickbutton");
WireUp(tb, "KeyDown", "Clickbutton");
}
void WireUp(object o, string eventname, string methodname)
{
EventInfo ei = o.GetType().GetEvent(eventname);
MethodInfo mi = this.GetType().GetMethod(methodname, BindingFlags.Public | BindingFlags.Instance | BindingFlags.NonPublic);
Delegate del = Delegate.CreateDelegate(ei.EventHandlerType, this, mi);
ei.AddEventHandler(o, del);
}
void Clickbutton(object sender, System.EventArgs e)
{
MessageBox.Show("hello!");
}
</code></pre>
http://stackoverflow.com/questions/45702/is-there-some-way-to-compile-a-net-application-to-native-code/45724#457241Answer by Matt Bishop for Is there some way to compile a .NET application to native code?Matt Bishop2008-09-05T12:56:56Z2008-09-05T12:56:56Z<p>You can use ngen.exe to generate a native image <strong><em>but</em></strong> you still have to distribute the original non-native code as well, and it still needs the framework installed on the target machine.</p>
<p>Which doesn't solve your problem, really.</p>
http://stackoverflow.com/questions/42643/scripting-the-visual-studio-ide5Scripting the Visual Studio IDEMatt Bishop2008-09-03T21:30:20Z2008-09-05T10:16:02Z
<p>I'd like to create a script that will configure the Visual Studio IDE the way I like it. Nothing vastly complicated, just a few Tools/Options settings, adding some External Tools, that kind of thing. </p>
<p>I know that this can be done inside VS with Import/Export Settings, but I'd like to be able to automate it from outside of VS. Is this possible, and if so, how?</p>
<p><hr /></p>
<p>Edited to add: doing it from <em>outside</em> of VS is important to me -- I'm hoping to use this as part of a more general "configure this newly-Ghosted PC just the way I like it" script.</p>
<p><hr /></p>
<p>Edited again: the solution seems to be to hack CurrentSettings.vssettings, or use <a href="http://www.autoitscript.com/" rel="nofollow">AutoIt</a>. Details below.</p>
http://stackoverflow.com/questions/42643/scripting-the-visual-studio-ide/45501#455010Answer by Matt Bishop for Scripting the Visual Studio IDEMatt Bishop2008-09-05T10:13:53Z2008-09-05T10:13:53Z<p>Answering my own question, in two ways:</p>
<p>1) In VS2005/8, the things I mentioned (Tools/Options, External Tools) are all stored in the CurrentSettings.vssettings file, in the folder "Visual Studio 200{5|8}\Settings". This file is just XML, and it can be edited programmatically by anything that knows how to parse XML. You can also just paste a new vssettings file over the top of the default one (at least, this works for me).</p>
<p>2) The larger question of configuring a virgin PC. It turns out that not everything I want to change has an API, so I need some way of pretending to be a user who is actually sitting there clicking on things. The best approach to this seems to be <a href="http://www.autoitscript.com/" rel="nofollow">AutoIt</a>, whose scripting language I will now have to learn in my Copious Free Time.</p>
http://stackoverflow.com/questions/45036/will-the-gc-call-idisposable-dispose-for-me/45043#450433Answer by Matt Bishop for Will the GC call IDisposable.Dispose for me?Matt Bishop2008-09-05T00:37:22Z2008-09-05T00:43:11Z<p>I don't think so. You have control over when Dispose is called, which means you could in theory write disposal code that makes assumptions about (for instance) the existence of other objects. You have no control over when the finalizer is called, so it would be iffy to have the finalizer automatically call Dispose on your behalf.</p>
<p><hr /></p>
<p>EDIT: I went away and tested, just to make sure:</p>
<pre><code>class Program
{
static void Main(string[] args)
{
Fred f = new Fred();
f = null;
GC.Collect();
GC.WaitForPendingFinalizers();
Console.WriteLine("Fred's gone, and he's not coming back...");
Console.ReadLine();
}
}
class Fred : IDisposable
{
~Fred()
{
Console.WriteLine("Being finalized");
}
void IDisposable.Dispose()
{
Console.WriteLine("Being Disposed");
}
}
</code></pre>
http://stackoverflow.com/questions/39910/how-to-use-the-sharepoint-multiplelookupfield-control/45022#450220Answer by Matt Bishop for How to use the SharePoint MultipleLookupField control?Matt Bishop2008-09-05T00:15:56Z2008-09-05T00:15:56Z<p>Hm. OK, I'm still trying to break mine... so I went to the layouts directory and created a file foo.aspx. Here it is:</p>
<pre><code><%@ Page Language="C#" Inherits="System.Web.UI.Page" MasterPageFile="~/_layouts/simple.master" %>
<%@ Register Tagprefix="foo" Namespace="Foople" Assembly="Foople, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9f4da00116c38ec5"%>
<asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
<foo:WebPart1 id="fred" runat="server" />
<foo:WebPart1a id="barney" runat="server" />
</asp:Content>
</code></pre>
<p>WebPart1 is the webpart from before. WebPart1a is the exact same code, but in a class that inherits directly from WebControl rather than from WebPart.</p>
<p>It works fine, apart from a security validation problem on the postback that I can't be bothered to debug.</p>
<p>Changing the masterpage to ~masterurl/default.master, I uploaded foo.aspx to the Shared Documents library, and it works fine from there too -- both the WebControl and the WebPart behave properly, and the security problem is gone too.</p>
<p>So I'm at a loss. Although I did notice this page with an obscure might-be-bug which is also in SPFolder.get_ContentTypeOrder(): <a href="http://forums.msdn.microsoft.com/en-US/sharepointdevelopment/thread/63baf273-7f36-453e-8293-26417759e2e1/" rel="nofollow">http://forums.msdn.microsoft.com/en-US/sharepointdevelopment/thread/63baf273-7f36-453e-8293-26417759e2e1/</a></p>
<p>Any chance you could post your code?</p>
http://stackoverflow.com/questions/44391/how-do-i-prevent-replay-attacks/44410#444100Answer by Matt Bishop for How do I prevent replay attacks?Matt Bishop2008-09-04T18:31:10Z2008-09-04T18:31:10Z<p>If you only accept each key once (say, make the key a GUID, and then check when it comes back), that would prevent replays. Of course, if the attacker responds <em>first</em>, then you have a new problem...</p>
http://stackoverflow.com/questions/43939/targeting-multiple-versions-of-net-framework1Targeting multiple versions of .net frameworkMatt Bishop2008-09-04T15:00:35Z2008-09-04T15:55:14Z
<p>Suppose I have some code that would, in theory, compile against <em>any</em> version of the .net framework. Think "Hello World", if you like. </p>
<p>If I actually compile the code, though, I'll get an executable that runs against one <em>particular</em> version. </p>
<p>Is there any way to arrange things so that the compiled exe will just run against whatever version it finds? I strongly suspect that the answer is no, but I'd be happy to be proven wrong...</p>
<p><hr /></p>
<p>Edit: Well, I'll go to the foot of our stairs. I had no idea that later frameworks would happily run exe's compiled under earlier versions. Thanks for all the responses!</p>
http://stackoverflow.com/questions/43908/resources-for-building-a-visual-studio-plug-in/43917#439171Answer by Matt Bishop for Resources for building a Visual Studio plug-in?Matt Bishop2008-09-04T14:46:13Z2008-09-04T14:46:13Z<p>I've never tried, so I don't know about doing it in C++, but this website has loads of information: <a href="http://msdn.microsoft.com/en-us/vsx/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/vsx/default.aspx</a></p>
http://stackoverflow.com/questions/43738/defaultvalue-for-system-drawing-systemcolors/43757#437573Answer by Matt Bishop for DefaultValue for System.Drawing.SystemColorsMatt Bishop2008-09-04T13:26:16Z2008-09-04T13:26:16Z<p>This may help: <a href="http://support.microsoft.com/kb/311339" rel="nofollow">http://support.microsoft.com/kb/311339</a> -- a KB article entitled
"MSDN documentation for the DefaultValueAttribute class may be confusing"</p>
http://stackoverflow.com/questions/43509/what-happened-to-to-the-net-framework-configuration-tool0What happened to to the .Net Framework Configuration tool?Matt Bishop2008-09-04T11:26:27Z2008-09-04T12:43:29Z
<p>Older versions of the .Net Framework used to install "Microsoft .NET Framework v1.0 / v1.1 / v2.0 Configuration" in the Control Panel, under Administrative Tools. I just noticed that there isn't a v3.0 or v3.5 version of this. Is this functionality now hiding somewhere else, or do I have to use the command-line tools instead?</p>
http://stackoverflow.com/questions/43509/what-happened-to-to-the-net-framework-configuration-tool/43660#436600Answer by Matt Bishop for What happened to to the .Net Framework Configuration tool?Matt Bishop2008-09-04T12:43:29Z2008-09-04T12:43:29Z<p>To sort out the confusion between the apparently conflicting answers above, this is my current understanding of the answer:</p>
<ul>
<li>Use the 2.0 version, as DAC and Codeslayer recommended</li>
<li>If you don't <em>have</em> the 2.0 version (mine was helpfully uninstalled when I removed VS2005 and installed VS2008), then you can either install VS2005, or download the Windows SDK, as per GateKiller's link</li>
</ul>
<p>On my PC, even downloading the SDK didn't work; it installed mscorcfg.msc but not mscorcfg.dll. Digging about in the GAC, I notice mscorcfg.dll v3.5, which confuses me even more. Anyway, there is an iffy-looking copy-dlls-and-hack-registry solution at <a href="http://home.hot.rr.com/graye/Articles/CodeAccessSecurity.htm" rel="nofollow">http://home.hot.rr.com/graye/Articles/CodeAccessSecurity.htm</a>, and that's what I'm going to try next. Wish me luck!</p>
http://stackoverflow.com/questions/43511/can-i-prevent-an-inherited-virtual-method-from-being-overridden-in-subclasses/43517#435170Answer by Matt Bishop for Can I prevent an inherited virtual method from being overridden in subclasses?Matt Bishop2008-09-04T11:31:03Z2008-09-04T11:31:03Z<p>In B, do </p>
<pre><code>protected override sealed void Render() { ... }
</code></pre>
http://stackoverflow.com/questions/43466/whatt-the-best-solution-for-creating-subsets-of-a-set-of-characters/43493#434932Answer by Matt Bishop for What't the best solution for creating subsets of a set of characters?Matt Bishop2008-09-04T11:10:02Z2008-09-04T11:10:02Z<p>The recursive approach -- the subsets of "abc" come in two types: those which are subsets of "bc", and those which are "a" plus a subset of "bc". So if you know the subsets of "bc", it's easy.</p>
<p>Alternatively, a string of length n has 2^n subsets. So write two nested loops: i counts from 0 to 2^n -1 (for the subsets), and j counts from 0 to n-1 (for characters in the ith subset). Output the jth character of the string if and only if the jth bit of i is 1.</p>
<p>(Well, you did say that "best" was subjective...)</p>
http://stackoverflow.com/questions/42262/twitching-consumption-of-web-services-from-web-site-to-web-application/43407#434072Answer by Matt Bishop for Twitching Consumption of Web Services from Web Site to Web ApplicationMatt Bishop2008-09-04T09:32:05Z2008-09-04T09:32:05Z<p>Show all files in your project, then hand-edit the autogenerated Reference.cs files to change the namespaces (and remove duplicates)? Ugly, but it ought to work.</p>
<p>Alternatively, use wsdl.exe from the command line -- it can generate a single proxy for multiple services -- and then add the generated file to the project manually. The syntax is something like: <code>wsdl <a href="http://svr/foo.asmx" rel="nofollow">http://svr/foo.asmx</a> <a href="http://svr/bar.asmx" rel="nofollow">http://svr/bar.asmx</a> /namespace:Fnord.Proxies</code></p>
http://stackoverflow.com/questions/42550/extract-address-information-from-a-web-page/42752#427521Answer by Matt Bishop for Extract Address Information from a Web PageMatt Bishop2008-09-03T22:28:21Z2008-09-03T22:28:21Z<p>If you know the format of the page (for instance, if they're all like that ashnha.com page) then it's fairly easy to write VB.NET code that does this: </p>
<ol>
<li>Create a <a href="http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx" rel="nofollow">System.Net.WebRequest</a> and read the response into a string.</li>
<li>Then create a
<a href="http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.aspx" rel="nofollow">System.Text.RegularExpressions.Regex</a>
and iterate over the collection of
Matches between that and the string
you just retrieved. For each match,
create a new row in a DataTable.</li>
</ol>
<p>The tough bit is writing the regex, which is a bit of a black art. See <a href="http://regexlib.com" rel="nofollow">regexlib.com</a> for loads of tools, books etc about regexes.</p>
<p>If the HTML format isn't well-defined enough for a regex, then you're probably going to have to rely on some amount of user intervention in order to identify which bits are the addresses...</p>
http://stackoverflow.com/questions/42690/which-dynamic-net-language-makes-more-sense-to-learn-iron-ruby-or-iron-python/42699#426993Answer by Matt Bishop for Which Dynamic .NET language makes more sense to learn, Iron Ruby or Iron Python?Matt Bishop2008-09-03T21:57:19Z2008-09-03T21:57:19Z<p>Whichever you choose, take a look at <a href="http://www.codeplex.com/IronEditor" rel="nofollow">IronEditor</a> -- it's great for playing around. I'm currently using it to try and pick up those languages myself...</p>
http://stackoverflow.com/questions/39910/how-to-use-the-sharepoint-multiplelookupfield-control/41439#414390Answer by Matt Bishop for How to use the SharePoint MultipleLookupField control?Matt Bishop2008-09-03T10:47:11Z2008-09-03T10:47:11Z<p>Hm. Works fine on mine, so let's see if we can work out how your setup is different...</p>
<p>It looks as though it's having trouble populating the control; my first guess would be that this is because the code makes so many assumptions about the lists it's talking to. Can you check that you've got a plain vanilla Team site, with (assume these names are case-sensitive): </p>
<ol>
<li>A list called Tasks, with several items in it</li>
<li>A library called Shared Documents with at least one document</li>
<li>A column called Related in the Shared Documents library</li>
<li>The Related column is a Lookup field into the Title column of Tasks, and allows multiple values.</li>
<li>The first document in Shared Documents has a value for Related</li>
</ol>
<p>Then add the webpart. Fingers crossed...</p>
http://stackoverflow.com/questions/39910/how-to-use-the-sharepoint-multiplelookupfield-control/40929#409291Answer by Matt Bishop for How to use the SharePoint MultipleLookupField control?Matt Bishop2008-09-02T23:46:21Z2008-09-02T23:46:21Z<p>I'm not entirely sure I understand your question, especially the bit about displaying two SPField collections. Sorry if this turns out to be the answer to a completely different question!</p>
<p>Anyway here's a quick demo walkthrough of using the MultipleLookupField in a web part.</p>
<p>Create a team site. Add a few tasks to the task list. Also put a document in the Shared Documents library. Create a new column in the Shared Documents library; call it "Related", have it be a Lookup into the Title field of the Tasks list, and allow multiple values.</p>
<p>Now create a web part, do all the usual boilerplate and then add this:</p>
<pre><code>Label l;
MultipleLookupField mlf;
protected override void CreateChildControls()
{
base.CreateChildControls();
SPList list = SPContext.Current.Web.Lists["Shared Documents"];
if (list != null && list.Items.Count > 0)
{
LiteralControl lit = new LiteralControl("Associate tasks to " +
list.Items[0].Name);
this.Controls.Add(lit);
mlf = new MultipleLookupField();
mlf.ControlMode = SPControlMode.Edit;
mlf.FieldName = "Related";
mlf.ItemId = list.Items[0].ID;
mlf.ListId = list.ID;
mlf.ID = "Related";
this.Controls.Add(mlf);
Button b = new Button();
b.Text = "Change";
b.Click += new EventHandler(bClick);
this.Controls.Add(b);
l = new Label();
this.Controls.Add(l);
}
}
void bClick(object sender, EventArgs e)
{
l.Text = "";
foreach (SPFieldLookupValue val in (SPFieldLookupValueCollection)mlf.Value)
{
l.Text += val.LookupValue.ToString() + " ";
}
SPListItem listitem = mlf.List.Items[0];
listitem["Related"] = mlf.Value;
listitem.Update();
mlf.Value = listitem["Related"];
}
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
EnsureChildControls();
}
</code></pre>
<p>Granted, this is borderline ridiculous -- everything is hard-coded, there is no error-handling at all, and it serves no useful purpose -- but it's only meant as a quick demo. Now build and deploy this web part and add an instance of it to your team site's homepage; it should allow you to get and set the tasks which are associated with the first document in the library.</p>
<p>The strange bit towards the end of the button Click handler, where we read a value from mlf.Value and then write it back again, appears to be required if you want the UI to stay in sync with the actual list values. Try omitting the last line of bClick to see what I mean. This has been driving me nuts for the last hour or so, and I'm hoping another commenter can come up with a better approach...</p>
http://stackoverflow.com/questions/40372/how-can-you-export-the-saved-username-and-passwords-in-firefox-2/40438#404380Answer by Matt Bishop for How can you export the saved username and passwords in FireFox 2?Matt Bishop2008-09-02T19:55:56Z2008-09-02T19:55:56Z<p>Alas, this won't solve the re-importing problem, but check out <a href="http://wejn.org/stuff/moz-export.html" rel="nofollow">http://wejn.org/stuff/moz-export.html</a></p>
<p>They have a single html page with a small javascript section that exports your passwords. Save the html to your desktop, read through to make sure it's not evil, open the page in FF, save the results.</p>
<p>Maybe I'm paranoid, but I'm not sure I'd trust a password-exporting extension...</p>
http://stackoverflow.com/questions/31919/how-to-make-the-process-of-debugging-asp-net-sharepoint-applications-less-time-co/40373#403733Answer by Matt Bishop for How to make the process of debugging ASP.NET Sharepoint applications less time consuming?Matt Bishop2008-09-02T19:31:37Z2008-09-02T19:31:37Z<p>If you <em>are</em> using the GAC, you can at least do <code>iisapp.vbs /a "App Pool Name" /r</code> instead of <code>iisreset</code> (it's quicker to recycle a single app pool than to restart IIS).</p>
http://stackoverflow.com/questions/7174/how-can-i-improve-the-edit-compile-test-loop-when-developing-a-sharepoint-workflo/40306#403060Answer by Matt Bishop for How can I improve the edit-compile-test loop when developing a SharePoint workflow?Matt Bishop2008-09-02T18:58:49Z2008-09-02T18:58:49Z<p>I'm not sure you need to get the pdb file into the GAC. (At least, the fix I'm about to describe works just fine for debugging SharePoint web parts in VS2005, which have a similar problem.)</p>
<p>There's a checkbox marked "Enable Just My Code (Managed Only)" in Tools-->Options-->Debugging; if you uncheck it, then Visual Studio will happily load your pdb's from the bin\Debug folder where it built them. Probably. Can't hurt to try, anyhow...</p>
http://stackoverflow.com/questions/3075/can-asp-net-ajax-partial-rendering-work-inside-a-sharepoint-2007-application-page/40225#402250Answer by Matt Bishop for Can ASP.NET AJAX partial rendering work inside a SharePoint 2007 application page?Matt Bishop2008-09-02T18:34:28Z2008-09-02T18:34:28Z<p>There's a specific problem with mixing doPostback, UpdatePanel and SharePoint -- and the symptom is exactly what you're seeing: a full-page postback instead of an asynchronous postback. See this KB article for a workaround: <a href="http://support.microsoft.com/kb/941955" rel="nofollow">http://support.microsoft.com/kb/941955</a></p>