hello , i need to send from client to server big binary datas ,
like video and images.
I know , i can send thru Spring DSL with SOAP WebService but the problem is Base64 Encoding and Decoding sucks and slows servers in time.
Whats the fastest way to send binary data thru spring DSL Service ?
I’ve heard about hessian protocol :
http://hessian.caucho.com/
is it the fastest way to send binary data ?
Any limitations on sending data?
We will send many images , we need fastest solution on Spring DSL.
And my second question is ,
Can we make new Service for Spring DSL ?
Like , we have made Custom TCP protocol , thats based on pure binary.
No string and no XML.
Can we implement it on Spring DSL ?
We can use it on Spring ?