Salve gente

Stō implementanto una Stored Procedure di un metodo di un webservice creato
da una societā esterna per una applicazione mobile . . .

Il webservice č in 2.0 , ho visto che il metodo che si appoggia sulla stored che stō creando ,
come output restituisce un array di byte , preso dal dataset in questo modo :

codice:
             cnn.Open();
             byte[] b;
             ....
            string query = "spGetUtenti";

            SqlCommand cmd = new SqlCommand(query, cnn);

            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter sqlPar = new SqlParameter("@utente", SqlDbType.VarChar);
            sqlPar.Value = utente;
            cmd.Parameters.Add(sqlPar);

            SqlDataAdapter da = new SqlDataAdapter(cmd);
            da.Fill(ds);

            b = CustomSerializer.SerializeDataSet(ds);

            return b
Io son nuovo in 2.0 , cmq a che mi serve restituire un dataset in Byte ???

Che ci posso fare con questi byte dopo ???

:master: