Search:

Type: Posts; User: rob_from_ca; Keyword(s):

Search: Search took 0.02 seconds.

  1. No promises that it's the cleanest way...another...

    No promises that it's the cleanest way...another option is to change the form action in the view from:


    <form>

    to


    <form action="foo.htm">
  2. That's a good question...I've never really found...

    That's a good question...I've never really found a canonical answer as to what most frameworks do when presented with a POST that also has query parameters; which one takes precedence?

    Within...
  3. Replies
    12
    Views
    4,783

    In the same hypothetical instance couldn't the...

    In the same hypothetical instance couldn't the attacker also just install a filter that would save the post parameters and responses (as well as the middleware session ID for possible misuse) that...
  4. I've gotten this a bunch of times and it's always...

    I've gotten this a bunch of times and it's always been my form backing object not being created properly...either the command name in the bind doesn't match (as an aside, I think the error message...
  5. Replies
    2
    Views
    4,219

    I was just thinking the same thing, and your 2nd...

    I was just thinking the same thing, and your 2nd comment gave me the same lightbulb.

    Still, it seems rather "hardcoded" to have something like this in the controller:



    RedirectView rv = new...
  6. Hummm, fun. :-) I've seen something very...

    Hummm, fun. :-)

    I've seen something very similar done with weblogic (version 6.1 in this instance) when deployed in a cluster. Bring down one node, roll out the app, restart it. Then bring down...
  7. Some of this is already available

    I haven't used Ruby or Rails, so I can't comment on what it can do for speeding up the development cycle.

    What I can say is that with Spring and Java is that this is more of a function of the...
  8. Replies
    17
    Views
    25,559

    Once you flush the servlet output stream, the...

    Once you flush the servlet output stream, the headers have to get sent so that it can send your stream content in the body of the HTTP response. The only option left at that point is to end the...
  9. Found the problem

    Stupid mistake on my part...helps if you use the right method signature...I've never used property editors before, and I apparently thought that the opposite of "void setAsText(String) should be...
  10. yes, I'm using velocity views, so I don't even...

    yes, I'm using velocity views, so I don't even have c:out. :-) It's all with $spring.bind. It works fine on the form submission, just not on redisplaying.
  11. Default toString() appears upon validation errors.

    I have a form that has a few complex objects. I have a property editor that looks them up based on the input string just fine with the "setAsText()" methods in the property editor.

    However, the...
  12. My general technique for this type of...

    My general technique for this type of configuration information has become to first push all of the environment specific configuration into a small include file via whatever mechanisms the thing...
  13. One for, one against. :-) At first I avoided...

    One for, one against. :-)

    At first I avoided the propertyeditor because I was probably going to end up needing quite a few, and wiring them all up with their application facade reference sounded...
  14. I found a fairly complete description of a very...

    I found a fairly complete description of a very similar question:

    http://forum.springframework.org/showthread.php?t=9845

    However, is it really the intention that this sort of thing get done in...
  15. Domain objects as form objects with nested relationships

    Pardon me if I've overlooked something; I'm still trying to wrap my head around all of spring, and a quick search of the forums didn't turn up exactly what I was looking for.

    I like the idea of...
  16. Memory could be important too

    As jc says, when doing session replication, size is very important for performance (requring everything in the session to be serializable is almsot guaranteed to be a requirement as well).

    Beyond...
Results 1 to 16 of 16