Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Problem with Upgrade from 2.4 to 3.0

    Hello,

    I was using SmartGWT 2.4 and I just upgraded to SmartGWT 3.0. But my login form is not working anymore, for some reason DSRequest that is submitted to my java code is empty.

    I couldn't see anything in the release notes about this, does anyone know what changed?

    I have the exact same code with this example... http://www.smartclient.com/smartgwt/...ion_server_xml


    Thanks!
    Last edited by bsener; 29 Mar 2012, 09:53.

    #2
    So this is what 2.4 used to pass:
    <request>
    <data>
    <loginDS>
    <username>username</username>
    <password>password</password>
    </loginDS>
    </data>
    <oldValues/>
    <dataSource>loginDS</dataSource>
    <operationType>update</operationType>
    <componentId>isc_DynamicForm_0</componentId>
    </request>





    And this what 3.0 passes:
    <request>
    <data>
    <username>username</username>
    <password>password</password>
    </data>
    <oldValues></oldValues>
    <dataSource>loginDS</dataSource>
    <operationType>update</operationType>
    <componentId>isc_DynamicForm_0</componentId>
    </request>

    I don't know why it has changed but I'm gonna have to adjust a lot of code if all requests have changed like this. Any ideas? Or fixes?

    Comment

    Working...
    X