User JohnIdol - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T05:07:12Zhttp://stackoverflow.com/feeds/user/19967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1914121/does-net-typecast-when-an-object-is-used-in-collection-using-generics/1914150#19141502Answer by JohnIdol for Does .Net typecast when an object is used in collection using generics?JohnIdol2009-12-16T11:39:58Z2009-12-16T11:39:58Z<p>Do you mean this?</p>
<pre><code>List<string> myList = new List<string>();
</code></pre>
<p>List is a generic type - if you declare like below you'll get a compialtion error:</p>
<pre><code>List myList = new List(); //<-- big mama of a compilation error
</code></pre>
<p>Anyway - since it's a generic List it is strongly typed, so you won't be able to pass-in anything that's not a string (if you do so it will result - again - in a <a href="http://ralphhardy.files.wordpress.com/2009/09/60-big-mama.jpg" rel="nofollow">big mama</a> of a compilation error).</p>
http://stackoverflow.com/questions/1908605/mvp-presenter-and-events/1909086#19090860Answer by JohnIdol for MVP Presenter and EventsJohnIdol2009-12-15T17:35:18Z2009-12-15T17:35:18Z<p>This sounds like a good candidate for applying the <a href="http://www.dofactory.com/Patterns/PatternObserver.aspx#%5Fself2" rel="nofollow">observer pattern</a>.</p>
http://stackoverflow.com/questions/935762/how-to-dynamically-build-jdo-queries-on-multiple-parameters0How to dynamically build JDO Queries on multiple parametersJohnIdol2009-06-01T17:07:13Z2009-12-15T12:52:33Z
<p>One can easily use JDO syntax to query on multiple parameters as follows:</p>
<pre><code>//specify the persistent entity you're querying and you filter usign params
query = pm.newQuery(MyClass.class, " customer == paramCustomer && date >= paramStartDate && date <=paramEndDate ");
// declare params used above
query.declareParameters("com.google.appengine.api.users.User paramCustomer, java.util.Date paramStartDate, java.util.Date paramEndDate");
//pass the object declared as params
MyClassList = (List<MyClass>) query.execute(user, startDate, endDate);
</code></pre>
<p>It's straightforward to programmatically build a string with the filter:</p>
<pre><code>"customer == paramCustomer && date >= paramStartDate && date <=paramEndDate"
</code></pre>
<p>and another strign with the params declaration:</p>
<pre><code>"com.google.appengine.api.users.User paramCustomer, java.util.Date paramStartDate, java.util.Date paramEndDate"
</code></pre>
<p>What's not immediate is to come up with a strategy for executing the query depending on which params are in the filter (and have been declared), so you end up with a number of really ugly and ad-hoc cascading if-else statements with all the possible permutations of the query execution (all the params, only the first, only the second, first and second etc...):</p>
<pre><code>MyClassList = (List<MyClass>) query.execute(user, startDate, endDate);
</code></pre>
<p>I am sure this is a common task and someone else is doing it in a more general and efficient way.</p>
<p>Any suggestion? </p>
http://stackoverflow.com/questions/1902549/rmi-registry-is-empty-after-restart0RMI registry is empty after restartJohnIdol2009-12-14T18:16:19Z2009-12-14T18:52:43Z
<p>I am using <a href="http://www.genady.net/rmi/index.html" rel="nofollow">this plugin</a> (it's pretty cool).</p>
<p>Needless to say, I am an RMI novice. I followed <a href="http://www.genady.net/rmi/v20/demos/" rel="nofollow">the tutorials</a> and was able to put together a sample application.</p>
<p>I do not understand though why every time I stop and restart my local RMI registry the remote objects that were bound to it just vanish.
Is this normal behavior? I was under the impression that the rmi registry could be used as a persistence tool - so the contents of the registry should not vanish when the registry is stopped and restarted.</p>
<p>I am probably missing something very obvious but, again, I am new to rmi.</p>
<p>Any pointers appreciated!</p>
http://stackoverflow.com/questions/1223955/getting-sitemap-is-html-from-google-webmaster-tool0Getting Sitemap is HTML from Google Webmaster ToolJohnIdol2009-08-03T18:44:31Z2009-12-14T06:59:16Z
<p>[<em>Note to the wise</em>: jump to last <strong>EDIT</strong>]</p>
<p>I have a very simple txt sitemap (named sitemap.txt) that looks like this:</p>
<pre><code>http://myDomain.com
http://myDomain.com/about.html
http://myDomain.com/faq.html
http://myDomain.com/careers.html
</code></pre>
<p>When I load it up on webmaster tools I get:</p>
<p><strong>Sitemap is HTML -
Your Sitemap appears to be an HTML page. Please use a supported sitemap format instead</strong></p>
<p>I tried a few alternatives (such as with or without www) but no luck.</p>
<p>Anyone any clue?</p>
<p>Any help appreciated!</p>
<p><strong>EDIT</strong>:</p>
<p>I tried with an xml sitemap and getting the same error so it looks like the server is serving everything as HTML (as ceejayoz correctly suggests).
Now the question is ... <strong>how do I get the appspot server to server text as plain text</strong>?</p>
<p><strong>EDIT:</strong></p>
<p>Ok - I got fed up and implemented a servlet to serve my sitemaps (I am now trying with both XML and TXT) explicitly as text/plain. Everything works fine if I manually invoke the servlet but still getting Sitemap is HTML. I don't know where to bang my head!</p>
<p><strong>EDIT:</strong>
I tried to verify content-type with a firefox plugin - everything seems to be coming up as
expected (I am putting the actual URL so that people can have a look): </p>
<p><a href="http://wokheisandbox.appspot.com/sitemaps/sitemap.txt" rel="nofollow">http://wokheisandbox.appspot.com/sitemaps/sitemap.txt</a> --> Content-type: text/plain
<a href="http://wokheisandbox.appspot.com/sitemaps/sitemap.xml" rel="nofollow">http://wokheisandbox.appspot.com/sitemaps/sitemap.xml</a> --> Content-type: application/xml</p>
<p>With my servlet (setting text/plain explicitly):
<a href="http://wokheisandbox.appspot.com/wokhei/serveSitemap?fileType=TXT" rel="nofollow">http://wokheisandbox.appspot.com/wokhei/serveSitemap?fileType=TXT</a> --> Content-type: text/plain
<a href="http://wokheisandbox.appspot.com/wokhei/serveSitemap?fileType=XML" rel="nofollow">http://wokheisandbox.appspot.com/wokhei/serveSitemap?fileType=XML</a> --> Content-type: text/plain </p>
<p>All I get from webmaster tool still is --><strong>Sitemap is HTML</strong>.</p>
<p><strong>EDIT</strong>:</p>
<p>I think I found out the reason --> I registered on google webmaster tools my site as <a href="http://mydomain.com" rel="nofollow">http://mydomain.com</a> but the app is hosted on appspot at <a href="http://myapp.appspot.com" rel="nofollow">http://myapp.appspot.com</a> which is mapped to mydomain.com. If I register <a href="http://myapp.appspot.com" rel="nofollow">http://myapp.appspot.com</a> everything works fine (sitemap validated). </p>
<p>This is good news but it's not ideal because I want mydomain.com to be indexed ... any idea about how to overcome?</p>
http://stackoverflow.com/questions/1862731/how-does-the-browser-know-a-web-page-has-changed0How does the browser know a web page has changed?JohnIdol2009-12-07T20:37:29Z2009-12-07T20:52:21Z
<p>This is a dangerously easy thing I feel I should know more about - but I don't, and can't find much around.</p>
<p>The question is: <strong>How exactly does a browser know a web page has changed?</strong></p>
<p>Intuitively I would say that F5 refreshes the cache for a given page, and that cache is used for history navigation only and has an expiration date - which leads me to think the browser never knows if a web page has changed, and it just reloads the page if the cache is gone --- but I am sure this is not always the case.</p>
<p>Any pointers appreciated!</p>
http://stackoverflow.com/questions/1585067/is-there-any-self-improving-compiler-around2Is there any self-improving compiler around?JohnIdol2009-10-18T14:50:55Z2009-12-06T06:18:42Z
<p>I am not aware of any self-improving compiler, but then again I am not much of a compiler-guy.</p>
<p><strong>Is there ANY self-improving compiler out there?</strong></p>
<p>Please note that I am talking about <em>a compiler that improves itself</em> - not <em>a compiler that improves the code it compiles</em>.</p>
<p>Any pointers appreciated!</p>
<p><strong>Side-note</strong>: in case you're wondering why I am asking have a look at <a href="http://www.acceleratingfuture.com/michael/blog/2009/10/yale-daily-news-on-ss09-fear-the-singularity/" rel="nofollow">this post</a>. Even if I agree with most of the arguments I am not too sure about the following: </p>
<blockquote>
<p>We have programs that can improve
their code without human input now —
they’re called compilers.</p>
</blockquote>
<p>... hence my question.</p>
http://stackoverflow.com/questions/866262/p4merge-error2p4merge errorJohnIdol2009-05-14T22:48:02Z2009-12-03T11:24:36Z
<p>I am trying to use p4merge with git but I am getting: </p>
<p><strong>Error starting p4merge: "path/myFile" is (or points to) an invalid file</strong> (this lists the BASE, LOCAL, REMOTE, and standard version of the file).</p>
<p>Git tells me about the conflict then it asks if I wanna start the mergetool configured (p4merge) and then I get the error above.</p>
<p>Additional note: it happens with any file!</p>
<p>Any clue about what this is and how to fix it?</p>
http://stackoverflow.com/questions/1831635/vptr-virtual-tables/1831657#18316570Answer by JohnIdol for vptr - virtual tablesJohnIdol2009-12-02T09:11:24Z2009-12-02T09:11:24Z<p><strong>first</strong>: yes: each instance will get that member variable declared by the base.</p>
<p><strong>second</strong>: in that situation you'll be able to access only members of the base class.</p>
<p><strong>third</strong>: you can call it if it is virtual, as long as it's not pure virtual (which means it doesn't have any implementation and it's declared like this: <code>virtual void foo() = 0;</code>).</p>
http://stackoverflow.com/questions/1317052/how-to-copy-to-clipboard-with-gwt2How to copy to clipboard with GWT?JohnIdol2009-08-22T21:07:14Z2009-12-01T11:53:34Z
<p>Couldn't find anything on this with a Google Search.</p>
<p>Does anyone know how to copy some text to the clipboard through GWT Java code?
I'd like to avoid the raw javascript injection solution.</p>
<p>Any help or pointers appreciated.</p>
http://stackoverflow.com/questions/1815791/how-to-know-statistical-data-on-google-app-engine/1815798#18157984Answer by JohnIdol for how to know statistical data on google app engineJohnIdol2009-11-29T15:24:27Z2009-11-29T15:34:59Z<p>You'll have to use <a href="http://www.google.com/intl/en%5Fus/analytics/" rel="nofollow">Google Analytics</a> for that. It's easy to do - you just need to subscribe from the analytics website with your google account and drop hooks on the pages you want to collect statistics for. Have a look at the analytics link, they have pretty straightforward tutorials.</p>
<p>On the other end, If you're looking for load information (how much cpu on google servers your app is using, throughput, etc.) then you have to look at the app engine dashboard for your app.</p>
<p>Hope it helps.</p>
http://stackoverflow.com/questions/909933/sqlserver-to-excel-export-with-openrowset0SqlServer to Excel export with OPENROWSETJohnIdol2009-05-26T10:11:45Z2009-11-28T00:59:31Z
<p>All,</p>
<p>I am successfully exporting to excel with the following statement:</p>
<pre><code>insert into OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 8.0;Database=C:\template.xls;',
'SELECT * FROM [SheetName$]')
select * from myTable
</code></pre>
<p>Is there any standard way to use this template specifying a new name for the excel sheet so that the template never gets written to or do I have to come up with some work-around?</p>
<p>What's the best way to do this in people experience?</p>
http://stackoverflow.com/questions/1795699/reverse-engineering-of-communication-protocols4Reverse-engineering of communication protocolsJohnIdol2009-11-25T09:26:26Z2009-11-25T20:50:55Z
<p>Just curious - what are some automatic or even semi-automatic techniques for <strong>reverse-engineering of communication protocols</strong>?</p>
<p>I am particularly interested in the case when one's sniffing traffic and trying to understand the protocol.</p>
<p>I could find a <a href="http://scholar.google.com/scholar?hl=en&q=reverse-engineering+communication+protocols&btnG=Search&as%5Fsdt=2000&as%5Fylo=&as%5Fvis=0" rel="nofollow">number of papers on scholar</a>, but in my experience this is a completely manual process most of the times.</p>
<p>If anyone has experience in the field and feels like sharing it would be much appreciated.</p>
http://stackoverflow.com/questions/1792470/subset-of-array-in-c/1792497#17924970Answer by JohnIdol for Subset of Array in C#JohnIdol2009-11-24T19:49:39Z2009-11-24T19:49:39Z<p>You can use a List and you can remove by index or range all you want. <a href="http://dotnetperls.com/list-remove" rel="nofollow">Here</a>'s a good tutorial.</p>
http://stackoverflow.com/questions/1789162/wpf-which-features/1789193#17891931Answer by JohnIdol for wpf which features ?JohnIdol2009-11-24T10:28:35Z2009-11-24T10:28:35Z<p>Here's a <a href="http://stackoverflow.com/questions/1684536/compelling-reasons-to-use-wpf/1684623#1684623">question</a> and <a href="http://stackoverflow.com/questions/202079/wpf-versus-winforms">its duplicate</a> with <strong>compelling reasons to use WPF</strong> - these reasons can easily be mapped to the <strong>most important features</strong> since they represent the advantages of using WPF compared to other options (mainly WinForms).</p>
<p><strong>Note</strong>: DataBinding is not one of the most important features of WPF in my opinion! you can easily do that with WinForms.</p>
http://stackoverflow.com/questions/1735611/asp-page-displaying-old-request/1786845#17868450Answer by JohnIdol for ASP page displaying old request.JohnIdol2009-11-23T23:42:04Z2009-11-23T23:42:04Z<p>A fairly quick way to tell what's going on is to throw some breakpoints in there on the lines where you're retrieving the stuff from session and <strong>troubleshoot the hell out of it</strong>.</p>
<p>If it happens after you've seen the stuff from session being pulled out alright and no other funny business is going on (such as tasty exceptions being swallowed somewhere along the line) then it means it's a browser caching problem (and good luck with that!). </p>
http://stackoverflow.com/questions/1783372/create-shared-folder-accessible-from-domain-with-c/1783699#17836990Answer by JohnIdol for Create shared folder accessible from domain with C#JohnIdol2009-11-23T15:09:10Z2009-11-23T15:26:02Z<p>I assume you're using the <code>ManagementClass</code> to <a href="http://www.sarampalis.org/articles/dotnet/dotnet0002.shtml" rel="nofollow">create a shared folder</a>. </p>
<p>Setting the Access field of your <code>ManagementBaseObject</code> should give full control to everyone:</p>
<pre><code>ManagementClass mc = new ManagementClass("win32_share");
ManagementBaseObject inParams = mc.GetMethodParameters("Create");
inParams["Description"] = "Shared Folder";
// ... whathever ...
inParams["Access"] = null; // <-- should give full control access to everyone
</code></pre>
<p>If the above doesn't work you might wanna try explicitly setting the security level with smt like the following:</p>
<pre><code> public static void AddDirectorySecurity(string FileName, string Account, FileSystemRights Rights, AccessControlType ControlType)
{
DirectoryInfo dInfo = new DirectoryInfo(FileName);
DirectorySecurity dSecurity = dInfo.GetAccessControl();
// Add the FileSystemAccessRule to the security settings.
dSecurity.AddAccessRule(new FileSystemAccessRule(Account,
Rights,
ControlType));
// Set the new access settings.
dInfo.SetAccessControl(dSecurity);
}
</code></pre>
<p>If none of the above helps, then I'd suggest you post your code.</p>
http://stackoverflow.com/questions/1782478/asp-net-add-column-to-gridview-by-code/1782563#17825630Answer by JohnIdol for asp.net add column to GridView by codeJohnIdol2009-11-23T11:27:56Z2009-11-23T11:27:56Z<p>Seems like <a href="http://www.highoncoding.com/Articles/29%5FCreating%5FDatagrid%5Fcolumns%5Fprogrammatically.aspx" rel="nofollow">this</a> and <a href="http://www.codeproject.com/KB/webforms/GridViewColumns.aspx" rel="nofollow">this</a> tutorials might be of your interest.</p>
http://stackoverflow.com/questions/1775788/asp-net-dynamic-command-button-event-not-firing/1775812#17758123Answer by JohnIdol for ASP.NET dynamic Command Button event not firing JohnIdol2009-11-21T15:43:16Z2009-11-23T10:28:59Z<p>You have to wire it up like this (in C#):</p>
<pre><code>myButton.Click += new EventHandler(this.Button_Clicked);
</code></pre>
<p>Alternatively you can inject the attribute --> <code>onclick = "Button_Clicked"</code> like this:</p>
<pre><code>myButton.Attributes.Add("onclick", "Button_Clicked");
</code></pre>
<p>If you want it in VB.NET go <a href="http://www.developerfusion.com/tools/convert/csharp-to-vb/" rel="nofollow">to this page</a> and knock yourself out - I could do it for you but what's the point :)</p>
<p><strong>EDIT</strong>: keep in mind you'll have to re-wire the event-handler (as shown above) every page-load.</p>
<p><strong>EDIT</strong>: OK - I see the problem now that you added the rest of the code. You are wiring up the event handler on pre_render. Event handlers are executed just before load_complete, which happens before pre_render. This is why you event_handler doesn't execute: <strong>you're adding it too late in the page lifecycle</strong>. Put that code in the page_load routine and it should work.</p>
http://stackoverflow.com/questions/1777320/c-function-skipped-at-runtime/1777330#17773301Answer by JohnIdol for C Function Skipped at RuntimeJohnIdol2009-11-22T00:37:07Z2009-11-22T00:37:07Z<p>That looks like a function declaration to me - that's why your foo-nction is not being called.</p>
http://stackoverflow.com/questions/1776453/how-the-websites-should-be-organised/1776563#17765630Answer by JohnIdol for How the websites should be organised?JohnIdol2009-11-21T19:54:14Z2009-11-21T19:54:14Z<p>The usual approach is to replace everything with xcopy or the publish function in visual-studio, and in some cases replacing everything is the only approach - for example if you're using the web-application project model everything gets packaged into a single assembly and there you go - even to apply a small change you'll have to re-deploy the whole thing. </p>
<p>An alternative to this could be the Website model in visual studio, using which you should be able to deploy single code files on your server and they should be picked-up if you re-start the website from the IIS management tool. This model - in fact - works in a different way compared to the web-application project model. It's just a bunch of code files that will be dynamically compiled by the ASP.NET runtime. </p>
<p>Even if possible though - I wouldn't suggest the approach of deploying single files - as this is easily error prone (you deploy the code-behind and could easily forget to deploy the aspx counterpart, or similar). Unless you're delpoying Gigs of stuff over slow-networks, redeploying the whole thing is always the safest bet. </p>
<p>Have a look at <a href="http://www.compiledthoughts.com/2008/05/web-site-vs-web-application-project.html" rel="nofollow">this</a> and <a href="http://www.dotnetspider.com/resources/1520-Difference-between-web-site-web-application.aspx" rel="nofollow">this</a> interesting links to find out more about website and web-application project models in visual studio.</p>
http://stackoverflow.com/questions/1775791/gridview-to-refresh-when-button-click-updates-data/1775798#17757981Answer by JohnIdol for GridView to refresh when button click updates dataJohnIdol2009-11-21T15:38:23Z2009-11-21T15:45:50Z<p>The <a href="http://msdn.microsoft.com/en-us/library/fkx0cy6d.aspx" rel="nofollow">GridView.DataBind</a> Method will clear and re-populate your grid view (assuming the datasource is already set - see the link for an example).</p>
http://stackoverflow.com/questions/1311424/wpf-listview-still-reserving-space-when-collapsed0WPF ListView still reserving space when collapsedJohnIdol2009-08-21T11:28:41Z2009-11-20T19:39:35Z
<p>I have a WPF ListView within a ScrollViewer.</p>
<p>I need to collapse the ListView and I am trying withthis code (pretty striaghtoforward):</p>
<pre><code>this.myListView.Visibility = Visibility.Collapsed;
</code></pre>
<p>Problem is the ListView seems to be reserving the space even when collapsed - it disappears but the ScrollViewer doesn't accordingly resize.</p>
<p>Anything I am missing?</p>
<p>Any Help appreciated</p>
http://stackoverflow.com/questions/1311424/wpf-listview-still-reserving-space-when-collapsed/1772780#17727801Answer by JohnIdol for WPF ListView still reserving space when collapsedJohnIdol2009-11-20T19:39:35Z2009-11-20T19:39:35Z<p>Thanks to everyone for their answers - I found out that a globally applied style was causing the problem! Solved now.</p>
http://stackoverflow.com/questions/1771893/dynamic-creation-of-asp-net-form-elements/1771976#17719761Answer by JohnIdol for Dynamic creation of ASP.NET Form ElementsJohnIdol2009-11-20T17:15:51Z2009-11-20T19:31:12Z<p>On PostBack you need to explicitly regenerate the buttons from ViewState (you check the added counter you have in the viewstate and regenerate the added buttons) - otherwise they'll be gone (and only the original one will appear, as you're experiencing).</p>
<p>Have a look at <a href="http://stackoverflow.com/questions/272928/how-can-i-create-buttons-and-hook-up-events-from-postback">this question</a>, the guy is trying to achieve smt extremely similar to what you're looking for (maintaining a bunch of dynamic buttons and regenerating them on postback).</p>
http://stackoverflow.com/questions/1111869/what-are-quines-any-specific-purpose-to-have-them/1764933#17649331Answer by JohnIdol for What are quines? Any specific purpose to have them?JohnIdol2009-11-19T17:08:58Z2009-11-19T17:08:58Z<p>As others explained, quines are programs that reproduce exact copies of themselves.</p>
<p>With regards to applications, if you think that the DNA encodes logic to interpret itself and reproduce itself - the answer is pretty straightforward, without the concept of quines we wouldn't be here and we would never be able to create artificial (self-reproducing) life. </p>
http://stackoverflow.com/questions/1762984/c-quine-problem0C# Quine ProblemJohnIdol2009-11-19T12:34:23Z2009-11-19T12:49:42Z
<p>I am trying to understand how this piece of self-replicating code works (found <a href="http://safalra.com/programming/c-sharp/quines/" rel="nofollow">here</a>), but the problem is I can't get it to run <strong>as-is</strong>:</p>
<pre><code>class c {
static void Main(){
string s = "class c{{static void Main(){{string s={0}{10};System.Console.Write(s,(char)34,s);}}}}";
System.Console.Write(s,(char)34,s); //<<-- exception on this line
}
}
</code></pre>
<p>It's throwing an exception on writeline: <strong>Index (zero based) must be greater than or equal to zero and less than the size of the argument list.</strong> </p>
<p>Can someone help - in particular about the formatting option {0}{10}?</p>
<p>I got it working like this (see below) but it's longer than the original - I am curious how the original could have worked as-is in the 1st place:</p>
<pre><code>class c {
static void Main(){
string s = "class c{{static void Main(){{string s={0}{1}{2};System.Console.Write(s,(char)34,s,(char)34);}}}}";
System.Console.Write(s,(char)34,s,(char)34);
}
}
</code></pre>
http://stackoverflow.com/questions/1723558/where-to-put-the-interfaces-in-a-component-based-architecture6Where to put the interfaces in a component based architecture?JohnIdol2009-11-12T16:34:30Z2009-11-18T04:40:10Z
<p>In a component based architecture where a large number of decoupled components communicate through a set of standardized interfaces - are there any guidelines for where-to-store / how-to-group the interfaces?</p>
<p>Extreme solutions would be:</p>
<ul>
<li>All in the same assembly (and off you go)</li>
<li>One assembly for each interface</li>
</ul>
<p>Both of these option seems wrong to me - the first being not flexible enough (for example if you want to change only one interface) the second being the other extreme, which could escalate to maintenance nightmare very quickly. </p>
<p>In particular, <strong>I am looking for KILLER arguments not to adopt the two extremes above</strong> and obviously alternative approchaes.</p>
<p>Any opinions appreciated.</p>
http://stackoverflow.com/questions/1752851/how-to-setup-tomcat-with-eclipse0How to setup tomcat with Eclipse?JohnIdol2009-11-18T00:30:26Z2009-11-18T01:11:02Z
<p>I've been spoiled by .NET development and this is driving me <strong>NUTS</strong>.</p>
<p>I am on Galileo.</p>
<p>Installed the <a href="http://download.eclipse.org/webtools/updates/" rel="nofollow">WTP</a>.</p>
<p>Installed <a href="http://tomcat.apache.org/download-60.cgi" rel="nofollow">tomcat 6</a> through the windows installer.</p>
<p>If I go (in eclipse) to <strong>Window --> Preferences --> Server --> Runtime Environment</strong> I get no tomcat option at all, as in a number of <a href="http://www.eclipse.org/webtools/jst/components/ws/M3/tutorials/InstallTomcat.html" rel="nofollow">tutorials</a> - only a basic folder with the useless J2EE Runtime Library.</p>
<p>What am doing wrong?</p>
<p>Any help appreciated!</p>
http://stackoverflow.com/questions/1744101/how-do-i-get-a-dynamic-controls-value-after-postback/1744207#17442070Answer by JohnIdol for How Do I Get a Dynamic Control's Value after Postback?JohnIdol2009-11-16T19:11:02Z2009-11-16T19:50:39Z<p><a href="http://stackoverflow.com/questions/272928/how-can-i-create-buttons-and-hook-up-events-from-postback">Very similar question</a> (instead of populating a ListView the guy is generating a set of buttons). Briefly, you'll find that you have to store the items in the list in your Viestate - than fish it out on Postback and re-populate the list. </p>
<p>Note that this solutions implies dropping data-binding (which you might not wanna do for others reasons).</p>
<p>Hope it helps.</p>
http://stackoverflow.com/questions/1914622/some-semple-genetic-engineering-projectsComment by JohnIdol on some semple genetic engineering projectsJohnIdol2009-12-16T14:06:42Z2009-12-16T14:06:42ZCheck this stackoverflow of science --><a href="http://sciencestack.com/" rel="nofollow">sciencestack.com</a>http://stackoverflow.com/questions/1909984/how-to-run-client-and-server-side-code-for-same-button/1910026#1910026Comment by JohnIdol on How to run client and server side code for same button?JohnIdol2009-12-15T20:24:36Z2009-12-15T20:24:36Zthanks for the clarification - I am a javascript occasional hacker and I thought I caught it! :)http://stackoverflow.com/questions/1909984/how-to-run-client-and-server-side-code-for-same-button/1910026#1910026Comment by JohnIdol on How to run client and server side code for same button?JohnIdol2009-12-15T20:15:00Z2009-12-15T20:15:00Zisn't it the same? --> OnClientClick="javascript:DisableSave();"http://stackoverflow.com/questions/1187814/how-to-implement-the-observer-pattern-with-java-rmiComment by JohnIdol on How to implement the Observer pattern with Java RMI?JohnIdol2009-12-15T19:06:56Z2009-12-15T19:06:56ZI am trying to do this as well and I came to the same conclusion ... rmi kinda sucks! :)http://stackoverflow.com/questions/1902549/rmi-registry-is-empty-after-restart/1902770#1902770Comment by JohnIdol on RMI registry is empty after restartJohnIdol2009-12-14T19:01:47Z2009-12-14T19:01:47Zobjects bound to it wouldn't survive restart either, I seem to understand?http://stackoverflow.com/questions/1902549/rmi-registry-is-empty-after-restart/1902581#1902581Comment by JohnIdol on RMI registry is empty after restartJohnIdol2009-12-14T18:37:35Z2009-12-14T18:37:35ZOK - thats what I am missing. What led me to believe that is the fact that during a training session they were showing an sample ATM application (with no db) and the logic consequence of that is that the stuff get persisted in the registry (otherwise every time you reboot the server your bank-account would go blank!).
I imagine if I use remote-activation it won't make a difference? One thing I am reading (<a href="http://www.universalteacherpublications.com/java/rmi/ch13/ch13_page01.htm" rel="nofollow">universalteacherpublications.com/java/rmi/…</a>) is that with remote activation the remote objects in the registry survive server crashes?http://stackoverflow.com/questions/1223955/getting-sitemap-is-html-from-google-webmaster-tool/1899352#1899352Comment by JohnIdol on Getting Sitemap is HTML from Google Webmaster ToolJohnIdol2009-12-14T09:29:18Z2009-12-14T09:29:18Zmake sure to upvote who helped u :)http://stackoverflow.com/questions/1877264/which-design-pattern-to-useComment by JohnIdol on Which design pattern to use?JohnIdol2009-12-09T22:09:02Z2009-12-09T22:09:02Zyou'll need to give a bit more details if you wanna get a meaningful answer :)http://stackoverflow.com/questions/1862731/how-does-the-browser-know-a-web-page-has-changed/1862736#1862736Comment by JohnIdol on How does the browser know a web page has changed?JohnIdol2009-12-07T20:45:23Z2009-12-07T20:45:23ZI have to say I am bit lost in that rfc dochttp://stackoverflow.com/questions/1862731/how-does-the-browser-know-a-web-page-has-changed/1862736#1862736Comment by JohnIdol on How does the browser know a web page has changed?JohnIdol2009-12-07T20:41:20Z2009-12-07T20:41:20Zthe docs are what I was asking for :) - thanks for the linkshttp://stackoverflow.com/questions/1839055/asp-net-listview-and-datapager-inside-ajax-update-panelComment by JohnIdol on ASP.net Listview and datapager inside ajax update panelJohnIdol2009-12-03T12:15:47Z2009-12-03T12:15:47Zshow-us-the-code :)http://stackoverflow.com/questions/1825106/sql-server-2008-installation-failure/1825119#1825119Comment by JohnIdol on Sql server 2008 installation failureJohnIdol2009-12-01T10:07:26Z2009-12-01T10:07:26Zfrightening behaviorhttp://stackoverflow.com/questions/1823115/help-with-sql-to-get-hits-per-day-for-today-and-1-month-priorComment by JohnIdol on Help with SQL to get Hits per day for today and 1 month prior...JohnIdol2009-12-01T00:03:28Z2009-12-01T00:03:28ZI'd really like to help but that kinda SQL I look into only for heavy cash :)http://stackoverflow.com/questions/1819796/asp-net-to-check-character/1819844#1819844Comment by JohnIdol on asp.net to check characterJohnIdol2009-11-30T13:36:00Z2009-11-30T13:36:00Z+1 for understanding what the heck Domnic was talking abouthttp://stackoverflow.com/questions/1819016/viewing-session-data-on-master-page-in-asp-netComment by JohnIdol on viewing session data on master page in asp.netJohnIdol2009-11-30T10:35:36Z2009-11-30T10:35:36Zare you asking how to retrieve stuff from session or how to add rows to gridviews? or both?