User Juri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T16:24:06Zhttp://stackoverflow.com/feeds/user/50109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1880536/how-to-bind-customdateeditor-to-all-date-fields-in-springframework/1883772#18837720Answer by Juri for How to bind CustomDateEditor to all Date fields in Springframework?Juri2009-12-10T20:25:59Z2009-12-10T20:25:59Z<p>It's quite a while back since I used Spring's validation framework. By looking at your code and the details you provided I didn't find any discrepancies. The only difference I noted when looking at my code was that I first created the CustomDateEditor, registered it with the binder and then called the super.initBinder.</p>
<p>Just for curiosity, did you try something like this</p>
<pre><code>protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception {
binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"){{ setLenient(false);}},false));
super.initBinder(request, binder);
}
</code></pre>
http://stackoverflow.com/questions/1874636/what-is-the-difference-between-resolveurl-and-resolveclienturl/1874789#18747891Answer by Juri for What is the difference between ResolveUrl and ResolveClientUrl?Juri2009-12-09T15:48:37Z2009-12-09T15:48:37Z<p>According to the MSDN documentation:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.resolveclienturl.aspx" rel="nofollow"><strong>ResolveClientUrl</strong></a></p>
<blockquote>
<p>A fully qualified URL to the specified
resource suitable for use on the
browser.</p>
<p>Use the ResolveClientUrl method to
return a URL string suitable for use
by the client to access resources on
the Web server, such as image files,
links to additional pages, and so on.</p>
</blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.resolveurl.aspx" rel="nofollow"><strong>ResolveUrl</strong></a></p>
<blockquote>
<p>The converted URL.</p>
</blockquote>
<p>If the relativeUrl parameter contains an absolute URL, the URL is returned unchanged. If the relativeUrl parameter contains a relative URL, that URL is changed to a relative URL that is correct for the current request path, so that the browser can resolve the URL.</p>
<blockquote>
<p>For example, consider the following
scenario:</p>
<p>A client has requested an ASP.NET page
that contains a user control that has
an image associated with it.</p>
<p>The ASP.NET page is located at
/Store/page1.aspx.</p>
<p>The user control is located at
/Store/UserControls/UC1.ascx.</p>
<p>The image file is located at
/UserControls/Images/Image1.jpg.</p>
<p>If the user control passes the
relative path to the image (that is,
/Store/UserControls/Images/Image1.jpg)
to the ResolveUrl method, the method
will return the value
/Images/Image1.jpg.</p>
</blockquote>
<p>I think this explains it quite well.</p>
http://stackoverflow.com/questions/477899/how-does-facebooks-share-a-link-feature-work/477937#4779370Answer by Juri for How does facebook's Share a link feature work?Juri2009-01-25T17:08:40Z2009-12-06T21:50:39Z<p>I guess you have to construct it by yourself by manually parsing the kind of URL you get.
If it is an image url, well then you just have to rescale it and in case the user clicks on it, then handle that by opening the original one somehow.</p>
<p>If it is a link to some youtube video, then you have to take a look at how the embedding of Youtube videos works. You can just copy the code that is provided by Youtube itself, and then exchange the parts with the URL to the video with the URL you got from your user.</p>
<p>I did never implement something like that, but I assume it should work somehow like this.</p>
<p>Greets,
Juri</p>
http://stackoverflow.com/questions/1831490/android-onlongclicklistener-not-firing-on-mapview0Android OnLongClickListener not firing on MapViewJuri2009-12-02T08:39:27Z2009-12-03T10:57:53Z
<p>Hi,</p>
<p>I just registered an OnLongClickListener on my my MapView on an Android app I'm currently writing. For some reason however the onLongClick event doesn't fire.</p>
<p>Here's what I've written so far:</p>
<pre><code>public class FriendMapActivity extends MapActivity implements OnLongClickListener {
private static final int CENTER_MAP = Menu.FIRST;
private MapView mapView;
private MapController mapController;
//...
private boolean doCenterMap = true;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.friendmapview);
this.mapView = (MapView) findViewById(R.id.map_view);
this.mapController = mapView.getController();
mapView.setBuiltInZoomControls(true);
mapView.displayZoomControls(true);
mapView.setLongClickable(true);
mapView.setOnLongClickListener(new OnLongClickListener() {
public boolean onLongClick(View v) {
//NEVER FIRES!!
return false;
}
});
//...
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
switch (keyCode) {
case KeyEvent.KEYCODE_3:
mapController.zoomIn();
break;
case KeyEvent.KEYCODE_1:
mapController.zoomOut();
break;
}
return super.onKeyDown(keyCode, event);
}
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
int actionType = ev.getAction();
switch (actionType) {
case MotionEvent.ACTION_MOVE:
doCenterMap = false;
break;
}
return super.dispatchTouchEvent(ev);
}
...
}
</code></pre>
<p>May overlays which I'm adding cause the problem?? Any suggestions?</p>
http://stackoverflow.com/questions/1831490/android-onlongclicklistener-not-firing-on-mapview/1836392#18363920Answer by Juri for Android OnLongClickListener not firing on MapViewJuri2009-12-02T22:42:06Z2009-12-03T10:57:53Z<p>In the mean time I found the "solution" (or workaround, call it as you like) by myself. The way I worked through this issue is by using a GestureDetector and forwarding all touch events to that object by implementing an according OnGestureListener interface.</p>
<p>I've posted some code on my blog if anyone is interested:
<a href="http://blog.js-development.com/2009/12/mapview-doesnt-fire-onlongclick-event.html" rel="nofollow">http://blog.js-development.com/2009/12/mapview-doesnt-fire-onlongclick-event.html</a></p>
<p>Don't ask me why this didn't work by hooking up the OnLongClickListener directly on the MapView. If someone has an explanation let me know :)</p>
<p><strong>UPDATE:</strong><br>
My previously suggested solution using a GestureDetector posed some drawbacks. So I updated the blog post on my site.</p>
http://stackoverflow.com/questions/1832290/android-id-naming-convention-lower-case-with-underscore-vs-camel-case1Android id naming convention: lower case with underscore vs. camel caseJuri2009-12-02T11:17:37Z2009-12-02T15:30:11Z
<p>Hi,</p>
<p>I'm currently programming an application for the Android. Now what I found out is that you cannot place resource objects, say, an image in the drawable folder and name it like "myTestImage.jpg". This will give you a compiler error since camel case syntax is not allowed, so you'd have to rename it like "my_test_image.jpg".</p>
<p>But what about ids you define in the XML file. Say you have the following definition</p>
<pre><code><TextView android:id="@+id/myTextViewFirstname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Firstname" />
</code></pre>
<p>This is a valid definition, compiles and works just fine on my Android emulator although - as you see - I'm specifying the id in camel case syntax.</p>
<p>Now, the Android samples always use lower case and underscore. Is this just a naming convention to use lower case with underscore for the id's or may it cause problems on the real device?</p>
<p>Thx</p>
http://stackoverflow.com/questions/1802494/c-check-which-project-is-calling-class-library/1802510#18025103Answer by Juri for c#: Check which project is calling class libraryJuri2009-11-26T09:16:51Z2009-11-26T09:26:49Z<p>Hmm...that doesn't sound good to me. What you're trying to achieve is to create a dependency from your class-library -> project which should instead be project -> class library dependency.</p>
<p>From my point this is "not" achievable and if so just hardly and is not considered good practice. A good class library should be of general purpose and should not change behavior depending on its caller.</p>
<p>(Maybe you could describe in more detail the nature of your problem, so I could help you better and find a better solution)</p>
http://stackoverflow.com/questions/1795127/how-to-parse-the-xml-file-of-the-given-format/1795275#17952750Answer by Juri for How to parse the XML file of the given format??Juri2009-11-25T07:40:52Z2009-11-25T07:40:52Z<p>I'd suggest using <a href="http://www.jdom.org/" rel="nofollow">jDom</a>. It's quite a while ago that I had to parse XML files in Java, but when I had to do so I always used jDom in combination with XPath. This makes it very easy to navigate through the list of elements and having appropriate methods which given an XML element return you - for instance - a Protocol object.</p>
<pre><code>public List<Protocol> parseXMLDoc(){
List<Protocol> protocolObjs = new ArrayList<Protocol>();
...
Document doc = ....; //the xml DOM document
Element root = doc.getRootElement();
List<Element> protChildElements = root.getChildren();
foreach(Element protocolElement : protChildElements){
Protocol obj = getProtocolObj(protocolElement);
if(obj != null)
protocolObjs.add(obj);
}
return protocolObjs;
}
private Protocol getProtocolObj(Element xmlProtocolElement){
Protocol result = new Protocol();
//parse the xml elements and set the data
//through according setters of the Protocol obj
Element csEl = xmlProtocolElement.getChild("cs");
CS csObj = getCSObj(csEl);
result.setCS(csObj);
...
return result;
}
</code></pre>
<p>Hope you got my idea. Note, I wrote this out of my head, so I cannot guarantee that it will work :)</p>
http://stackoverflow.com/questions/1779842/auto-generate-class-diagrams-from-solution/1779866#17798660Answer by Juri for auto generate class diagrams from solution?Juri2009-11-22T20:23:28Z2009-11-22T20:23:28Z<p>In VS2008 you can actually create "UML" diagrams. It's directly integrated, when you right-click on your VS project. It's not real UML, so I don't know if it suits you needs.</p>
<p>Anyway I wonder for what reason you need a class diagram of your whole program? From my personal experience I didn't find it useful to model whole applications as UML class diagrams. They are more useful to model relationships among parts of an application for a better understanding between the devs.</p>
http://stackoverflow.com/questions/1100097/analyzing-code-structure-using-codedom0Analyzing code structure using CodeDom??Juri2009-07-08T19:31:30Z2009-11-09T15:20:04Z
<p>Hi,</p>
<p>I recently wrote a <a href="http://stackoverflow.com/questions/1052269/free-c-metrics-calculation-library-dll">post here on Stackoverflow</a> asking for some C# libraries that calculate metrics, mainly CC...unfortunately with no success. So I'm going to write it myself. I did a search on the web of what could be the best approach, but before starting I'd like to ask you on how you'd do it.</p>
<p>I'm currently between two kind of approaches</p>
<ul>
<li>Given a source code directory, to parse the source code with regex expressions or similar for identifying the constructs like methods, conditional statements etc. for being able to calculate CC</li>
<li>Given an assembly, loading it and analyzing it (using CodeDom?)</li>
</ul>
<p>I'm more for the 2nd approach, since parsing the source code directly doesn't seem to be a good approach to me. I've read about CodeDom which is integrated in the .Net framework. I know it is used for dynamic code generation. I guess I could also use it for analyzing the code structure, can't I? Does anybody of you have some good starting point of using CodeDom, some hints, good tutorials where to start?</p>
<p>Thanks</p>
<p>Edit:
Or possibly some other utility that allows to parse source code easily (DOM like structure).</p>
http://stackoverflow.com/questions/1696927/whats-is-the-difference-between-include-and-extend-in-use-case-diagram/1696990#16969900Answer by Juri for What's is the difference between include and extend in use case diagram?Juri2009-11-08T16:07:37Z2009-11-08T16:07:37Z<p>I have often also to re-read some docs. Time ago, I wrote a post about it, taking things from different sources and summarizing them a bit. Maybe it helps you: <a href="http://blog.js-development.com/2009/03/uml-use-case-extend-and-include.html" rel="nofollow">* link *</a></p>
http://stackoverflow.com/questions/1693020/how-to-specify-filepath-in-java/1693026#16930260Answer by Juri for How to specify filepath in java?Juri2009-11-07T13:29:23Z2009-11-07T13:35:36Z<p>Having now understood what the actual problem is. Take a look <a href="http://stackoverflow.com/questions/218061/get-the-applications-path">at this SO post</a>.</p>
http://stackoverflow.com/questions/1692856/how-to-clear-an-label-value-in-javascript/1692872#16928720Answer by Juri for how to clear an label value in javascript Juri2009-11-07T12:28:32Z2009-11-07T12:28:32Z<p>On the client-side use a script like this</p>
<pre><code><script type="text/javascript">
function clearLabelValue(){
var labelObj = document.getElementById("<%= myLabel.ClientID %>");
labelObj.value = "";
}
</script>
<asp:Label id="myLabel" runat="server" Text="Some text"/>
<asp:Button id="myButton" runat="server" Text="Submit" OnClientClick="clearLabelValue();return false;"/>
</code></pre>
<p>Didn't test it in detail, but should work.</p>
<p>It is not really clear what you want to achieve, although I have the feeling there may be a "better" (more standard compliant) way of achieving what you want. Maybe you could describe more clearly what you want, so we may be able to help you.</p>
http://stackoverflow.com/questions/1690972/consuming-web-service-from-javascript-in-net-page/1691012#16910124Answer by Juri for Consuming Web Service from javascript in .net pageJuri2009-11-06T22:43:03Z2009-11-07T11:08:38Z<p>You can achieve this by using ASP.net Ajax calls. On the server-side you create a webservice (WCF or asmx) having the attribute ScriptService:</p>
<pre><code>namespace MyCompany.Project.Services
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class MyWebServiceClass : System.Web.Services.WebService
{
[WebMethod]
public string GreetFromServer(string name)
{
return "Hello, " + name;
}
}
}
</code></pre>
<p>On the page, you add a ScriptManager referencing your webservice.</p>
<pre><code><asp:ScriptManager id="scriptManager" runat="server">
<Services>
<asp:ServiceReference Path="~/Services/MyWebServiceClass"/>
</Services>
</asp:ScriptManager>
</code></pre>
<p>Then on the client side (JavaScript):</p>
<pre><code>function invokeService(){
MyCompany.Project.Services.MyWebServiceClass.GreetFromServer("Juri", onSuccess, onFailure);
}
function onSuccess(result){
//check if result different null etc..It will be in JSON format, so deserialize
//use result
}
function onFailure(){
//handle errors
}
</code></pre>
<p>That should just be a hint on how to create a service and access it from within JavaScript. I mostly wrote it out of my head now, without checking it.<br>
A hint: use <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>! It's really great for verifying the data that is sent back and forth between your JavaScript client code and the webservice on the server-side.</p>
<p>I've <a href="http://blog.js-development.com/2009/11/aspnet-ajax-consuming-webservice-from.html" rel="nofollow">just written a blog post</a> with a downloadable example that describes the communication of client-server using asmx as well as WCF webservices.</p>
http://stackoverflow.com/questions/1691219/unit-testing-a-class-with-an-internal-constructor/1691274#16912742Answer by Juri for Unit Testing a class with an internal constructorJuri2009-11-06T23:43:15Z2009-11-06T23:51:59Z<p>Alternatively, as a workaround, you could just create a TestSession that inherits from Session and exposes a public constructor. Inside your unit-test you then use the TestSession which basically does the same as the original Session object.</p>
<pre><code>public class TestSession : Session
{
public TestSession() : base()
{
}
}
</code></pre>
http://stackoverflow.com/questions/1691270/how-to-avoid-bad-requirements/1691304#16913047Answer by Juri for How to avoid "bad" requirementsJuri2009-11-06T23:50:44Z2009-11-06T23:50:44Z<p>For successful requirement elicitation you need to</p>
<ul>
<li>have your customer on site, discuss the requirements, let him explain them to you</li>
<li>the requirements have to be testable, verifiable. Having a list of them, at the end you should be able to go over the list and directly verify their correct implementation on the end-product.</li>
<li>they should have an appropriate level of detail. There exist different type of requirements (goal-level, domain-level, product-level, design-level). Requirements should be classified appropriately.</li>
</ul>
<p>Usually the problem lies in a lack of communication and understandability between the customer and the developer. Moreover keep in mind that sometimes even the customer itself doesn't exactly have a good picture of what he wants. Therefore discussion, paper prototypes etc. are really important.</p>
<p>This pic is my favourite :)
<img src="http://z.hubpages.com/u/68408%5Ff520.jpg" alt="alt text"></p>
http://stackoverflow.com/questions/1690562/net-solution-many-projects-vs-one-project/1690702#16907023Answer by Juri for .NET solution - many projects vs one projectJuri2009-11-06T21:46:39Z2009-11-06T21:46:39Z<p>Generally speaking, having multiple VS projects (within a VS solution) does just make sense in these cases</p>
<ul>
<li>You can potentially reuse the produced DLL in another project (a class library)</li>
<li>You want to separate things like in a layered architecture where you may drop the DAO dll and exchange it with another</li>
<li>There are just different front-end projects (i.e. ASP.net MVC apps) which need to be deployed in different physical locations but use the same BL, DAL.</li>
</ul>
<p>If your saying you're having the problem of circular dependencies, then you're having a problem in your code design. Probably you may put that logic which is used by multiple projects inside a class library designed to be reused in many projects.</p>
<p>Generally I'd say you shouldn't add more projects if you don't really need it. Splitting up into projects means adding more complexity, so when you're doing so, you should gain a reasonable benefit from it.</p>
http://stackoverflow.com/questions/1690592/visual-studio-2008-automatically-add-namespces-like-eclipse/1690619#16906190Answer by Juri for Visual Studio 2008 automatically add namespces like EclipseJuri2009-11-06T21:35:33Z2009-11-06T21:35:33Z<p>As David mentioned there is no way like in Eclipse, unfortunately. Additional plugins however, like <a href="http://www.jetbrains.com/resharper/features/coding%5Fassistance.html" rel="nofollow">Resharper</a> or <a href="http://www.devexpress.com/Downloads/Visual%5FStudio%5FAdd-in/" rel="nofollow">CodeRush</a> support you further in these tasks.</p>
http://stackoverflow.com/questions/1660555/validation-first-confirmation-later/1660718#16607181Answer by Juri for Validation first, confirmation later?Juri2009-11-02T11:25:53Z2009-11-02T11:25:53Z<p>Validation for webapps is always a bit different. Generally you'd have such a flow</p>
<ul>
<li>validate instantly using JavaScript on the client side</li>
<li>the user presses "Save"</li>
<li>perform a more intense / sophisticated validation on the server side and report back problems in case</li>
</ul>
<p>In your specific example you mentioned (the save operation) I wouldn't prompt any confirmation. I mean, it's a save operation and there should be a corresponding delete operation, too. So for save no prompt is needed in my case. I would really prompt just in cases where the user cannot go back like when deleting an entry.</p>
http://stackoverflow.com/questions/1621796/accessing-webserver-running-within-eclipse-from-outside-the-workstation0Accessing webserver running within Eclipse from outside the workstationJuri2009-10-25T19:21:57Z2009-10-30T13:13:31Z
<p>Hi,</p>
<p>my question is the following. I run a web project targeted to be deployed on the Google Appengine locally from within Eclipse. So the server starts up and it can be accessed normally by typing localhost:8080 into some browser. Everything fine so far.
But what I need is to access it from outside, say from a friend's machine (which obviously resides in the same wireless network). So when he types the following <my-notebook-ip-address>:8080 he should reach the locally running webserver (within Eclipse). But that doesn't work!</p>
<p>The reason I need this is that I want my Android app running on my notebook within the Android emulator to access my locally running webserver. This is just possible by using the notebooks real ip address since localhost on the Android will be the phone itself.</p>
<p><strong>Edit:</strong><br />
Some more details</p>
<ul>
<li>Mac OSX Snow Leopard</li>
<li>Eclipse Galileo</li>
<li>Webserver: Google Appengine (launched within Eclipse)</li>
</ul>
<p>When launching the Appengine server from within Eclipse I <strong>can</strong> access it with: <code>http://localhost:8080</code>.<br />
I <strong>cannot</strong> access it however from my local notebook (where the webserver is running within Eclipse) with: <code>http://192.168.0.5:8080</code> where the IP is my IP address in the network.</p>
<p>I have all Firewalls disabled!</p>
<p>Thx for your help.</p>
http://stackoverflow.com/questions/1109955/task-failed-because-al-exe-was-not-found1Task failed because AL.exe was not found,...Juri2009-07-10T14:41:35Z2009-10-22T23:40:51Z
<p>Hi,</p>
<p>I'm getting the following error when compiling my project:</p>
<blockquote>
<p>Task failed because "AL.exe" was not
found, or the correct Microsoft
Windows SDK is not installed. The task
is looking for "AL.exe" in the "bin"
subdirectory beneath the location
specified in the InstallationFolder
value of the registry key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft
SDKs\Windows\v6.0A. You may be able to
solve the problem by doing one of the
following: 1) Install the Microsoft
Windows SDK for Windows Server 2008
and .NET Framework 3.5. 2) Install
Visual Studio 2008. 3) Manually set
the above registry key to the correct
location. 4) Pass the correct
location into the "ToolPath" parameter
of the task.</p>
</blockquote>
<p>This error comes when I'm adding resource files to my folder in my UnitTest project. These resource files aren't directly used by my program for localization, they're just like normal files. I need them for unit testing some logic inside my program which loads these resource files using the <code>ResXResourceReader</code>.</p>
<p>Can someone explain me why this error comes up??</p>
<p>\Edit:
Installing the Windows SDK solved the issue, as also described in the error. But I'd still like to know why the error appeared. I doesn't make sense to me.</p>
http://stackoverflow.com/questions/1554633/radgrid-not-firing-postback-on-itemcommand-events0RadGrid not firing postback on ItemCommand eventsJuri2009-10-12T13:36:47Z2009-10-14T15:07:12Z
<p>Hi,</p>
<p>I'm currently evaluating some RAD controls from Telerik, just right now I'm experimenting with the RadGrid.</p>
<p>So I have my grid control and enabled client-side binding for having Ajax support. I created an appropriate WCF webservice for fetching the data etc. Everything works really good, including paging etc. Now I wanted to have a button column for deleting some items. I registered the OnItemCommand event of the grid and implemented it accordingly on the server-side. My ASPx code looks like this:</p>
<pre><code><telerik:RadGrid runat="server" ID="RadGrid1" AllowPaging="True" AllowSorting="True"
AutoGenerateColumns="False" GridLines="None"
OnItemCommand="RadGrid1_ItemCommand">
<MasterTableView DataKeyNames="Id" ClientDataKeyNames="Id">
<Columns>
<telerik:GridBoundColumn DataField="Firstname" HeaderText="Firstname" DataType="System.String">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Lastname" HeaderText="Lastname" DataType="System.String">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Age" HeaderText="Age" DataType="System.Int32">
</telerik:GridBoundColumn>
<telerik:GridButtonColumn CommandName="Delete" Text="Delete" UniqueName="DeleteColumn"
ButtonType="ImageButton">
</telerik:GridButtonColumn>
</Columns>
<PagerStyle Mode="Slider" />
</MasterTableView>
<ClientSettings>
<DataBinding SelectMethod="GetSampleData" Location="Webservice/GridData.svc" SortParameterType="String">
</DataBinding>
</ClientSettings>
</telerik:RadGrid>
</code></pre>
<p>However when clicking on the appropriate button on a grid row the event isn't fired, basically no postback to the server is being done. A solution I found is to add the "<code>EnablePostBackOnRowClick=true</code>" to the ClientSettings, but this would cause a postback on each click on a row, which is not really desired.</p>
<p>Is there a better way to realizing this or does anybody have a hint what could be the problem??</p>
<p>Thx</p>
http://stackoverflow.com/questions/1554633/radgrid-not-firing-postback-on-itemcommand-events/1554964#15549640Answer by Juri for RadGrid not firing postback on ItemCommand eventsJuri2009-10-12T14:40:58Z2009-10-14T15:07:12Z<p>As far as it seems this is not possible given the answer <a href="http://www.telerik.com/community/forums/aspnet-ajax/grid/249769-itemcommand-event-not-firing.aspx#968490" rel="nofollow">from the Telerik forum</a>.</p>
http://stackoverflow.com/questions/788630/keeping-request-parameters-on-spring-simpleformcontroller-with-validator0Keeping request parameters on Spring SimpleFormController with ValidatorJuri2009-04-25T10:05:14Z2009-10-13T13:32:08Z
<p>I hope I'll be able to explain this properly. I'm developing a portlet for Liferay by using Spring. It's a pinboard system. So I have a view (Jsp) which shows the detail of a certain pinboard entry, given its id. Furthermore there is a link which goes to an AddCommentController for adding a new comment to the pinboard entry the user is currently watching at. The AddCommentController extends Spring's SimpleFormController and has also a validator attached to it:</p>
<pre><code><bean id="addCommentController" class="com.lifepin.controllers.AddCommentController" parent="lifePinControllerTemplate">
<property name="formView" value="addComment" />
<property name="successView" value="viewEntryDetail" />
<property name="validator" ref="commentValidator"/>
</bean>
</code></pre>
<p>The validator is really simple and looks as follows:</p>
<pre><code>public class CommentValidator implements Validator {
public boolean supports(Class clazz) {
return clazz.equals(Comment.class);
}
public void validate(Object obj, Errors validationError) {
ValidationUtils.rejectIfEmptyOrWhitespace(validationError, "content", "err.content.empty", "This value is required");
}
}
</code></pre>
<p>Now the view where the user can enter his comment has two buttons, Save and cancel. Here are the two generators for the according urls.</p>
<pre><code><portlet:actionURL var="actionUrl">
<portlet:param name="action" value="addComment"/>
<portlet:param name="pinboardEntryId" value="${param.pinboardEntryId}"/>
</portlet:actionURL>
<portlet:renderURL var="cancelUrl">
<portlet:param name="action" value="viewPinboardEntry"/>
<portlet:param name="pinboardEntryId" value="${param.pinboardEntryId}"/>
</portlet:renderURL>
</code></pre>
<p>In the onSubmitAction of the AddCommentController I read out the parameter (see the 1st actionURL above) and pass it to the ActionResponse s.t. in the detail view of the pinboard entry I can again load the entry and display it.</p>
<pre><code>public class AddCommentController extends SimpleFormController{
...
@Override
protected void onSubmitAction(ActionRequest request, ActionResponse response, Object command, BindException bindException)
throws Exception {
long pinboardEntryId = PortletRequestUtils.getLongParameter(request, ParameterNameConstants.PINBOARDENTRY_ID, -1);
...
}
...
}
</code></pre>
<p>This all works fine, except when a validation error occurs. In that case I loose the "pinboardEntryId" parameter from the URL, and I don't have any way to read that parameter in the CommentValidator to pass it to the response again since I don't have any PortletRequest or response.</p>
<p>For now I solved this problem by storing the id on the session and by retrieving it from there. I wanted to ask however if some of you has an alternative solution without having to use the session. I'm quite sure there is one.</p>
<p>Thanks,<br/>
Juri</p>
http://stackoverflow.com/questions/1548939/project-hosting-sites-that-provide-web-site-hosting/1548950#15489500Answer by Juri for Project hosting sites that provide web site hostingJuri2009-10-10T20:11:52Z2009-10-10T20:11:52Z<p><a href="http://code.google.com/projecthosting/" rel="nofollow">Google Project hosting</a> doesn't provide a website in the style Sourceforge does. On Google Project hosting it is somehow integrated in the online repository, though I think it fits nicely, it's clean, you have a wiki and download page, everything in place. </p>
<p>You may take a look at it. <a href="http://code.google.com/p/gwt-google-apis/" rel="nofollow">Here's</a> an example of one of the projects hosted by Google itself.</p>
http://stackoverflow.com/questions/1548893/c-how-to-retrieve-post-data/1548902#15489020Answer by Juri for c# how to retrieve post dataJuri2009-10-10T19:53:52Z2009-10-10T19:53:52Z<p>Take a look at the cross-page posting mechanism provided by Asp.net:
<a href="http://msdn.microsoft.com/en-us/library/ms178139.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms178139.aspx</a></p>
<p>This may explain what you need :)</p>
http://stackoverflow.com/questions/1548858/patterns-best-practices-and-clean-code/1548870#15488709Answer by Juri for Patterns, Best Practices and Clean CodeJuri2009-10-10T19:36:48Z2009-10-10T19:44:00Z<p>You should never refactor your code just to make it fit to a pattern you've read in some book.</p>
<p>Patterns really help you to train your brain in terms of thinking about good software design. I would actually say that I acquired much of my programming skills and knowledge through reading of pattern books and by reflecting about them and by learning to understand how they work out and what advantages they'll give you. And that's actually the key. Their purpose is to make things easier, more maintainable, easier to test etc... not to make your life harder :)</p>
<p>I think that's also the "difficulty". Patterns give you a frame, a point to start from when you encounter a problem. Example: You really want to unit test your code, but you're just not able to because it depends on UI logic or is too much coupled. That's your problem, so you may get to a solution by knowing about the MVC pattern and the concept of dependency injection and IOC. They may give you a starting point since the MVC for instance explains you on a high level concepts of an Observer, Observable, Controller view etc...and how they are related to each other. It is then your task as a good programmer to choose the right approach and to what extend you find it reasonable to apply the pattern. Don't just apply it 'cause the pattern tells you. Remember, it is just a frame, you may modify and adapt it s.t. it is suitable for your specific circumstances.</p>
http://stackoverflow.com/questions/1548783/i-need-to-develop-a-project-involving-hardware-which-should-also-work-the-same-on/1548820#15488201Answer by Juri for I need to develop a project involving hardware which should also work the same on Windows as well as Macs. Whats the way forward?Juri2009-10-10T19:13:09Z2009-10-10T19:13:09Z<p>Did you consider developing it in Java? In that case you should take a look at the <a href="http://wiki.eclipse.org/index.php/Rich%5FClient%5FPlatform" rel="nofollow">Eclipse Rich Client platform</a>. I have developed a couple of programs by using Eclipse RCP and I would never develop an app in Java without it. It uses SWT and jFace and provides options for exporting the app to run on OSX, Linux and Windows.</p>
<p>You should give it a try.</p>
http://stackoverflow.com/questions/1489042/gwt-spring-nullpointerexception-on-getservletcontext-call2GWT + Spring: NullPointerException on getServletContext() callJuri2009-09-28T19:57:42Z2009-10-08T02:16:01Z
<p>Hi,</p>
<p>I'm currently experimenting with GWT and Spring. More specifically I wanted to make the GreetingService sample to work with Spring on the server side. There are a couple of articles available for realizing this (I'm linking them here since some of you may be interested):</p>
<ul>
<li><a href="http://ice09.wordpress.com/2009/05/25/google-app-engine-spring-3-and-jpa/" rel="nofollow">http://ice09.wordpress.com/2009/05/25/google-app-engine-spring-3-and-jpa/</a></li>
<li><a href="http://code.google.com/p/google-web-toolkit-incubator/wiki/IntegratingWithSpring" rel="nofollow">http://code.google.com/p/google-web-toolkit-incubator/wiki/IntegratingWithSpring</a></li>
</ul>
<p>Now I followed the mentioned instructions and when launching everything in the GWT hosted mode, the service on the server-side is also called successfully. But then before the response is being sent back to the client, I get the a NullPointerException when the getServletContext() is being called internally by some Spring framework class. The stacktrace is the following:</p>
<pre><code>WARNING: Nested in org.springframework.web.util.NestedServletException: Request processing failed; nested exception is java.lang.NullPointerException:
java.lang.NullPointerException
at javax.servlet.GenericServlet.getServletContext(GenericServlet.java:163)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.doUnexpectedFailure(RemoteServiceServlet.java:284)
at com.google.gwt.user.server.rpc.RemoteServiceServlet.doPost(RemoteServiceServlet.java:99)
at com.jsdev.devbook.server.GWTController.handleRequest(GWTController.java:51)
at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:781)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:726)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:636)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:556)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:713)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1093)
at com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
at com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:121)
at org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1084)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:360)
at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405)
at com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:54)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
at com.google.appengine.tools.development.JettyContainerService$ApiProxyHandler.handle(JettyContainerService.java:313)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139)
at org.mortbay.jetty.Server.handle(Server.java:313)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:506)
at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:844)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:644)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:211)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:381)
at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:396)
at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:442)
</code></pre>
<p>Here's the list of libs I deploy on my server / GWT hosted mode directory:</p>
<pre><code>antlr-3.0.1.jar
appengine-api-1.0-sdk-1.2.5.jar
appengine-api-labs-1.2.5.jar
commons-logging.jar
datanucleus-appengine-1.0.3.jar
datanucleus-core-1.1.5.jar
datanucleus-jpa-1.1.5.jar
geronimo-jpa_3.0_spec-1.1.1.jar
geronimo-jta_1.1_spec-1.1.1.jar
geronimo-servlet_2.5_spec-1.2.jar
gwt-servlet.jar
jdo2-api-2.3-eb.jar
org.springframework.asm-3.0.0.RC1.jar
org.springframework.beans-3.0.0.RC1.jar
org.springframework.context-3.0.0.RC1.jar
org.springframework.context.support-3.0.0.RC1.jar
org.springframework.core-3.0.0.RC1.jar
org.springframework.expression-3.0.0.RC1.jar
org.springframework.orm-3.0.0.RC1.jar
org.springframework.web-3.0.0.RC1.jar
org.springframework.web.servlet-3.0.0.RC1.jar
spring-dao.jar
</code></pre>
<p>Even more info:<br />
developing on Mac OSX, Java version 1.6.0_15.</p>
<p>Does someone have a clue what could be the problem here?</p>
<p>Thx a lot.</p>
http://stackoverflow.com/questions/1458633/elegant-workaround-for-javascript-floating-point-number-problem0Elegant workaround for JavaScript floating point number problemJuri2009-09-22T07:34:42Z2009-10-06T00:04:02Z
<p>Hi,</p>
<p>I have the following dummy test script:</p>
<pre><code><html>
<head>
<script type="text/javascript">
function test(){
var x = 0.1*0.2;
document.write(x);
}
</script>
</head>
<body onload="test()">
</body>
</html>
</code></pre>
<p>This will print the result "0.020000000000000004" while it should just print "0.02" (if you use your calculator. As far as I understood this is due to errors in the floating point multiplication precision.</p>
<p>Does anyone have a good solution s.t. in such case I get the correct result "0.02"? I know there are functions like toFixed(..) or rounding would be another possibility, but I'd like is to really have the whole number printed without any cutting and rounding. Just wanted to know whether one of you has some nice, elegant solution.</p>
<p>Of course, otherwise I'll round to some 10 digits or so..</p>
<p>Thx,</p>
<p>Juri</p>
http://stackoverflow.com/questions/1832290/android-id-naming-convention-lower-case-with-underscore-vs-camel-case/1833639#1833639Comment by Juri on Android id naming convention: lower case with underscore vs. camel caseJuri2009-12-03T10:00:32Z2009-12-03T10:00:32ZJust for curiosity: Do you have a link where Google is inconsistent, meaning where they used the camel-case notation for ids?http://stackoverflow.com/questions/1832290/android-id-naming-convention-lower-case-with-underscore-vs-camel-case/1833639#1833639Comment by Juri on Android id naming convention: lower case with underscore vs. camel caseJuri2009-12-02T20:30:31Z2009-12-02T20:30:31ZYes, that's exactly my issue. They force you to use the underscored naming convention for layouts while you can use either camel-case or underscored for the ids referencing controls/widgets inside the XML layout definitions.
Google should really define some standard here (if they didn't already, at least I didn't found anything).
So going for one way is sure the best to be consistent throughout the application whether you reference layouts or id-referenced fields.http://stackoverflow.com/questions/1832290/android-id-naming-convention-lower-case-with-underscore-vs-camel-case/1832309#1832309Comment by Juri on Android id naming convention: lower case with underscore vs. camel caseJuri2009-12-02T11:31:11Z2009-12-02T11:31:11ZYou probably misunderstood what I was trying to say. The compiler will complain if you put resources like a file and write that in camel case. The other case however is when you specify IDs in the XML layout files. There you have the possibility to place camel-case id names and the emulator works just fine.
Now as I mentioned, the Google samples are all in the form my_id_name, but there are a lot of other samples around having camel-case id names...http://stackoverflow.com/questions/1824421/detect-browser-close-on-asp-net/1824486#1824486Comment by Juri on Detect Browser Close on Asp.net Juri2009-12-01T07:11:50Z2009-12-01T07:11:50Z+1, sounds reasonable. The browser close has to be done at client-side (JavaScript) since it won't be send back to the server which therefore won't get notified about it.http://stackoverflow.com/questions/1802494/c-check-which-project-is-calling-class-library/1802510#1802510Comment by Juri on c#: Check which project is calling class libraryJuri2009-11-26T10:43:27Z2009-11-26T10:43:27ZI agree. When speaking about class library I think however always about a general purpose, re-usable construct. Given the fact that he says that the library is accessed by 2 projects I assume it to be general purpose. A class library may depend on some configuration, but never behave differently by making decisions itself. The setting of the configuration should always come from outside.http://stackoverflow.com/questions/1737957/using-selenium-in-order-to-read-emails-on-gmailComment by Juri on Using selenium in order to read emails on gmailJuri2009-11-15T16:44:42Z2009-11-15T16:44:42ZAsking that myself, too. Did you try Gmail shortcuts? They make you really productive: <a href="http://mail.google.com/support/bin/answer.py?hl=en&answer=6594" rel="nofollow">mail.google.com/support/bin/…</a>http://stackoverflow.com/questions/197127/prevent-exception-messages-from-being-translated-into-the-users-language/197141#197141Comment by Juri on Prevent exception messages from being translated into the user's language?Juri2009-11-11T13:48:33Z2009-11-11T13:48:33ZIs there another possibility than changing the Culture, since that may be set by the application for translation purposes. The exceptions however shouldn't be translated. Are there any packages to remove on the .Net installation??http://stackoverflow.com/questions/1693020/how-to-specify-filepath-in-javaComment by Juri on How to specify filepath in java?Juri2009-11-07T13:34:07Z2009-11-07T13:34:07Zexactly, that's what I intended. Thx for the downvotehttp://stackoverflow.com/questions/1690972/consuming-web-service-from-javascript-in-net-page/1691012#1691012Comment by Juri on Consuming Web Service from javascript in .net pageJuri2009-11-07T11:08:59Z2009-11-07T11:08:59ZI just added a link to a blog post I've written related to this issue.http://stackoverflow.com/questions/1660677/asp-net-how-to-get-a-sessionidComment by Juri on ASP NET How to get a sessionidJuri2009-11-02T11:18:12Z2009-11-02T11:18:12Zthis is spam!!!http://stackoverflow.com/questions/1656621/c-attribute-to-modify-methods/1656624#1656624Comment by Juri on C# Attribute to modify methodsJuri2009-11-01T08:18:25Z2009-11-01T08:18:25ZDefinitely AOP technique.http://stackoverflow.com/questions/380819/common-programming-mistakes-for-net-developers-to-avoid/1213613#1213613Comment by Juri on Common programming mistakes for .NET developers to avoid?Juri2009-10-30T07:17:21Z2009-10-30T07:17:21ZOf couse, but often there is the need to still keep a private variable instead of the automatic property declaration :)http://stackoverflow.com/questions/1621796/accessing-webserver-running-within-eclipse-from-outside-the-workstation/1630532#1630532Comment by Juri on Accessing webserver running within Eclipse from outside the workstationJuri2009-10-27T20:32:56Z2009-10-27T20:32:56Zhey, that's cool. I was about to accept Rob's answer since that works of course, but then I tried your solution. No clue why this works, do you have any explanation for that??
Anyway it's much more comfortable, since I often switch between different IP addresses and so I always have to reconfigure it. Many thx.http://stackoverflow.com/questions/1621796/accessing-webserver-running-within-eclipse-from-outside-the-workstation/1622412#1622412Comment by Juri on Accessing webserver running within Eclipse from outside the workstationJuri2009-10-26T07:33:01Z2009-10-26T07:33:01Zthat doesn't work, neither with telnet. I added some further infos which may help. Thxhttp://stackoverflow.com/questions/788630/keeping-request-parameters-on-spring-simpleformcontroller-with-validator/1560286#1560286Comment by Juri on Keeping request parameters on Spring SimpleFormController with ValidatorJuri2009-10-14T11:52:26Z2009-10-14T11:52:26Zcool, I already finished the project, but thx for the hint.