I know this topic was discussed pretty often and I guess it is not a diffucult thing. I want to use a JSON Object from my session in a JSP. The Object has the following structur:
 {
"addedUsers":[
    {
        "city":"Los Angeles",
        "name":"Doe",
        "forname":"John",
        "title":"Dr.",
        "userId":2
    }
],
"allUsers":[
    {
        "city":"Los Angeles",
        "name":"Doe",
        "forname":"John",
        "title":"Dr.",
        "userId":2
    },
    {
        "city":"New York",
        "name":"Peter",
        "forname":"Parker",
        "title":"Dr.",
        "userId":3
    }
]
}
Now I want to grab the Objects by name for example doing a for each on the "addedUsers" Object and grab the properties. It is important not just to iterate over the whole Object. I have to call them by name.
