Sounds great!

Do you think it is possible that I can use the
serialization/deserialization features as simple as using BlazeDS like
below?


in pom.xml :

        <dependency>
            <groupId>org.springframework.flex</groupId>
            <artifactId>spring-flex-core</artifactId>
        </dependency>

then in Java file:

        ... ...

        Amf3Output aOut= new Amf3Output(new SerializationContext());
        aOut.setOutputStream( outStream );
        aOut.writeObject(data);

        ... ...

        Amf3Input aIn = new Amf3Input( new SerializationContext() );
        aIn.setInputStream( inputStream );
        data = aIn.readObject();

Thanks.


- Gary



On Wed, May 14, 2014 at 8:51 AM, Franck Wolff <[email protected]> wrote:

> Hi everybody,
>
> We have just published the benchmark results on the GraniteDS blog:
>
> http://www.granitedataservices.com/2014/05/14/amf3-benchmark-graniteds-3-1-vs-blazeds-4-0
> .
>
> Feedback would be very appreciated.
>
> Franck
> @graniteds
>

Reply via email to