Search:

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

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. OSGi Tutorial Issues - Live Update Doesn't Work

    In the Live Update demo, live update doesn't work.

    Yes, I'm using the live update run config and see the expected prompts.

    BTW, this is
    Version: 2.6.1.RELEASE
    Build Id: 201105041000
  2. OSGi Tutorial Issues - Run the Configuration

    In the 4th step of the tutorial, it ends by saying to run the configuration.

    When I do this, the tutorial directions revert back to the main workspace, but the run dialog remains open. Only when...
  3. Replies
    0
    Views
    499

    OSGi Tutorial Issues - Target Platform

    In the second step of the OSGi Tutorial, Workspace Setup, the perfom action opens the preferences dialog where the target platform can be specified.

    When I decided to go back to look at this, I...
  4. Replies
    0
    Views
    340

    OSGi Tutorial Issues - Workspace Setup

    I'm just starting the OSGi tutorial and the Workspace Setup (step 2) has an error.

    It says to select the "Srpring Synamic Modules for OSGi Service Platforms" at the bottom, but this is not how it...
  5. Replies
    0
    Views
    670

    Task-Focused Tutorial Oddity

    I was running the task-Focused Tutorial on Integration Testing with JUnit 4 and was on the "Trannsactions" step.

    I added the Navigator view and suddenly the ClinicDatabaseTests class which I was...
  6. Thread: Blank Page

    by flawlor
    Replies
    1
    Views
    862

    Blank Page

    In one of my controllers I was using errors.rejectValue(...) to return an error to the submitted page. This was working fine.

    Suddenly I am now getting a blank page.

    The controller does the...
  7. Replies
    4
    Views
    2,143

    Validation is supposed to be one of the prime...

    Validation is supposed to be one of the prime features of this class.
    Is there no one out there who can answer this basic question?
  8. Replies
    4
    Views
    2,143

    AbstractCommandController validation

    I've read thru the examples and posts on this, but for some reason I cannot get any errors returned to my JSP using AbstractCommandController.

    I have a controller based on BaseFormController and...
  9. Replies
    21
    Views
    23,088

    Interesting. I never heard of JODA before. I'll...

    Interesting. I never heard of JODA before.
    I'll definitely give it a try next time I have any real date handling to do.

    Now if someone will clean up JDBC. Each version of that spec has gone...
  10. Replies
    21
    Views
    23,088

    I posted this last week, but it didn't seem to...

    I posted this last week, but it didn't seem to make it.

    Reading the API doc it seems that CustomDateEditor only handles java.util.date. Unfortunately the binder just throws a rather misleading...
  11. Replies
    10
    Views
    2,372

    Did this solve your problem? If not, just a...

    Did this solve your problem?

    If not, just a couple of thoughts.

    "List.class" might fail because List is abstract.

    If your list doesn't have a property called propertry it will fail.
    If...
  12. Replies
    6
    Views
    1,522

    I don't know what your problem is, but when I...

    I don't know what your problem is, but when I have this kind of problem I drop back to a simple example and work my way up. Simplify your popup to "hello world" and see if that works.
  13. Replies
    4
    Views
    913

    You haven't provided enough information about the...

    You haven't provided enough information about the controllers and forms you are using to understand what is going on, but I suspect you do not have the jsps, controllers and forms they use all...
  14. Replies
    4
    Views
    913

    Are you getting any other errors before this one?...

    Are you getting any other errors before this one?

    I've seen this error a couple of times. The last one was when I had a date on my web page and the binder had problems mapping it to the date...
  15. Replies
    3
    Views
    3,228

    When you say "If it is necessary to keep it alive...

    When you say "If it is necessary to keep it alive to the next request it's put back into the session" how do I indicate that this should happen?

    I tried putting the command object in the session...
  16. Replies
    21
    Views
    23,088

    I tried several date formats to verify that it is...

    I tried several date formats to verify that it is acturally using my format and both the util.date and the sql.date are formatted properly. However, on input, only the sql.date has a problem. They...
  17. Replies
    3
    Views
    3,228

    How to manage object in session

    I have a need to keep an object in the session. I set the sessionForm property to true in the controller bean def in action-servlet.xml:


    <bean id="treatmentController"...
  18. Replies
    21
    Views
    23,088

    Fantastic! That did the trick. My date is now...

    Fantastic! That did the trick. My date is now getting formatted properly on display.

    Perhaps you can help resolve two related issues.

    1) If I change the date type to java.sql.date it is...
  19. Replies
    21
    Views
    23,088

    jonnio, Thanks for all the information. The...

    jonnio,

    Thanks for all the information.

    The exception I mentioned is just the binding exception on submit - which is totally expected given the wrong date format.

    The problem, as you...
  20. Replies
    21
    Views
    23,088

    jonnio, Thanks for replying, but I don't...

    jonnio,

    Thanks for replying, but I don't understand what your statement "your editor must not be bound to the 'errors' collection if the <form:input isn't working." means.

    I'm not sure what...
  21. Replies
    21
    Views
    23,088

    I also noticed that if I use java.util.date the...

    I also noticed that if I use java.util.date the suggestion by dr_pompeii works, but if I change all the types to java.sql.date it doesn't work (java.lang.IllegalArgumentException: No matching editors...
  22. Replies
    21
    Views
    23,088

    I tried the suggestion by dr_pompeii and that...

    I tried the suggestion by dr_pompeii and that works. Thanks.

    I also tried the suggestion by Jörg Heinicke with just

    A Date: <form:input path='myDate'/>

    in the JSP.

    The date comes up...
  23. Replies
    21
    Views
    23,088

    Simple Date Input Problem

    I'm trying to input a date using an html text field and having trouble getting this set up right in Spring. I've spend the last several hours looking for documentation (no luck finding anything) and...
  24. Replies
    1
    Views
    1,179

    I figureed out how to do this. Just do something...

    I figureed out how to do this. Just do something like:

    <form:form name='foo' ... >
    <script type="text/javascript">
    document.forms['foo'].setAttribute('theName', 'theValue');
    </script>
  25. Replies
    1
    Views
    1,179

    How to add attribute to form:form tag?

    I want to use the TMT Validator package, but the directions say to add the attribute tmt:validate="true" to the form tag. However, if I add it to the form:form tag the jsp compiler complains that...
Results 1 to 25 of 27
Page 1 of 2 1 2