[jbossseam-issues] [JBoss JIRA] Created: (JBSEAM-1202) seam remoting js->bag multiple dimension problem

Christoph Aigner (JIRA) jira-events at lists.jboss.org
Wed Apr 18 03:57:30 EDT 2007


seam remoting js->bag multiple dimension problem
------------------------------------------------

                 Key: JBSEAM-1202
                 URL: http://jira.jboss.com/jira/browse/JBSEAM-1202
             Project: JBoss Seam
          Issue Type: Bug
          Components: Remoting
    Affects Versions: 1.2.1.GA, 1.2.0.GA
            Reporter: Christoph Aigner
         Assigned To: Shane Bryzak
            Priority: Minor



there is an error when passing multidimensional Arrays from Javascript to a webRemote function. 

var csArr = new Array(); 
csArr[0] = 1; 

converts without problems to: 
ArrayList ssArr 

but 

js: 
var csArr = new Array(); 
csArr[0] = new Array(); 
csArr[0][0] = 11; 

ArrayList<ArrayList<integer>> ssArr 
is null on Serverside (although the seam-debugger shows that the array is transfered correctly) 

also tried it out with HashSet and [] -> same result 

it works from the serverside -> clientside though.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list