User Luke H - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T16:34:29Zhttp://stackoverflow.com/feeds/user/3974http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/873179/copy-binary-data-from-url-to-file-in-java-without-intermediate-copy2Copy binary data from URL to file in Java without intermediate copyLuke H2009-05-16T20:08:37Z2009-11-28T15:02:54Z
<p>I'm updating some old code to grab some binary data from a URL instead of from a database (the data is about to be moved out of the database and will be accessible by HTTP instead). The database API seemed to provide the data as a raw byte array directly, and the code in question wrote this array to a file using a BufferedOutputStream.</p>
<p>I'm not at all familiar with Java, but a bit of googling led me to this code:</p>
<pre><code>URL u = new URL("my-url-string");
URLConnection uc = u.openConnection();
uc.connect();
InputStream in = uc.getInputStream();
ByteArrayOutputStream out = new ByteArrayOutputStream();
final int BUF_SIZE = 1 << 8;
byte[] buffer = new byte[BUF_SIZE];
int bytesRead = -1;
while((bytesRead = in.read(buffer)) > -1) {
out.write(buffer, 0, bytesRead);
}
in.close();
fileBytes = out.toByteArray();
</code></pre>
<p>That seems to work most of the time, but I have a problem when the data being copied is large - I'm getting an OutOfMemoryError for data items that worked fine with the old code.</p>
<p>I'm guessing that's because this version of the code has multiple copies of the data in memory at the same time, whereas the original code didn't.</p>
<p>Is there a simple way to grab binary data from a URL and save it in a file without incurring the cost of multiple copies in memory?</p>
http://stackoverflow.com/questions/1474371/authenticating-windows-users-in-java-server4Authenticating Windows users in Java serverLuke H2009-09-24T21:53:35Z2009-11-04T16:37:56Z
<p>I'm working on a server written in Java, and a client (a desktop application written in .Net) that runs on Windows machines on the same network. I would like to have some basic authentication so that the server can determine the username of the user running the client, without needing the user to re-enter their Windows password in the client.</p>
<p>Is this possible, and what's the simplest way to accomplish it?</p>
<p>I had a look at some of the available APIs, it looks as though the org.ietf.jgss package in Java, and NegotiateStream class in .Net, should probably be able to talk to one another to achieve this - but I keep hitting frustrating error messages I don't understand. I thought I'd check if this is the right approach, if so I'll post a separate question with more detail about the errors in question :)</p>
http://stackoverflow.com/questions/1462665/processes-and-tools-for-testing-large-projects-with-multiple-branches1Processes and tools for testing large projects with multiple branchesLuke H2009-09-22T21:17:18Z2009-11-03T23:26:32Z
<p>We make use of a significant number of branches (a fairly traditional mainline model) for development, and it's proved extremely effective as a way of organising things and keeping developers efficient on a large team. We have QA test development branches before pushing them back to the main line, which ensures the main line is always stable.</p>
<p>Now there are some interesting problems related specifically to testing. The most common one is this: suppose a tester encounters a bug during testing, that's already marked as fixed. Is that because the fix failed (in which case they should reopen the bug), or because the fix hasn't reached the branch being tested?</p>
<p>As perforce users, we're looking at solving these issues with perforce jobs. It's quite a "raw" tool though - it more or less provides the underlying functionality for this, but not an easy interface, particularly for testers to use. So I'm wondering if there are more user-friendly methods out there, or different approaches entirely (I don't think "avoid branching" is a practical answer for us in this case though!)</p>
<p>What are the best practices for performing effective QA on multiple branches? Are there any good tools out there that provide automation and support for these issues?</p>
http://stackoverflow.com/questions/1499267/how-to-get-negotiatestream-to-use-kerberos0How to get NegotiateStream to use Kerberos?Luke H2009-09-30T16:31:04Z2009-10-01T07:50:53Z
<p>After asking <a href="http://stackoverflow.com/questions/1474371/authenticating-windows-users-in-java-server">this question</a>, I've been trying to use NegotiateStream to authenticate a Windows client against a Java server. It seems that Java doesn't have great NTLM library support, so I've been working on the assumption that I'd have to use Kerberos, which Java seems to support much better (via the GSS-API).</p>
<p>The problem is that NegotiateStream seems to be attempting to use NTLM every time. The documentation suggests that it could use either, but doesn't specify how it chooses. I can't see any options in the API to control which mechanism it chooses. Is there a way?</p>
<p>I've got myself a Service Principal Name and my client code looks like this:</p>
<pre><code>string spn = "<service-name>/<my-pc-name>"
TcpClient client = new TcpClient(server, port);
NetworkStream stream = client.GetStream();
NegotiateStream neg = new NegotiateStream(stream, true);
neg.AuthenticateAsClient(CredentialCache.DefaultNetworkCredentials, spn);
</code></pre>
<p>On the server end, the first set of bytes received are 22,1,0,0,59 and then "NTLMSSP" - which I wasn't expecting.</p>
<p>I've tried a few different formats for the SPN string, not sure what the correct format is there. I originally created the SPN with</p>
<pre><code>setspn -A <service-name>/<my-pc-name>.<domain-name> <my-user-name>
</code></pre>
<p>setspn -L lists it successfully as:</p>
<pre><code>TEST/<my-pc-name>.<domain-name>
</code></pre>
<p>Am I doing something wrong, or completely misunderstanding this stuff? :)</p>
http://stackoverflow.com/questions/62038/rails-model-validators-break-earlier-migrations2Rails model validators break earlier migrationsLuke H2008-09-15T09:42:18Z2009-09-23T04:29:16Z
<p>I have a sequence of migrations in a rails app which includes the following steps:</p>
<ol>
<li>Create basic version of the 'user' model</li>
<li>Create an instance of this model - there needs to be at least one initial user in my system so that you can log in and start using it</li>
<li>Update the 'user' model to add a new field / column.</li>
</ol>
<p>Now I'm using "validates_inclusion_of" on this new field/column. This worked fine on my initial development machine, which already had a database with these migrations applied. However, if I go to a fresh machine and run all the migrations, step 2 fails, because validates_inclusion_of fails, because the field from migration 3 hasn't been added to the model class yet.</p>
<p>As a workaround, I can comment out the "validates_..." line, run the migrations, and uncomment it, but that's not nice.</p>
<p>Better would be to re-order my migrations so the user creation (step 2) comes last, after all columns have been added.</p>
<p>I'm a rails newbie though, so I thought I'd ask what the preferred way to handle this situation is :)</p>
http://stackoverflow.com/questions/350942/what-is-your-experience-of-devtrack3What is your experience of Devtrack?Luke H2008-12-08T21:19:16Z2009-08-16T07:14:20Z
<p><a href="http://stackoverflow.com/questions/12328/what-bug-tracking-software-do-you-use">This question</a> covers bug tracking software in general, but I'm interested to find out more detail specifically about <a href="http://www.techexcel.com/products/devsuite/devtrack.html" rel="nofollow">Devtrack</a>.</p>
<p>If you have first-hand experience of using it, I'd love to hear about it. How would you compare it to other bug tracking systems you know, what do you feel is good and bad about it, and why?</p>
http://stackoverflow.com/questions/977396/how-to-change-default-conjunction-with-lucene-multifieldqueryparser1How to change default conjunction with Lucene MultiFieldQueryParserLuke H2009-06-10T18:31:25Z2009-06-10T18:53:51Z
<p>I have some code using Lucene that leaves the default conjunction operator as OR, and I want to change it to AND. Some of the code just uses a plain QueryParser, and that's fine - I can just call setDefaultOperator on those instances.</p>
<p>Unfortunately, in one place the code uses a MultiFieldQueryParser, and calls the static "parse" method (taking String, String[], BooleanClause.Occur[], Analyzer), so it seems that setDefaultOperator can't help, because it's an instance method.</p>
<p>Is there a way to keep using the same parser but have the default conjunction changed?</p>
http://stackoverflow.com/questions/923117/problem-fetching-video-data-from-server-only-in-browser-plugin0Problem fetching video data from server only in browser pluginLuke H2009-05-28T20:51:34Z2009-06-05T07:04:39Z
<p>I have a problem with a server, written in Java, running on Tomcat, serving video files. I didn't write the code and have very little familiarity with the libraries involved in this problem, so any ideas to pursue would be much appreciated :)</p>
<p>The videos in question work fine when you save them to disk from your browser and then play them.</p>
<p>However, when you try to view one using a video-playing browser plugin (doesn't seem to matter which plugin ... WMP for either FF or IE, VLC in FF, doesn't matter which browser version either), it all goes wrong. From the browser end, no data seems to reach the plugin (so the VLC plugin, for example, just says "waiting for video" ... it never arrives).</p>
<p>On the server end, there's an HttpServletResponse instance, it calls getOutputStream on this, writes the data to the stream with no problem, and then an exception is thrown when closing the stream.</p>
<p>The exception stack trace is as follows:</p>
<pre><code>java.net.SocketException: Software caused connection abort: socket write error
at java.net.SocketOutputStream.socketWrite0(Native Method)
at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
at org.apache.coyote.http11.InternalOutputBuffer.realWriteBytes(InternalOutputBuffer.java:750)
at org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:432)
at org.apache.tomcat.util.buf.ByteChunk.append(ByteChunk.java:347)
</code></pre>
<p>Any ideas? :)</p>
http://stackoverflow.com/questions/923117/problem-fetching-video-data-from-server-only-in-browser-plugin/954581#9545810Answer by Luke H for Problem fetching video data from server only in browser pluginLuke H2009-06-05T07:03:07Z2009-06-05T07:03:07Z<p>Ok so I finally got to the bottom of this. It really has nothing to do with Tomcat or Java, the key is the difference between how the browser fetches the data and how the browser plugin fetches it: the plugin doesn't send the browser's cookies.</p>
<p>In this case, the server had some login cookie stuff, so the plugin's request for data was denied before it ever got to being written to a stream. What was confusing here was that in the debugger, the stream-writing code was still being run, but that was just because the browser requests the data first (once it realises it has a video, it fires up the plugin instead and the plugin makes a fresh HTTP request).</p>
<p>I discovered this with Wireshark btw where the response to the plugin was clear (it was an HTML "access denied" kind of page).</p>
http://stackoverflow.com/questions/38338/why-is-lua-considered-a-game-language/38404#3840464Answer by Luke H for Why is Lua considered a game language?Luke H2008-09-01T20:42:57Z2009-05-23T18:47:04Z<p>Speaking as a game developer, the games industry <strong>loves</strong> Lua because it's so lightweight. The size of Lua's runtime, its performance and memory usage, are an incredible combination compared to other languages. Game developers are highly paranoid (whether or not justifiably) about these things, which partly explains why Python, Ruby etc haven't been used much as game scripting languages.</p>
<p>It's also trivial to embed, and highly portable (with all the different console platforms around, this is extremely important).</p>
<p>As a result, Lua is the choice of the games industry, but that doesn't necessarily mean that's all it's good for.</p>
<p>I would also say WoW used it because it was already popular among game developers, not the other way around. However, because WoW uses Lua to allow extensibility or customisation, rather than just as an internal technology, it certainly raised Lua's profile outside the game development community.</p>
http://stackoverflow.com/questions/338944/net-wrapper-for-jira-api/580937#5809371Answer by Luke H for .net wrapper for JIRA api?Luke H2009-02-24T08:34:46Z2009-02-24T08:34:46Z<p>In a Visual Studio .NET project, right click the project references and choose 'Add Service Reference', enter the URL of JIRA's WSDL descriptor (<a href="http://your_installation/rpc/soap/jiraservice-v1.wsdl" rel="nofollow">http://your_installation/rpc/soap/jiraservice-v1.wsdl</a>), and Visual Studio will auto-generate a .NET class for accessing the JIRA SOAP API.</p>
<p>The parameter names aren't particularly meaningful so you'll need to refer back to the documentation quite a bit at first.</p>
http://stackoverflow.com/questions/62201/how-and-whether-to-populate-rails-application-with-initial-data7How (and whether) to populate rails application with initial dataLuke H2008-09-15T11:25:19Z2009-02-18T01:43:20Z
<p>I've got a rails application where users have to log in. Therefore in order for the application to be usable, there must be one initial user in the system for the first person to log in with (they can then create subsequent users). Up to now I've used a migration to add a special user to the database.</p>
<p>After asking <a href="http://stackoverflow.com/questions/62038/rails-model-validators-break-earlier-migrations">this question</a>, it seems that I should be using db:schema:load, rather than running the migrations, to set up fresh databases on new development machines. Unfortunately, this doesn't seem to include the migrations which insert data, only those which set up tables, keys etc.</p>
<p>My question is, what's the best way to handle this situation:</p>
<ol>
<li>Is there a way to get d:s:l to include data-insertion migrations?</li>
<li>Should I not be using migrations at all to insert data this way?</li>
<li>Should I not be pre-populating the database with data at all? Should I update the application code so that it handles the case where there are no users gracefully, and lets an initial user account be created live from within the application?</li>
<li>Any other options? :)</li>
</ol>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/286357#2863571Answer by Luke H for Coding in Other (Spoken) LanguagesLuke H2008-11-13T06:02:37Z2008-11-13T06:02:37Z<p>When I was a kid we went to France, and in a museum we went to, I remember finding a display which showed you how to write computer programmes. The language was some kind of BASIC variant and I distinctly remember it using POUR instead of FOR, and so on. I was 7 years old and had only just learned BASIC, and it seemed completely natural to me that the French would have their own dialect like this!!</p>
<p>I guess it may have been <a href="http://en.wikipedia.org/wiki/LSE_(programming_language)" rel="nofollow">LSE</a> that I saw?</p>
http://stackoverflow.com/questions/261362/how-to-update-html-select-box-dynamically-in-ie0How to update HTML "select" box dynamically in IELuke H2008-11-04T09:47:44Z2008-11-04T11:19:50Z
<p>I've got an HTML "select" element which I'm updating dynamically with code something like this:</p>
<pre><code>var selector = document.getElementById('selectorId');
for (var i = 0; i < data.length; ++i)
{
var opt = document.createElement('option');
opt.value = data[i].id;
opt.text = data[i].name;
selector.appendChild(opt);
}
</code></pre>
<p>Works fine in Firefox, but IE7 doesn't resize the list box to fit the new data. If the list box is initially empty (which it is in my case), you can hardly see any of the options I've added. Is there a better way to do this? Or a way to patch it up to work in IE?</p>
http://stackoverflow.com/questions/209912/reading-guitar-hero-or-rock-band-controllers-from-a-pc/209919#2099192Answer by Luke H for Reading Guitar Hero or Rock Band Controllers from a PCLuke H2008-10-16T19:28:17Z2008-10-16T19:28:17Z<p>Check out <a href="http://www.wiiuse.net/?nav=docs" rel="nofollow">Wiiuse</a> - it suppors the Guitar Hero 3 controller, as well as Wiimotes :)</p>
http://stackoverflow.com/questions/209818/whats-the-difference-between-game-development-and-business-development/209913#2099138Answer by Luke H for What's the difference between game development and business development?Luke H2008-10-16T19:26:11Z2008-10-16T19:26:11Z<p>In terms of programming domains, amongst other things, we deal with:</p>
<ul>
<li>Graphics programming (including shader development)</li>
<li>Animation</li>
<li>Physics simulation</li>
<li>AI and gameplay</li>
<li>Audio</li>
<li>Networking (typically fairly low-level stuff)</li>
</ul>
<p>Some of these involve pretty serious maths and algorithms knowledge. On top of all that, we face extremely tough speed constraints, and typically have to be very careful with memory usage too. We face constantly changing hardware, and since we're trying to push hardware to the limit, this can be pretty tough - you can't just abstract it away. Most game development is still quite low-level C++ work. We probably deal with databases less than most other programmers nowadays (although online games are changing this)!</p>
<p>Programmers are often the minority on modern game projects: it's all about content creation (animation, modelling, texturing, audio and design). This means many game programmers are dedicated to making the content creation process efficient, rather than working on the game code itself. This work may have more relaxed speed and memory constraints, although it does have to deal with massive data sets.</p>
<p>Making the game 'fun' is one of the hardest things to do - in business terminology, it "means extremely unstable requirements" as the designers constantly change their mind about how things should work, to chase down that elusive fun factor.</p>
<p>Finally, games are generally a ship-once, no chance to fix stuff kind of deal. This actually means there's very little code maintenance involved, so traditionally there may have been less attention paid to code quality issues. This is changing now with the growth in post-launch content addition, online gaming and the sheer size of modern projects.</p>
<p>Overall it's an incredibly exciting field to be in, the downside is that it's often less well paid (because it's a very tough business financially for developers, and because it's popular, there's always a fresh supply of people looking for jobs).</p>
http://stackoverflow.com/questions/179741/how-do-i-decompile-a-net-exe-into-readable-c-source-code/179746#1797466Answer by Luke H for How do I decompile a .NET EXE into readable C# source code?Luke H2008-10-07T18:28:24Z2008-10-07T18:28:24Z<p>You want <a href="http://www.red-gate.com/products/reflector/index.htm" rel="nofollow">reflector</a>.</p>
http://stackoverflow.com/questions/173307/best-windows-installation-file-creator/173325#1733258Answer by Luke H for Best Windows Installation file Creator?Luke H2008-10-06T06:27:07Z2008-10-06T20:14:57Z<p>I've always had a good experience with <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">NSIS</a></p>
<ul>
<li>It's open source</li>
<li>It has a big community (and hence lots of plugins)</li>
<li>For simple things, its script-based approach is nice and easy</li>
<li>It's lightweight and fast</li>
</ul>
<p>On the downside, if you want to do something more sophisticated, you need to use something that looks a bit like assembly language - very odd, and not particularly pleasant. Thanks for the comments about that - I'd forgotten all about it!</p>
http://stackoverflow.com/questions/39615/how-to-loop-through-files-matching-wildcard-in-batch-file2How to loop through files matching wildcard in batch fileLuke H2008-09-02T14:12:02Z2008-10-03T20:19:39Z
<p>I have a set of base filenames, for each name 'f' there are exactly two files, 'f.in' and 'f.out'. I want to write a batch file (in Windows XP) which goes through all the filenames, for each one it should:</p>
<ul>
<li>Display the base name 'f'</li>
<li>Perform an action on 'f.in'</li>
<li>Perform another action on 'f.out'</li>
</ul>
<p>I don't have any way to list the set of base filenames, other than to search for *.in (or *.out) for example.</p>
<p>My, doesn't Stackoverflow make me lazy at figuring things out!! :)</p>
http://stackoverflow.com/questions/141752/would-you-consider-float-values-to-behave-differently-across-a-release-and-debug/141815#1418152Answer by Luke H for Would you consider float values to behave differently across a release and debug builds to be a bug?Luke H2008-09-26T20:37:05Z2008-09-26T20:37:05Z<p>I know that on PC, floating point registers are 80 bits wide. So if a calculation is done entirely within the FPU, you get the benefit of 80 bits of precision. On the other hand, if an intermediate result is moved out into a normal register and back, it gets truncated to 32 bits, which gives different results.</p>
<p>Now consider that a release build will have optimisations which keep intermediate results in FPU registers, whereas a debug build will probably naively copy intermediate results back and forward between memory and registers - and there you have your difference in behaviour.</p>
<p>I don't know whether this happens on X360 too or not.</p>
http://stackoverflow.com/questions/130116/dos-batch-commands-to-read-first-line-from-text-file/130153#1301530Answer by Luke H for DOS batch command(s) to read first line from text fileLuke H2008-09-24T21:42:11Z2008-09-24T21:42:11Z<p>You can get ports of standard UNIX utilities (specifically 'head') to MS platforms. I don't know if there's a built-in way though.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function/129924#1299244Answer by Luke H for How do I write a generic memoize function?Luke H2008-09-24T20:56:50Z2008-09-24T21:38:51Z<p>You're also asking the wrong question for your original problem ;)</p>
<p>This is a better way for that case:</p>
<p>triangle(n) = n * (n - 1) / 2</p>
<p>Furthermore, supposing the formula didn't have such a neat solution, memoisation would still be a poor approach here. You'd be better off just writing a simple loop in this case. See <a href="http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function#130006">this answer</a> for a fuller discussion.</p>
http://stackoverflow.com/questions/129921/what-is-mvc-model-view-controller/129952#1299525Answer by Luke H for What is MVC (Model View Controller)?Luke H2008-09-24T21:01:47Z2008-09-24T21:01:47Z<p>I like <a href="http://www.martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">this article</a> by Martin Fowler. You'll see that MVC is actually more or less dead, strictly speaking, in its original domain of rich UI programming. The distinction between View and Controller doesn't apply to most modern UI toolkits.</p>
<p>The term seems to have found new life in web programming circles recently. I'm not sure whether that's truly MVC though, or just re-using the name for some closely related but subtly different ideas.</p>
http://stackoverflow.com/questions/129015/what-plugin-would-you-really-like-to-have-for-visual-studio-2005-2008/129184#1291841Answer by Luke H for What plugin would you really like to have for Visual Studio 2005/2008Luke H2008-09-24T19:07:10Z2008-09-24T19:07:10Z<p>No idea if it's possible, but I'd like to be able to use images as diagrams in comments sometimes. When working on code that does geometric computations (which I do a lot), a diagram can say a lot more than words.</p>
<p>Maybe you could type the path of the image in a comment and have a plugin which found such paths, loaded the images and displayed them inline with the code (or pop up when you hover the mouse over?)</p>
http://stackoverflow.com/questions/117293/use-of-const-for-function-parameters/117322#1173221Answer by Luke H for Use of 'const' for function parametersLuke H2008-09-22T20:17:14Z2008-09-22T20:17:14Z<p>In the case you mention, it doesn't affect callers of your API, which is why it's not commonly done (and isn't necessary in the header). It only affects the implementation of your function.</p>
<p>It's not particularly a bad thing to do, but the benefits aren't that great given that it doesn't affect your API, and it adds typing, so it's not usually done.</p>
http://stackoverflow.com/questions/117110/when-have-we-any-practical-use-for-hierarchical-namespaces-in-c/117139#1171391Answer by Luke H for When have we any practical use for hierarchical namespaces in c++?Luke H2008-09-22T19:54:40Z2008-09-22T19:54:40Z<p>Big codebases will need it. Look at boost for an example. I don't think anyone would call the boost code 'insane'.</p>
<p>If you consider the fact that at any one level of a hierarchy, people can only comprehend somewhere very roughly on the order of 10 items, then two levels only gives you 100 maximum. A sufficiently big project is going to need more, so can easily end up 3 levels deep.</p>
http://stackoverflow.com/questions/116766/what-are-some-good-resources-for-the-document-view-or-composite-application-archi/117104#1171041Answer by Luke H for What are some good resources for the document/view or composite application architecture?Luke H2008-09-22T19:50:05Z2008-09-22T19:50:05Z<p>I find <a href="http://www.martinfowler.com/eaaDev/uiArchs.html" rel="nofollow">this article</a> by Martin Fowler to be an excellent overview of a variety of UI architectures. Hope it helps :)</p>
http://stackoverflow.com/questions/85553/when-should-i-use-a-struct-instead-of-a-class/85603#856030Answer by Luke H for When should I use a struct instead of a class?Luke H2008-09-17T17:26:50Z2008-09-17T17:26:50Z<p>I think this is a duplicate of this question!</p>
<p><a href="http://stackoverflow.com/questions/37931/whats-the-use-of-value-types-in-net">http://stackoverflow.com/questions/37931/whats-the-use-of-value-types-in-net</a></p>
http://stackoverflow.com/questions/77639/when-is-it-right-for-a-constructor-to-throw-an-exception/77766#777662Answer by Luke H for When is it right for a constructor to throw an exception?Luke H2008-09-16T22:08:23Z2008-09-16T22:08:23Z<p>You absolutely should throw an exception from a constructor if you're unable to create a valid object. This allows you to provide proper invariants in your class.</p>
<p>In practice, you may have to be very careful. Remember that in C++, the destructor will not be called, so if you throw after allocating your resources, you need to take great care to handle that properly!</p>
<p><a href="http://www.gotw.ca/gotw/066.htm" rel="nofollow">This page</a> has a thorough discussion of the situation in C++.</p>
http://stackoverflow.com/questions/62201/how-and-whether-to-populate-rails-application-with-initial-data/76136#761361Answer by Luke H for How (and whether) to populate rails application with initial dataLuke H2008-09-16T19:42:43Z2008-09-16T19:42:43Z<p>I thought I'd summarise some of the great answers I've had to this question, together with my own thoughts now I've read them all :)</p>
<p>There are two distinct issues here:</p>
<ol>
<li>Should I pre-populate the database with my special 'admin' user? Or should the application provide a way to set up when it's first used?</li>
<li>How does one pre-populate the database with data? Note that this is a valid question regardless of the answer to part 1: there are other usage scenarios for pre-population than an admin user.</li>
</ol>
<p>For (1), it seems that setting up the first user from within the application itself is quite a bit of extra work, for functionality which is, by definition, hardly ever used. It may be slightly more secure, however, as it forces the user to set a password of their choice. The best solution is in between these two extremes: have a script (or rake task, or whatever) to set up the initial user. The script can then be set up to auto-populate with a default password during development, and to require a password to be entered during production installation/deployment (if you want to discourage a default password for the administrator).</p>
<p>For (2), it appears that there are a number of good, valid solutions. A rake task seems a good way, and there are some plugins to make this even easier. Just look through some of the other answers to see the details of those :)</p>
http://stackoverflow.com/questions/1474371/authenticating-windows-users-in-java-server/1474578#1474578Comment by Luke H on Authenticating Windows users in Java serverLuke H2009-10-01T14:35:28Z2009-10-01T14:35:28ZOk ... so, the .Net client code appears to be working now. The Java server code seems ok, it was a wee bit of a battle but it helps having access to the source code there :)
Finally, I seem to have problems simply setting up the SPN and keytab file correctly. I've put the question about them over on serverfault as I don't think there's any programming involved in that part! :)
<a href="http://serverfault.com/questions/70335/creating-keytabs-and-service-principal-names" rel="nofollow" title="creating keytabs and service principal names">serverfault.com/questions/70335/…</a>
Nearly there, I think/hope :)http://stackoverflow.com/questions/1499267/how-to-get-negotiatestream-to-use-kerberos/1500322#1500322Comment by Luke H on How to get NegotiateStream to use Kerberos?Luke H2009-09-30T21:16:59Z2009-09-30T21:16:59ZHa, thanks - that works (only if I use the domain name). So concretely, the string that works looks like this:
TEST/<my-pc-name>.<domain-name>@<domain-name>
I didn't think to try this combination as it looks so redundant, but I guess it makes sense. It doesn't work without the @DOMAIN and the username seems to require the domain name within it too.
I'll update the question tomorrow morning to mention the SPN stuff. Am I right in thinking then that NegotiateStream only uses Kerberos if a valid SPN is given, and just quietly falls back to NTLM if not?
Thanks for all your help :)http://stackoverflow.com/questions/1499267/how-to-get-negotiatestream-to-use-kerberosComment by Luke H on How to get NegotiateStream to use Kerberos?Luke H2009-09-30T19:30:12Z2009-09-30T19:30:12ZThis is running on Vista64 right now. I'm slightly confused about the proper format for myServicePrincipalName tbh - I've tried a few variants! I created the SPN with this:
setspn -A TEST/<my-pc-name>.<domain-name> <my-user-name>
I'm not sure if that's right either! :S It has registered the SPN, and I can look it up with
spn -L <my-user-name>
which lists
TEST/<my-pc-name>.<domain-name>
Given that, I was trying "TEST/my-pc-name", "TEST/my-user-name" and both of those with the domain name on the end as well.
Obviously a lot of guesswork going on, I haven't found great documentation :(http://stackoverflow.com/questions/1474371/authenticating-windows-users-in-java-server/1474578#1474578Comment by Luke H on Authenticating Windows users in Java serverLuke H2009-09-30T17:11:48Z2009-09-30T17:11:48ZI posted a follow-up with more specific detail on where I've got to, if you know about this stuff I'd appreciate your eyes on it! :)
<a href="http://stackoverflow.com/questions/1499267/how-to-get-negotiatestream-to-use-kerberos" rel="nofollow" title="how to get negotiatestream to use kerberos">stackoverflow.com/questions/1499267/…</a>http://stackoverflow.com/questions/1474371/authenticating-windows-users-in-java-server/1474578#1474578Comment by Luke H on Authenticating Windows users in Java serverLuke H2009-09-24T22:54:45Z2009-09-24T22:54:45ZThanks. When I said "basic authentication", I guess I chose an unfortunate phrase - didn't realise it had a specific meaning. I just meant that I'm not trying to do anything complex.http://stackoverflow.com/questions/1474371/authenticating-windows-users-in-java-serverComment by Luke H on Authenticating Windows users in Java serverLuke H2009-09-24T22:36:46Z2009-09-24T22:36:46ZThe "real thing" is SOAP. Having said that, it takes a while to build and run the full application, so my tests so far have been with a tiny little raw socket-based server - simply so I can make a change and re-run it within seconds. If I can get that working, it should be relatively simple to extend to the real app (I hope!)http://stackoverflow.com/questions/1462665/processes-and-tools-for-testing-large-projects-with-multiple-branches/1472069#1472069Comment by Luke H on Processes and tools for testing large projects with multiple branchesLuke H2009-09-24T17:29:44Z2009-09-24T17:29:44ZWe don't have a branch per developer - the only reason we have a fair number of branches is that we have a lot of developers.
We absolutely have to QA before merging to the mainline. Otherwise we end up with stability problems there, which causes problems for everyone.
Anyhow, it doesn't really matter where QA is done for the purposes of my question. Once you have a branched system, the question is, how do QA know whether to reopen a bug or whether they need to wait for the fix to reach the place they are testing (wherever it is).http://stackoverflow.com/questions/1462665/processes-and-tools-for-testing-large-projects-with-multiple-branchesComment by Luke H on Processes and tools for testing large projects with multiple branchesLuke H2009-09-23T06:46:37Z2009-09-23T06:46:37ZWe're not, no. To some extent, that might be a mistake - but it's done, and too late to worry about now. But mostly, our application is just about as badly-suited to automated testing as you could imagine, so there's a limit to how much it could have helped.http://stackoverflow.com/questions/350942/what-is-your-experience-of-devtrack/1165425#1165425Comment by Luke H on What is your experience of Devtrack?Luke H2009-08-11T08:00:36Z2009-08-11T08:00:36ZHey Joe. In the end, I was forced to take a very detailed look at Devtrack (as you say, it seems to have good support at decision maker level) and was fairly appalled. Luckily, Jira won out in the end and we've been very happy with it. It's a good product in its own right, and it also matches up well head-to-head with Devtrack's "selling points", which is good for winning that debate with decision makers (the price is good on that front too).http://stackoverflow.com/questions/977396/how-to-change-default-conjunction-with-lucene-multifieldqueryparser/977504#977504Comment by Luke H on How to change default conjunction with Lucene MultiFieldQueryParserLuke H2009-06-10T19:28:57Z2009-06-10T19:28:57ZThat's good thanks. The missing step was how to configure the Occur values afterwards.
Another approach I'm toying with is that the code for MultiFieldQueryParser.parse is tiny, so I might just paste that into my application and modify it. It creates QueryParser instances itself, so I can just tweak it to set the default operator on them.http://stackoverflow.com/questions/923117/problem-fetching-video-data-from-server-only-in-browser-pluginComment by Luke H on Problem fetching video data from server only in browser pluginLuke H2009-06-01T20:35:14Z2009-06-01T20:35:14ZYep there's some header writing code like this (it actually calls out to a load of other code to determine the headers, I've just hardcoded the strings returned here for simplicity):
response.setContentType("video/x-ms-wmv;charset=UTF-8");
response.setContentLength(contentLength);
response.setHeader("Content-Disposition", "inline; filename*=UTF-8''myvideoname.wmv;");http://stackoverflow.com/questions/923117/problem-fetching-video-data-from-server-only-in-browser-plugin/923289#923289Comment by Luke H on Problem fetching video data from server only in browser pluginLuke H2009-06-01T20:34:00Z2009-06-01T20:34:00Zsure ... but changing that doesn't help (and I've seen a working web app that returns UTF-8 charset for video) ... so while presumably incorrect, this isn't actually the problem.http://stackoverflow.com/questions/923117/problem-fetching-video-data-from-server-only-in-browser-plugin/923289#923289Comment by Luke H on Problem fetching video data from server only in browser pluginLuke H2009-05-30T10:25:21Z2009-05-30T10:25:21ZSomething with the headers being wrong is where most of my suspicion's been. Content Type seems to be set to
"video/x-ms-wmv;charset=UTF-8"http://stackoverflow.com/questions/923117/problem-fetching-video-data-from-server-only-in-browser-pluginComment by Luke H on Problem fetching video data from server only in browser pluginLuke H2009-05-30T10:21:30Z2009-05-30T10:21:30ZWriting the bytes out is very simple. I don't <i>think</i> this part can be wrong, as I said it works when you save the attachment to your disk.
byte[] buffer = new byte[4096];
while (true)
{
int bytesRead = in.read(buffer);
if (bytesRead == -1)
break;
out.write(buffer, 0, bytesRead);
}http://stackoverflow.com/questions/923117/problem-fetching-video-data-from-server-only-in-browser-plugin/923289#923289Comment by Luke H on Problem fetching video data from server only in browser pluginLuke H2009-05-29T11:26:10Z2009-05-29T11:26:10ZI tried replacing the call to close() with a call to flush() instead ... still have the same exception though :(
Thanks for the suggestion though.