Hi, I've a problem with webservices after updating to hotfix 2 for flex builder. this is the soap for the method I'm having problems with:
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap=" http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <loginUtenteObjResponse xmlns=" http://www.mamateam.net/schemas/services/sso"> <loginUtenteObjResult> <*Items* xmlns="http://www.mamateam.net/schemas/services/users/"> <DataSetUtenteUtenteObj> <IDUtente>*int*</IDUtente> <email>*string*</email> <username>*string*</username> <nome>*string*</nome> <cognome>*string*</cognome> <password>*string*</password> <language>*string*</language> <passExpires>*dateTime*</passExpires> <userExpires>*dateTime*</userExpires> <locked>*boolean*</locked> <SecretQuestion>*string*</SecretQuestion> <SecretAnswer>*string*</SecretAnswer> <isGroup>*boolean*</isGroup> <imported>*boolean*</imported> </DataSetUtenteUtenteObj> <DataSetUtenteUtenteObj> <IDUtente>*int*</IDUtente> <email>*string*</email> <username>*string*</username> <nome>*string*</nome> <cognome>*string*</cognome> <password>*string*</password> <language>*string*</language> <passExpires>*dateTime*</passExpires> <userExpires>*dateTime*</userExpires> <locked>*boolean*</locked> <SecretQuestion>*string*</SecretQuestion> <SecretAnswer>*string*</SecretAnswer> <isGroup>*boolean*</isGroup> <imported>*boolean*</imported> </DataSetUtenteUtenteObj> </Items> </loginUtenteObjResult> </loginUtenteObjResponse> </soap:Body> </soap:Envelope> as you can see *Items* is an Array of DataSetUtenteUtenteObj. Before installing hotfix 2 it was working fine, but after I see *Items* as an Object instead of Array so my code break. Note that the *Items* Array contains only 1 object, I couldn't test if with the array lenght greater than one I would see as an Array.

