User Drejc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T12:20:05Z http://stackoverflow.com/feeds/user/6482 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1789863/swfupload-on-https-not-working 0 SWFUpload on HTTPS not working Drejc 2009-11-24T12:45:26Z 2009-12-02T13:00:40Z <p>I have trouble uploading files with SWFUpload when target servlet is listening on HTTPS. On HTTP it works fine.</p> <p>The issue is only when using FireFox or Opera. On IE it works fine - not tried other browsers.</p> <p><strong>EDIT:</strong> Error message as provided from SWFUpload when in debug mode:</p> <p>*SWF DEBUG: Event: uploadProgress (OPEN): File ID: SWFUpload_0_0 SWF DEBUG: Event: uploadError : IO Error : File ID: SWFUpload_0_0. IO Error: Error #2038 SWF DEBUG: Event: uploadComplete : Upload cycle complete.*</p> http://stackoverflow.com/questions/1789863/swfupload-on-https-not-working/1810773#1810773 1 Answer by Drejc for SWFUpload on HTTPS not working Drejc 2009-11-27T22:04:59Z 2009-11-27T22:04:59Z <p>It appears to be a certificate authority issue: <a href="http://swfupload.org/forum/generaldiscussion/347" rel="nofollow">SWF discussion over HTTPS</a></p> http://stackoverflow.com/questions/356929/can-i-check-for-constraints-before-a-delete-in-sql-server 0 Can I check for constraints before a delete in SQL Server? Drejc 2008-12-10T17:42:24Z 2009-11-27T18:18:11Z <p>I have following situation. A main table and many other tables linked together with foreign keys. Now when I would like to delete a row in the main table a ConstraintsViolation will occur, which is intended and good.</p> <p>Now I want to be able to check if the ConstraintsViolation will occur before I trigger the delete row event. </p> <p>Is this possible?</p> http://stackoverflow.com/questions/1741242/gwt-check-if-flash-is-installed 0 GWT check if flash is installed Drejc 2009-11-16T10:14:10Z 2009-11-19T12:09:47Z <p>Is there a way in GWT to check if the browser running is supporting Flash?</p> http://stackoverflow.com/questions/1741242/gwt-check-if-flash-is-installed/1762859#1762859 1 Answer by Drejc for GWT check if flash is installed Drejc 2009-11-19T12:09:47Z 2009-11-19T12:09:47Z <p>The simplest solution was to incorporate the <a href="http://www.adobe.com/products/flashplayer/download/detection%5Fkit/" rel="nofollow">Flash detection KIT</a> as a native java script call. </p> http://stackoverflow.com/questions/1654246/how-to-run-a-gwt-servlet-automatically-in-some-particular-time-interval/1655487#1655487 0 Answer by Drejc for how to run a gwt servlet automatically in some particular time interval? Drejc 2009-10-31T20:13:17Z 2009-10-31T20:13:17Z <p>Your servlet is running on the back-end. So all you need is to create an endless loop which is regulary checking if an email needs to be send out.</p> <p>Something like this:</p> <pre><code>public void run() { isRunning = true; while (isRunning) { performSomething(); try { Thread.sleep(someInterval); } catch (InterruptedException e) { isRunning = false; } </code></pre> <p>}</p> <p>Where the performSomething(); method is a synchornized method:</p> <pre><code>public synchronized void performSomething() </code></pre> http://stackoverflow.com/questions/1543632/gwt-removeclickhandler 0 GWT removeClickHandler Drejc 2009-10-09T13:06:41Z 2009-10-09T13:13:18Z <p>GWT introduced with version 1.6 handlers to be used instead of listeners. Now I was used to add and remove those listeners to achieve certain behavior. </p> <p>But as I move towards using handlers I miss the remove methods. Like <strong>removeClickHandler</strong> for the click event.</p> <p>Is there a way to do this, or am I missing something?</p> http://stackoverflow.com/questions/1543632/gwt-removeclickhandler/1543662#1543662 0 Answer by Drejc for GWT removeClickHandler Drejc 2009-10-09T13:13:18Z 2009-10-09T13:13:18Z <p>I have found the solution</p> <pre><code>HandlerRegistration registration = addClickHandler(handler); ... registration.removeHandler(); </code></pre> http://stackoverflow.com/questions/867451/best-gwt-widget-library/944130#944130 0 Answer by Drejc for Best GWT widget library? Drejc 2009-06-03T10:54:42Z 2009-09-18T21:48:07Z <p>I would say if you need only a few widgets then build your own. You might copy-paste some concepts from the libraries mentioned. But they all lack one or the other thing. I have played with most of them and abandoned every one.</p> http://stackoverflow.com/questions/1196989/ant-machine-name-property 1 ant machine name property Drejc 2009-07-28T21:57:59Z 2009-09-03T20:49:00Z <p>Is there a way to get the machine name as ant property, for both Linux and Windows OS.</p> http://stackoverflow.com/questions/1371824/svn-permissions-for-a-single-file 1 SVN permissions for a single file Drejc 2009-09-03T07:05:28Z 2009-09-03T12:40:56Z <p>Is it possible in SVN to set write permission for a single file, while all the rest of the repository is read only.</p> http://stackoverflow.com/questions/1258933/gwt-conditional-compile 0 GWT conditional compile Drejc 2009-08-11T07:45:38Z 2009-08-23T16:36:14Z <p>I'm using the same source code for a GWT 1.5 and GWT 1.7 application.</p> <p>I'm wondering is there a way to conditionally compile parts of the java code for one or the other version.</p> <p>I know there is a way to do it for widgets and browsers in the module XML file.</p> http://stackoverflow.com/questions/1129984/net-1-1-and-ms-sql-2005-problem 0 .NET 1.1 and MS SQL 2005 problem Drejc 2009-07-15T07:46:34Z 2009-08-13T21:20:07Z <p>Suddenly I'm getting the following error on all web applications using dotNET 1.1 and trying to access MS SQL 2005. The applications and SQL server run on the same machine.</p> <pre><code>System.Data.SqlClient.SqlException Message: General network error. Check your network documentation. </code></pre> <p>I have googled the following and tried all suggested solutions, but none of them worked.</p> <p>The error appear for no particular reason, and now I'm stuck.</p> http://stackoverflow.com/questions/1258933/gwt-conditional-compile/1265506#1265506 1 Answer by Drejc for GWT conditional compile Drejc 2009-08-12T11:05:19Z 2009-08-12T11:05:19Z <p>The solution is very simple.</p> <pre><code>String version = GWT.getVersion(); if (version.startsWith("1.5")) { // do something the 1.5.* way } </code></pre> http://stackoverflow.com/questions/1037174/sql-use-statement-with-variable 0 sql use statement with variable Drejc 2009-06-24T08:52:06Z 2009-08-11T21:25:13Z <p>I'm trying to switch the current database with a SQL statement. I have tried the following, but all attempts failed:</p> <ol> <li>USE @DatabaseName</li> <li>EXEC sp_sqlexec @Sql -- where @Sql = 'USE [' + @DatabaseName + ']'</li> </ol> <p>To add a little more detail.</p> <p>EDIT: I would like to perform several things on two separate database, where both are configured with a variable. Something like this:</p> <pre><code>USE Database1 SELECT * FROM Table1 USE Database2 SELECT * FROM Table2 </code></pre> http://stackoverflow.com/questions/1227529/smart-html-encoding 1 Smart HTML encoding Drejc 2009-08-04T13:24:33Z 2009-08-04T15:06:23Z <p>I'm looking for the best way to do some sort of "smart" HTML encoding. For instance:</p> <pre><code>From: &lt;a&gt;Next &gt;&gt;&lt;/a&gt; to: &lt;a&gt;Next gt;gt;&lt;/a&gt; From: &lt;p&gt;&lt;a&gt;&lt;b&gt;&lt;&lt; Prev&lt;/b&gt;&lt;/a&gt;&lt;br/&gt;&lt;a&gt;Next &gt;&gt;&lt;/a&gt;&lt;/p&gt; to: &lt;p&gt;&lt;a&gt;&lt;b&gt;&amp;lt;&amp;lt; Prev&lt;/b&gt;&lt;/a&gt;&lt;br/&gt;&lt;a&gt;Next gt;gt;&lt;/a&gt;&lt;/p&gt; </code></pre> <p>So only the non XML / HTML part of the text would be encoded as if HtmlEncode is called.</p> <p>Any suggestions?</p> <p>EDIT: This should be as lightweight as possible. The incoming text will come from users which have no knowledge of HTML encoding. </p> http://stackoverflow.com/questions/231407/gwt-paging-widget 2 GWT paging widget Drejc 2008-10-23T20:38:09Z 2009-07-15T14:11:42Z <p>I'm looking for a GWT common purpose paging widget. So far I have found <a href="http://gwt-widget.sourceforge.net/" rel="nofollow">GWT widget library</a> and the <a href="http://code.google.com/p/google-web-toolkit-incubator/w/list" rel="nofollow">Google Incubator widgets</a>. Is there any other free (possibly open source) widget library implementing a paging behavior.</p> http://stackoverflow.com/questions/949122/insert-text-node-to-xml-document-containing-xml 2 Insert text node to XML document containing XML Drejc 2009-06-04T07:45:43Z 2009-07-07T09:17:20Z <p>I'm building a XML document dynamically where I create a a text node with CreateTextNode(<strong>text</strong>) method.</p> <p>Now in case the <strong>text</strong> contains XML it will be XML encoded.</p> <p>For instance:</p> <pre><code>text = "some &lt;b&gt;bolded&lt;/b&gt; text" </code></pre> <p>How do you insert the text without being XML encoded.</p> <p>EDIT: </p> <p>I'm building a XML document with XmlDocument and insert elements and nodes. The final output should not contain CDATA sections or encoded parts.</p> <p>For instace I want the final output to look like this, where the text comes from a setting:</p> <pre><code>&lt;root&gt;&lt;p&gt;Some &lt;b&gt;bolded&lt;/b&gt; text&lt;/p&gt;&lt;/root&gt; </code></pre> http://stackoverflow.com/questions/983738/call-to-tmouse-getcursorpos-sometimes-fails-with-a-call-to-an-os-function-failed/999919#999919 0 Answer by Drejc for Call to TMouse.GetCursorPos sometimes fails with "A call to an OS function failed" Drejc 2009-06-16T07:05:02Z 2009-06-16T07:05:02Z <p>Try calling the <strong>GetCursorPos(cursorPos);</strong> method in the <strong>Windows</strong> unit.</p> <p>Something like this:</p> <pre><code>var cursorPos : TPoint; begin GetCursorPos(cursorPos); cursorPos := ScreenToClient(cursorPos); </code></pre> <p>It works with no problem on all my applications.</p> http://stackoverflow.com/questions/355447/openoffice-command-line-pdf-creation 1 OpenOffice command line PDF creation Drejc 2008-12-10T08:49:07Z 2009-05-16T11:32:24Z <p>I have some documentation written in OpenOffice, now I would like to include some of it as PDF files in the final build deliveries. Now I would like to do this with the automated build script.</p> <p>Is there a way to create a PDF file from OpenOffice with a command line command?</p> http://stackoverflow.com/questions/450292/gwt-label-widget-receiving-focus-when-pressing-tab-key 1 GWT label widget receiving focus when pressing tab key Drejc 2009-01-16T12:34:18Z 2009-05-15T22:58:38Z <p>Current solution:</p> <ul> <li>user clicks on label and it is switched with a textarea to allow edit</li> <li>user can leave edit with tab / enter and textarea is switched back to a label</li> </ul> <p>The problem is the user has to click on the label with a mouse to get into edit mode. I would like the label to recieve an onFocus event when the user clicks the TAB key and the label is the next widget in line. </p> <p>Possible soulution (but have not tried yet) to inherit a new widget from the Label widget and implement the TabListener interface.</p> http://stackoverflow.com/questions/784835/what-are-typical-questions-good-programmers-should-be-able-to-answer/784931#784931 2 Answer by Drejc for What are typical questions good programmers should be able to answer? Drejc 2009-04-24T08:14:28Z 2009-04-24T11:12:32Z <p>I give the "candidate" a small project or code snippet in the language of choice and ask him what he finds good and bad about the code.</p> <p>The code itself has:</p> <ul> <li>some errors</li> <li>mixing coding style</li> <li>bad exception handling</li> <li>bad variable naming </li> <li>no comments or misleading ones</li> <li>repeated use of same code blocks ...</li> </ul> <p>If the candidade can see (and he should) what could be improved and can explain how he would do it (like unit tests before refactoring), then he probably knows his stuff.</p> http://stackoverflow.com/questions/751228/gwt-javascriptobject-reading-delete-property 0 GWT JavaScriptObject reading "delete" property Drejc 2009-04-15T11:18:38Z 2009-04-15T14:10:32Z <p>I have the following native method in a extended JavaScriptObject class:</p> <pre><code>public final native boolean getDelete() /*-{ return this.delete; }-*/; </code></pre> <p>but this apparently doesn't work as "delete" is an javascript operator.</p> <p>How can I read this property correctly.</p> <p>The thrown exception is: </p> <p><strong>com.google.gwt.dev.js.JsParserException: missing name after . operator</strong></p> http://stackoverflow.com/questions/658044/tick-symbol-in-html-xhtml/658518#658518 0 Answer by Drejc for Tick symbol in HTML/XHTML Drejc 2009-03-18T14:33:45Z 2009-03-18T14:33:45Z <p>Why don't you use the HTML input checkbox element in read only mode</p> <pre><code>&lt;input type="checkbox" disabled="disabled" /&gt; and &lt;input type="checkbox" checked="checked" disabled="disabled" /&gt; </code></pre> <p>I assume this will work on all browsers.</p> http://stackoverflow.com/questions/632669/gwt-fileupload/634360#634360 0 Answer by Drejc for gwt fileupload Drejc 2009-03-11T12:45:40Z 2009-03-11T12:45:40Z <p>The solution can be read here:</p> <p><a href="http://www.quirksmode.org/dom/inputfile.html" rel="nofollow">http://www.quirksmode.org/dom/inputfile.html</a></p> <p>in the last paragraph:</p> <blockquote> <p>The click() method allows you to simulate a click on a form field. Checkboxes get toggled, radios selected, and so on. Unfortunately Mozilla and Opera haven't added this method to file upload fields. I wonder why, adding it is not really a security risk since the worst that can happen is that the file selection window pops up.</p> </blockquote> http://stackoverflow.com/questions/632669/gwt-fileupload 0 gwt fileupload Drejc 2009-03-10T23:18:11Z 2009-03-11T12:45:40Z <p>I would like to trigger a click on the browse button on a hidden FileUpload widget. The following code works fine on IE 6+, but doesn't work in FireFox.</p> <pre><code>final FileUpload upload = new FileUpload(); upload.setVisible(false); upload.setName("uploadFormElement"); panel.add(upload); panel.add( new Button("Select File", new ClickListener() { public void onClick(Widget pSender) { jsClickUpload( upload.getElement() ); } })); native void jsClickUpload( Element pElement ) /*-{ pElement.click(); }-*/; </code></pre> <p>How can I achieve the same in FireFox (and possibly other browsers)?</p> http://stackoverflow.com/questions/552536/browser-language-autodetect-vs-user-select/552589#552589 7 Answer by Drejc for Browser language: autodetect vs user select? Drejc 2009-02-16T08:20:35Z 2009-02-16T08:22:18Z <p>I would suggest to autodetect the language and display the site in this language or the default languge (probably english) if the translation is not available. Additionally present the user with a selection of languages on top or bottom of your page. The names of the languages should be written in the target language. </p> <p><strong>Don't</strong> do it like that: English, German, Italian. </p> <p><strong>But:</strong> English, Deutsch, Italiano.</p> http://stackoverflow.com/questions/552456/some-java-help-please-cannot-find-symbol/552468#552468 2 Answer by Drejc for Some Java help please (cannot find symbol)? Drejc 2009-02-16T07:16:31Z 2009-02-16T07:16:31Z <p>It might help to structure your code first. Introduce methods instead of those long if () statements. </p> <p>To start with for instance do somthing like:</p> <pre><code>cluereward(clues.randomclue(cluelevel), clues.randomclue(cluelevel), clues.randomNonclue(cluelevel), clues.randomNonclue(cluelevel), clues.randomRunes(cluelevel), 1, 1, 1, 1, 500); deleteItem(2680 + cluelevel, GetItemSlot(2680 + cluelevel), 1); cluelevel = 0; cluestage = 0; clueid = 0; savemoreinfo(); </code></pre> http://stackoverflow.com/questions/520168/doubt-in-build-xml-file-in-apache-ant1-6-5/520184#520184 0 Answer by Drejc for Doubt in build.xml file in Apache-Ant1.6.5 Drejc 2009-02-06T13:02:14Z 2009-02-06T13:02:14Z <p>Try </p> <pre><code>Map&lt;?, ?&gt; inputconfigmap = new LinkedHashMap&lt;?, ?&gt;(); </code></pre> http://stackoverflow.com/questions/513229/delphi-control-that-could-mimic-add-onsextension-list-of-firefox/513371#513371 2 Answer by Drejc for Delphi control that could mimic "Add-ons|Extension list" of Firefox? Drejc 2009-02-04T21:12:27Z 2009-02-05T12:25:07Z <p>It can be done with existing Delphi controls. </p> <p>For instance in the <em>TCustomListBox</em> control you can create your own <strong>OnDrawItem</strong> event to draw your own list item. You also need to create your own <strong>OnMeasureItem</strong> to change the item height.</p> <p>In some cases it is very limited, so if you want more freedom you will need to do it from scratch.</p> http://stackoverflow.com/questions/1789863/swfupload-on-https-not-working Comment by Drejc on SWFUpload on HTTPS not working Drejc 2009-11-28T20:36:58Z 2009-11-28T20:36:58Z Sorry but I can't give you the URL. Currently we are setting up our server to be the certificate authority so we can try If it is really the issue. http://stackoverflow.com/questions/1789863/swfupload-on-https-not-working/1809638#1809638 Comment by Drejc on SWFUpload on HTTPS not working Drejc 2009-11-27T16:46:48Z 2009-11-27T16:46:48Z It working perfectly on HTTP and the servlet also works. The issue occurs only on HTTPS and FF / Opera. I assume it's some certificate issue as Freddy mentioned but the hard thing is to find out why. http://stackoverflow.com/questions/1789863/swfupload-on-https-not-working Comment by Drejc on SWFUpload on HTTPS not working Drejc 2009-11-27T16:16:30Z 2009-11-27T16:16:30Z Error message as provided from SWF in EDIT section of message. http://stackoverflow.com/questions/1741242/gwt-check-if-flash-is-installed/1762859#1762859 Comment by Drejc on GWT check if flash is installed Drejc 2009-11-26T08:11:21Z 2009-11-26T08:11:21Z Probably the swfobject solution is the more correct from the developers view. But it just to heavyweight for my purpose. So I went with the simple and working solution of the detection kit. http://stackoverflow.com/questions/1741242/gwt-check-if-flash-is-installed Comment by Drejc on GWT check if flash is installed Drejc 2009-11-16T21:05:10Z 2009-11-16T21:05:10Z I'm familiar with the fact that JavaScript native code can be run in GWT. But still I would need some javascript method performing the check. http://stackoverflow.com/questions/1543632/gwt-removeclickhandler/1543660#1543660 Comment by Drejc on GWT removeClickHandler Drejc 2009-10-09T13:13:54Z 2009-10-09T13:13:54Z He he .... I have also found the solution ... but 33 seconds later ;) http://stackoverflow.com/questions/1371824/svn-permissions-for-a-single-file/1371851#1371851 Comment by Drejc on SVN permissions for a single file Drejc 2009-09-03T07:44:32Z 2009-09-03T07:44:32Z Not really a solution when you work in a corporate environment. I have only access to the authz file. http://stackoverflow.com/questions/1258933/gwt-conditional-compile/1318962#1318962 Comment by Drejc on GWT conditional compile Drejc 2009-08-29T20:06:36Z 2009-08-29T20:06:36Z Thanks for pointing that out, but this is the only solution I have found. And it is only for a small code snippet. So the solution works just fine for me. http://stackoverflow.com/questions/1258933/gwt-conditional-compile Comment by Drejc on GWT conditional compile Drejc 2009-08-12T07:26:03Z 2009-08-12T07:26:03Z We did to. But in one case the old (1.5) and the new (1.7) compiled code does not behave the same. It's a combination of java and native inserted scripts. Moving the old (1.5) code to the new interfaces removing all deprecated calls is currently to much work. http://stackoverflow.com/questions/1227529/smart-html-encoding/1227671#1227671 Comment by Drejc on Smart HTML encoding Drejc 2009-08-04T13:58:55Z 2009-08-04T13:58:55Z The thing is I have a feature request to allow entry of HTML tags to format the text. BUT previously the text was always encoded and users are used to write non html text into the fields. Now I know there will be some input I have given as an example. To prevent It from breaking the XML I'm looking for a way to &quot;fix&quot; it. Intercepting the input is not an option, as I have no control over it. http://stackoverflow.com/questions/1227529/smart-html-encoding Comment by Drejc on Smart HTML encoding Drejc 2009-08-04T13:39:36Z 2009-08-04T13:39:36Z Yes I'm not looking for a perfect solution. The thing is users will have the option to insert some text with HTML tags. But they are used to insert things which are not HTML, like &gt;&gt;. So I must try to ensure the final content is OK. It's very hard to explain to users that they should use &amp;gt; and &amp;lt; instead. http://stackoverflow.com/questions/1129984/net-1-1-and-ms-sql-2005-problem/1130017#1130017 Comment by Drejc on .NET 1.1 and MS SQL 2005 problem Drejc 2009-07-15T08:45:19Z 2009-07-15T08:45:19Z The reinstall of dotNET Framework 1.1 and un / registration of it against IIS provided the solution. http://stackoverflow.com/questions/1129984/net-1-1-and-ms-sql-2005-problem Comment by Drejc on .NET 1.1 and MS SQL 2005 problem Drejc 2009-07-15T08:35:07Z 2009-07-15T08:35:07Z There is no detailed exception message present. http://stackoverflow.com/questions/1129984/net-1-1-and-ms-sql-2005-problem/1130017#1130017 Comment by Drejc on .NET 1.1 and MS SQL 2005 problem Drejc 2009-07-15T08:11:22Z 2009-07-15T08:11:22Z Right now I'm reinstalling all dotNET frameworks on my machine, as the same was suggested on some forum. Will see if it works. http://stackoverflow.com/questions/1129984/net-1-1-and-ms-sql-2005-problem/1130004#1130004 Comment by Drejc on .NET 1.1 and MS SQL 2005 problem Drejc 2009-07-15T08:00:29Z 2009-07-15T08:00:29Z No the user running is a local administrator and has full access enabled (it is my development machine). Nothing has chaned, the error suddenly appeared after the third or fourth call. The first two worked then it stopped.