User Vasil - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T23:34:21Z http://stackoverflow.com/feeds/user/7883 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1070420/can-i-have-multiple-security-contexts-with-spring-security 0 Can I have multiple security contexts with spring security? Vasil 2009-07-01T17:39:07Z 2009-12-03T00:00:14Z <p>I have one security context definition that uses PreAuthenticatedProcessingFilterEntryPoint for the flex part of my application. How can I have another definition that will use standard form login with html forms for another part of my application? Here's what I currently have:</p> <pre><code> &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;beans:beans xmlns="http://www.springframework.org/schema/security" xmlns:beans="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.1.xsd"&gt; &lt;http auto-config="true" access-denied-page="/admin/access-denied"&gt; &lt;intercept-url pattern="/admin/login*" filters="none"/&gt; &lt;intercept-url pattern="/admin/access-denied" filters="none"/&gt; &lt;intercept-url pattern="/admin/**/*" access="ROLE_ADMIN" /&gt; &lt;form-login login-page="/admin/login" authentication-failure-url="/admin/login?login_error=1" default-target-url="/admin/index" login-processing-url="/admin/login-process"/&gt; &lt;logout logout-success-url="/admin/login"/&gt; &lt;/http&gt; &lt;global-method-security jsr250-annotations="enabled" /&gt; &lt;beans:bean id="preAuthenticatedEntryPoint" class="org.springframework.security.ui.preauth.PreAuthenticatedProcessingFilterEntryPoint" &gt; &lt;/beans:bean&gt; &lt;beans:bean id="userAccountManager" class="com.mycomp.service.managers.jpa.UserAccountJpaManager" /&gt; &lt;beans:bean id="userService" class="com.mycomp.auth.DefaultUserDetailsService" /&gt; &lt;beans:bean id="defaultPasswordEncoder" class="com.mycomp.auth.DefaultPasswordEncoder" /&gt; &lt;authentication-provider user-service-ref="userService"&gt; &lt;password-encoder ref="defaultPasswordEncoder"/&gt; &lt;/authentication-provider&gt; &lt;/beans:beans&gt; </code></pre> <p>What I'd like to do is use another authentication provider for the urls that are in the admin site, the one I currently have is for the flex application. So I want the security for the admin urls to use another userDetailsService bean.</p> http://stackoverflow.com/questions/172524/populate-a-form-with-data-from-an-associative-array-with-jquery 3 Populate a form with data from an associative array with jQuery Vasil 2008-10-05T19:44:50Z 2009-12-02T19:49:18Z <p>Last time <a href="http://stackoverflow.com/questions/169506/get-form-input-fields-with-jquery">I asked about the reverse process</a>, and got some very efficient answers. I'm aiming for least lines of code here. I have a form of fields and an associative array in the {fieldname:data} format, I want to populate a corresponding form with it.</p> http://stackoverflow.com/questions/648899/a-question-about-cross-domain-subdomain-ajax-request 0 A question about cross-domain (subdomain) ajax request. Vasil 2009-03-16T00:49:44Z 2009-11-30T11:55:24Z <p>Let's say I have the main page loaded from <a href="http://www.example.com/index.html" rel="nofollow">http://www.example.com/index.html</a>. On that page there is js code that makes an ajax request to <a href="http://n1.example.com//echo?message=hello" rel="nofollow">http://n1.example.com//echo?message=hello</a>. When the response is received a div on the main page is updated with the response body.</p> <p>Will that work on all popular browsers?</p> <p>Edit:</p> <p>The obvious solution is to put a proxy in front of www.example.com and n1.example.com and set it so that every request going to a subresource of <a href="http://www.example.com/n1" rel="nofollow">http://www.example.com/n1</a> gets proxied to <a href="http://n1.example.com/" rel="nofollow">http://n1.example.com/</a>.</p> http://stackoverflow.com/questions/1495032/do-we-really-need-email-confirmation 8 Do we really need email confirmation? Vasil 2009-09-29T21:25:17Z 2009-11-06T11:14:33Z <p>I've gotten into a habit of using the standard register->send activation email->activate account process for every site that supports user authentication and free registration without questioning if I really need this.</p> <p>What are your thoughts on this? If I have captcha on the registration form is the email confirmation process really necessary?</p> <p>EDIT:</p> <p>OK, so the general consensus seems to be that by getting the users to confirm the email they entered I'll keep them away from putting someone else's email in there. What about when I let users edit their profile/settings and they enter another email? If I need to keep them away from entering other people's addresses then I'd need to confirm that email address (by temporarily deactivating their accoun)t every time they change it.</p> http://stackoverflow.com/questions/1284021/can-i-send-a-http-redirect-to-a-url-with-an-anchor 0 Can I send a HTTP redirect to a url with an anchor? Vasil 2009-08-16T10:57:51Z 2009-11-04T16:37:38Z <p>Is it possible to send a response with 302 status code to a url like this:</p> <p><a href="http://mysite.com/something/#somethingelse" rel="nofollow">http://mysite.com/something/#somethingelse</a></p> http://stackoverflow.com/questions/1027099/blazeds-and-spring-security-can-remember-me-be-used-in-this-combination 0 Blazeds and Spring security, can remember-me be used in this combination? Vasil 2009-06-22T13:01:44Z 2009-11-04T12:00:01Z <p>I'm using the latest release of Spring Blzeds integration which has some features making it easier to secure invocations on destination objects. However the basic setup I use which uses the ChannelSet login approach form the flex side looses the authentication information (sessions) on each page refresh. Here's the configuration I'm using:</p> <pre><code>&lt;http entry-point-ref="preAuthenticatedEntryPoint" &gt; &lt;/http&gt; &lt;beans:bean id="preAuthenticatedEntryPoint" class="org.springframework.security.ui.preauth.PreAuthenticatedProcessingFilterEntryPoint" /&gt; &lt;beans:bean id="userAccountManager" class="com.comp.service.managers.jpa.UserAccountJpaManager" /&gt; &lt;beans:bean id="userService" class="com.comp.auth.JpaUserDetailsService" /&gt; &lt;beans:bean id="defaultPasswordEncoder" class="com.comp.auth.DefaultPasswordEncoder" /&gt; &lt;authentication-provider user-service-ref="userService"&gt; &lt;password-encoder ref="defaultPasswordEncoder"/&gt; &lt;/authentication-provider&gt; &lt;flex:message-broker&gt; &lt;flex:secured /&gt; &lt;/flex:message-broker&gt; &lt;bean id="testService" class="com.comp.service.TestService"&gt; &lt;flex:remoting-destination channels="comp-amf" /&gt; &lt;security:intercept-methods&gt; &lt;security:protect method="say*" access="ROLE_USER" /&gt; &lt;/security:intercept-methods&gt; &lt;/bean&gt; </code></pre> <p>Is there another way to configure/implement this so I could get persistent sessions (remember me). Is it possible to do the logins from flex over standard HTTP POST (like forms) and still get the same level of granularity for protecting remote object calls?</p> http://stackoverflow.com/questions/660929/how-do-you-change-the-default-widget-for-all-django-date-fields-in-a-modelform/660951#660951 2 Answer by Vasil for How do you change the default widget for all Django date fields in a ModelForm? Vasil 2009-03-19T03:21:02Z 2009-10-06T23:59:06Z <p>Well, making a custom model field just to change it's default form widget is not really the obvious place to start.</p> <p>You can make your own form widget and override the field in the form, specifying your own widget like in Soviut's answer. </p> <p>There's also a shorter way:</p> <pre><code>class ArticleForm(ModelForm): pub_date = DateField(widget=MyDateWidget()) class Meta: model = Article </code></pre> <p>There is an example of how to write form widgets, it's somewhere in the forms package of Django. It's a datepicker with 3 dropdowns.</p> <p>What I usually do when I just want to add some JavaScript to a standard HTML input element is leave it the way it is and modify it by referencing it's id later with JavaScript. You can easily catch the naming convention for the ids of the input fields Django generates.</p> <p>You can also just provide the class for the widget when you override it in the form. Then catch them all with <a href="http://en.wikipedia.org/wiki/JQuery" rel="nofollow">jQuery</a> by the class name.</p> http://stackoverflow.com/questions/640877/can-anyone-point-out-the-pros-and-cons-of-tg2-over-django 8 Can anyone point out the pros and cons of TG2 over Django? Vasil 2009-03-12T23:26:35Z 2009-10-05T03:10:41Z <p>Django is my favorite python web framework. I've tried out others like pylons, web2py, nevow and others.</p> <p>But I've never looked into TurboGears with much enthusiasm.</p> <p>Now with TG2 out of beta I may give it a try. I'd like to know what are some of the pros and cons compared to Django.</p> http://stackoverflow.com/questions/311062/caching-javascript-files 2 caching JavaScript files Vasil 2008-11-22T08:05:37Z 2009-10-01T19:24:35Z <p>Which is the best method to make the browser use cached versions of js files (from the serverside)?</p> http://stackoverflow.com/questions/1495487/is-there-any-python-library-for-parsing-dates-and-times-from-a-natural-language 1 Is there any python library for parsing dates and times from a natural language? Vasil 2009-09-29T23:43:41Z 2009-10-01T03:54:46Z <p>What I'm looking for is something that can translate 'tomorrow at 6am' or 'next moday at noon' to the appropriate datetime objects.</p> http://stackoverflow.com/questions/169506/get-form-input-fields-with-jquery 4 get form input fields with jQuery? Vasil 2008-10-04T01:34:56Z 2009-09-18T07:20:37Z <p>I have a form with a lot of input fields. When I catch the submit form event with jQuery, is it possible to get all the input fields of that form in an associative array?</p> http://stackoverflow.com/questions/664806/do-you-think-its-possible-for-video-content-to-be-encoded-in-javascript 1 Do you think it's possible for video content to be encoded in JavaScript? Vasil 2009-03-20T02:35:47Z 2009-08-29T22:03:21Z <p>I know how this will sound.</p> <p>I couldn't help asking this question after looking at <a href="http://www.chromeexperiments.com/" rel="nofollow">http://www.chromeexperiments.com/</a></p> <p>Any ideas on possible implementation approaches?</p> http://stackoverflow.com/questions/1037866/how-do-i-record-streams-in-chunks-on-flash-media-server 0 How do I record streams in chunks on Flash Media Server. Vasil 2009-06-24T11:50:23Z 2009-08-29T11:51:49Z <p>I want to record a stream which is published with Flash Live Encoder to FMS 3.5, but split the recording in files with predefined length. For example if a stream 'webcam' is published I want to record it in chunks of 10 minutes: 'webcam1.flv', 'webcam2.flv' ... From what I can tell there's no facility to work with timers. The only solution I could think of was using stream.record() with a time limit parameter but that seems like a hack because it triggers NetStream.Record.DiskQuotaExceeded on the stream when the recordin should stop and start recording another chunk. Has anyone done something similar?</p> http://stackoverflow.com/questions/1082759/can-i-find-the-url-for-a-spring-mvc-controller-in-the-view-layer 2 Can I find the URL for a spring mvc controller in the view layer? Vasil 2009-07-04T18:34:25Z 2009-08-27T21:10:04Z <p>I think what I need is called reverse url resolution in Django. Lets say I have an AddUserController that goes something like this:</p> <pre><code>@Controller @RequestMapping("/create-user") public class AddUserController{ ... } </code></pre> <p>What I want is some way to dynamically find the url to this controller or form a url with parameters to it from the view (JSP), so I don't have to hardcode urls to controllers all over the place. Is this possible in Spring MVC?</p> http://stackoverflow.com/questions/714877/setting-windows-powershell-path-variable 3 Setting windows powershell path variable Vasil 2009-04-03T17:19:35Z 2009-08-26T10:22:26Z <p>So I've found out that setting the PATH environment variable affects only the old command prompt, powershell seems to have different environment settings. How do I change the environment variables for powershell (v1)?</p> <p>Note:</p> <p>I want to make my changes permanent, so I don't have to set it every time I run powershell. Does powershell have a profile file? Something like bash profile on unix?</p> http://stackoverflow.com/questions/132676/which-orm-for-net-would-you-recommend 31 Which ORM for .net would you recommend? Vasil 2008-09-25T11:16:30Z 2009-08-16T11:18:16Z <p>I haven't worked on a .net project for a while (more than a year). Before I've never used an ORM for a .net app. What are some of your takes on this? Does using one make sense? Which ones should I consider trying?</p> http://stackoverflow.com/questions/652670/know-of-any-small-projects-implementing-an-http-service-using-libevent 0 Know of any small projects implementing an HTTP service using libevent? Vasil 2009-03-17T00:47:00Z 2009-08-14T02:56:33Z <p>My C is a bit rusty. I have some ideas I'd like to try and realize with libevent. Do you know any codebase I can use as a reference?</p> http://stackoverflow.com/questions/746319/what-ever-happened-to-textmate-2/1242818#1242818 0 Answer by Vasil for What ever happened to Textmate 2? Vasil 2009-08-07T03:56:10Z 2009-08-07T03:56:10Z <p>He's <a href="http://blog.macromates.com/2009/working-on-it/" rel="nofollow">working on it</a></p> http://stackoverflow.com/questions/511843/what-is-the-best-ajax-library-for-django/1242668#1242668 0 Answer by Vasil for What is the best AJAX library for Django? Vasil 2009-08-07T03:02:57Z 2009-08-07T03:02:57Z <p>I've successfully used jquery, YUI and Dojo on different django projects. There's nothing about any of those that made it better to use with django specifically. I agree with jpartogy that mochikit may fit django more than any other just because of the "pythonic" (twisted-like) API. It really depends on what you are looking for in an ajax framework. </p> <p>Personally I like what jQuery can do with given amounts of code but the greatest challenge in writing jQuery code is making it readable. </p> <p>YUI is much more verbose than other frameworks because it sets a convention for using namespaces, but there are shortcuts to write less code and it avoids trying to make javascript look like something else.</p> <p>Dojo tries to make javascript look like Java and from my experience is pretty slow. It has some nice widgets and a javascript implementation of the django templating language (which is pretty useful even outside of django projects).</p> <p>I personally avoid prototype and mootools because they can break other javascript code (or vice versa).</p> <p>If you are new to javascript and ajax I'd recommend jQuery because it's the easiest to start with. But I don't expect any js framework to be integrated with django mostly because there's really no need for that.</p> http://stackoverflow.com/questions/623062/why-was-googles-chrome-browser-written-almost-entirely-in-c-and-not-c-or-java/643893#643893 1 Answer by Vasil for Why was Google's Chrome browser written almost entirely in C++ and not C# or Java? Vasil 2009-03-13T18:03:10Z 2009-08-03T11:59:15Z <p>A benefit from writing it in C++ over C# is that they can as they plan to release versions for other platforms other than Windows. While it's possible to do this with .NET too it would have meant people would have to install the mono runtime which is not a very common thing on non Windows computers. Similarly writing it in Java would have created the dependency to the Java runtime, which would have been a better option. But it's not a very good idea to write something like a browser for a virtual machine because of startup times and performance, if they want to compete with firefox and other good browsers.</p> <p>The other reason is the choice of rendering engines. Because they are using webkit which is written in C++ it's an obvious choice.</p> http://stackoverflow.com/questions/1185627/a-question-about-java-web-apps-and-x-real-ip-header 0 A question about java web apps and X-REAL-IP header. Vasil 2009-07-26T21:41:16Z 2009-07-26T23:21:32Z <p>I'm setting up a demo of a project for a client. On my server I have a lot of sites built with different technologies that are running under different servers on different ports. I'm using nginx as a reverse proxy for all of them. This particular application is built with java (spring MVC / Blazeds) and will be deployed under tomcat 6 for the demo (probably in production too). Nginx has a nice setting when used as reverse proxy that enables it to pass the IP address of the original request in the X-REAL-IP header. What I want to do is set up my application or at least tomcat to treat the X-REAL-IP header as the real request IP address. Is this possible?</p> http://stackoverflow.com/questions/311080/which-rdbms-do-you-use-with-django-and-why 2 Which RDBMS do you use with Django and why? Vasil 2008-11-22T08:23:27Z 2009-07-22T06:25:52Z <p>I recently switched a project from MySQL InnoDB to PostgreSQL, and I feel bigger lags when inserting and updating data with ajax. This may be subjective. I know the Django devs recommend postgres and I know psycopg2 is supposed to be faster than MysqlDB. Personaly I like the way postgres enforces database integrity, but am mostly worried about performance for this project. Want to hear other people's opinion on this.</p> http://stackoverflow.com/questions/1024407/what-java-validation-library-should-i-use 2 What java validation library should I use? Vasil 2009-06-21T17:50:42Z 2009-07-18T22:05:14Z <p>I'm kinda stuck on this decision. My project already uses Spring and Spring Blazeds integration but I don't think there will be any real web interface (HTML). I have limited experience with Spring MVC and the Spring validators which are OK, but I've read comments from people suggesting not to use Spring validators outside Spring MVC. What validation framework would you recommend based on personal experience?</p> http://stackoverflow.com/questions/1103487/can-i-detect-if-my-code-is-running-on-cpython-or-jython 1 Can I detect if my code is running on cPython or Jython? Vasil 2009-07-09T12:19:34Z 2009-07-18T14:28:04Z <p>I'm working on a small django project that will be deployed in a servlet container later. But development is much faster if I work with cPython instead of Jython. So what I want to do is test if my code is running on cPython or Jython in my settiings.py so I can tell it to use the appropriate db driver (postgresql_psycopg2 or doj.backends.zxjdbc.postgresql). Is there a simple way to do this?</p> http://stackoverflow.com/questions/398163/ordering-admin-modeladmin-objects-in-django-admin/1140868#1140868 0 Answer by Vasil for Ordering admin.ModelAdmin objects in Django Admin Vasil 2009-07-16T23:48:17Z 2009-07-16T23:48:17Z <p>My solution was to make subclasses of django.contrib.admin.sites.AdminSite and django.contrib.admin.options.ModelAdmin .</p> <p>I did this so I could display a more descriptive title for each app and order the appearance of models in each app. So I have a dict in my settings.py that maps app_labels to descriptive names and the order in which they should appear, the models are ordered by an ordinal field I provide in each ModelAdmin when I register them with the admin site.</p> <p>Although making your own subclasses of AdminSite and ModelAdmin is encouraged in the docs, my solution looks like an ugly hack in the end.</p> http://stackoverflow.com/questions/651717/which-version-of-python-is-currently-best-for-os-x 2 Which version of python is currently best for os x? Vasil 2009-03-16T19:00:09Z 2009-07-12T04:31:27Z <p>After going through hell trying to install the latest version of postgresql and psycopg2 today I'm going for a complete reinstall of Leopard.</p> <p>I've been sticking with macpython 2.5 for the past year but now I'm considering macports even 2.6</p> <p>For me it's most important for Twisted, PIL and psycopg2 to be working without a problem.</p> <p>Can anyone give some guidelines for what version I should choose, based on experience? </p> <p>Edit:</p> <p>Ok I've decided to go without reinstalling the os. Hacked around to clean up the bad PostgresPlus installation and installed another one. The official python 2.6.1 package works great, no problem installing it alongside 2.5.2. Psycopg2 works. But as expected PIL wont compile. </p> <p>I guess I'll be switching between the 2.5 from macports and the official 2.6 for different tasks, since I know the macports python has it's issues with some packages.</p> <p>Another Edit:</p> <p>I've now compiled PIL. Had to hide the whole macports directory and half the xcode libraries, so it would find the right ones. It wouldn't accept the paths I was feeding it. PIL is notorious for this on leopard.</p> http://stackoverflow.com/questions/1114279/jpql-and-timestamp-with-timezone 0 JPQL and timestamp with timezone Vasil 2009-07-11T17:52:34Z 2009-07-11T17:52:34Z <p>I have the following field definitions in one of my JPA entities:</p> <pre><code>@Column(nullable = false, name = "start_time", columnDefinition= "TIMESTAMP WITH TIME ZONE") @Temporal(javax.persistence.TemporalType.TIMESTAMP) private Date startTime = new Date(); @Column(nullable = true, name = "end_time", columnDefinition= "TIMESTAMP WITH TIME ZONE") @Temporal(javax.persistence.TemporalType.TIMESTAMP) private Date endTime = null; </code></pre> <p>The database is PostgreSQL and using timestamp without timezone is not an option. The inserts and updates are going fine regarding the timezone. A problem arises (at least I think so) when I try to run a SELECT JPQL query on some test data and the filter parameters are Date objects. The query OpenJPA generates doesn't include the timezone in the parameters. Can anyone give me some guidance regarding JPA and timestamp with timezone columns?</p> http://stackoverflow.com/questions/1080714/spring-jpa-exception-translation 0 Spring JPA Exception Translation Vasil 2009-07-03T20:20:15Z 2009-07-03T22:07:29Z <p>I have configured my application context as stated in the spring documentation to enable Exception Translation from jpa exceptions to spring DataAccessException. Should I also provide the implementation of PersistenceExceptionTranslator? If so, can anyone give me an example of how this is done?</p> http://stackoverflow.com/questions/1068752/jpa-and-postgresql-network-address-types 1 JPA and PostgreSQL Network Address Types Vasil 2009-07-01T11:57:46Z 2009-07-01T21:10:00Z <p>Is there a standard way to define a JPA entity that has columns with PostgreSQL network address data types? Im using OpenJPA</p> http://stackoverflow.com/questions/1022959/how-do-i-localize-validator-messages-in-flex 2 How do I localize Validator messages in flex? Vasil 2009-06-21T01:38:34Z 2009-06-29T15:16:31Z <p>I'm working on a flex 3 application which will initially support only one language (which is not English) but may need to support English and other languages later. So I'm using the standard localization technique, with resource bundles. Now, somewhere I use the validators like EmailValidator which have some error messages displayed, these are in english and come with the flex sdk. How do I localize those messages?</p> http://stackoverflow.com/questions/1495032/do-we-really-need-email-confirmation/1495066#1495066 Comment by Vasil on Do we really need email confirmation? Vasil 2009-09-29T21:47:30Z 2009-09-29T21:47:30Z @Robert I don't think he meant &quot;after each use&quot; in an absolute sense. For example reddit.com doesn't use email confirmation so it can let users create throwaway accounts more easily (see the IAMA or GoneWild subreddits and you'll see why) http://stackoverflow.com/questions/1284021/can-i-send-a-http-redirect-to-a-url-with-an-anchor Comment by Vasil on Can I send a HTTP redirect to a url with an anchor? Vasil 2009-08-16T12:49:56Z 2009-08-16T12:49:56Z @Manni are you having a bad day? http://stackoverflow.com/questions/1284021/can-i-send-a-http-redirect-to-a-url-with-an-anchor Comment by Vasil on Can I send a HTTP redirect to a url with an anchor? Vasil 2009-08-16T11:42:56Z 2009-08-16T11:42:56Z @Manni yes I did try that, but had a error in my code, that's why it didn't work. Now it works. @Shiraz I'm using python. http://stackoverflow.com/questions/14823/is-ruby-on-rails-ready-for-the-enterprise/14894#14894 Comment by Vasil on Is Ruby On Rails ready for the Enterprise? Vasil 2009-08-07T09:56:39Z 2009-08-07T09:56:39Z It's not really that they cripple the so-so programmers. Some people just don't have the will or mindset to learn a new language or framework. Those are usually people who approached the profession with the idea that they only ever need to learn one language or technology and they'll make money from that skillset for their whole lifetime. And if that language/technology happens to be .net or java (most often is) they'll use the word enterprise freely especially in a situation where they are afraid to learn something new. http://stackoverflow.com/questions/746319/what-ever-happened-to-textmate-2/746440#746440 Comment by Vasil on What ever happened to Textmate 2? Vasil 2009-08-07T03:54:21Z 2009-08-07T03:54:21Z +1 for not checking the files on disk... got bitten by this while editing files over cifs/nfs too many times. http://stackoverflow.com/questions/1082759/can-i-find-the-url-for-a-spring-mvc-controller-in-the-view-layer/1149864#1149864 Comment by Vasil on Can I find the URL for a spring mvc controller in the view layer? Vasil 2009-07-20T11:45:59Z 2009-07-20T11:45:59Z hmmm... I'm not really interested in getting the url from an incomming request. What I want to do is give a controller Class or reference and get back a url that will be served by that conroller. Which as it turns out is impossible &quot;out of the box&quot;. http://stackoverflow.com/questions/1082759/can-i-find-the-url-for-a-spring-mvc-controller-in-the-view-layer/1082771#1082771 Comment by Vasil on Can I find the URL for a spring mvc controller in the view layer? Vasil 2009-07-04T19:19:00Z 2009-07-04T19:19:00Z I'll try making my own HandlerInterceptor that aggregates the controller-&gt;url mappings and ads them to every ModelAndView for every request. But still, this doesn't get even close to what is possible with django's url resolution and reverse resolution. http://stackoverflow.com/questions/1070420/can-i-have-multiple-security-contexts-with-spring-security/1070976#1070976 Comment by Vasil on Can I have multiple security contexts with spring security? Vasil 2009-07-02T14:06:56Z 2009-07-02T14:06:56Z I suppose this is what I need to do. However I don't know what is the easiest way to define a filter with just a custom authentication provider. http://stackoverflow.com/questions/1068752/jpa-and-postgresql-network-address-types/1071410#1071410 Comment by Vasil on JPA and PostgreSQL Network Address Types Vasil 2009-07-02T13:17:13Z 2009-07-02T13:17:13Z The thing is I haven't tried anything, just asked the question. This was the first thing that came to my mind too. http://stackoverflow.com/questions/1070420/can-i-have-multiple-security-contexts-with-spring-security/1070968#1070968 Comment by Vasil on Can I have multiple security contexts with spring security? Vasil 2009-07-02T13:07:56Z 2009-07-02T13:07:56Z I've posted my security context configuration. I'd appreciate if you can help me with this. http://stackoverflow.com/questions/1022959/how-do-i-localize-validator-messages-in-flex/1058873#1058873 Comment by Vasil on How do I localize Validator messages in flex? Vasil 2009-06-30T10:18:25Z 2009-06-30T10:18:25Z Follow these instructions: <a href="http://soenkerohde.com/2008/07/flex-localization/" rel="nofollow">soenkerohde.com/2008/07/flex-localization</a> to set up your project. After that just copy the validators.properties file from INSTALL_DIR/Flex Builder 3/sdks/3.1.0/frameworks/projects/framework/bundles/en_US/src in your project in the same folder where you'll keep the properties file for your locale (in the example from the link it's de_DE). You'll just have to translate the english messages from that file. http://stackoverflow.com/questions/1045895/should-validators-in-spring-access-the-database/1045917#1045917 Comment by Vasil on Should validators in spring access the database? Vasil 2009-06-25T20:28:55Z 2009-06-25T20:28:55Z I've heard or read this before, that's exactly why I'm asking the question. But I'm not really sure what I'm supposed to do if I don't make them able to read from a database (without side effects). I'm kinda confused in this topic because it seems like a lot of people in the Java world share your opinion, while in Django and RoR it's perfectly normal to tie validation to the database. http://stackoverflow.com/questions/995473/what-naming-convention-do-you-use-for-the-service-layer-in-a-spring-mvc-applicati/995768#995768 Comment by Vasil on What naming convention do you use for the service layer in a Spring MVC application? Vasil 2009-06-15T15:04:48Z 2009-06-15T15:04:48Z That's why I figured Manager would cause less confusion since the frontend for the application is in Flex and there will be AMF services sitting on top of the service layer. Good point. http://stackoverflow.com/questions/651717/which-version-of-python-is-currently-best-for-os-x/866310#866310 Comment by Vasil on Which version of python is currently best for os x? Vasil 2009-05-15T12:34:59Z 2009-05-15T12:34:59Z Yes. I've found that having Macports installed is a huge problem when compiling PIL. I solve this by temporarily hiding the /opt directory before compiling PIL. PIL can also have conflicts with some other libraries from Apple, again temporarily hiding those solves it. http://stackoverflow.com/questions/818908/a-question-about-enums-defined-inside-a-class-in-java/818927#818927 Comment by Vasil on A question about enums defined inside a class in java Vasil 2009-05-04T10:35:24Z 2009-05-04T10:35:24Z @aovila I have only an electronic version of the book and I copied and pasted, maybe it's corrected in print