Trace: • Using Calculated Values • Delete a Screen • Manual Menu Definition • Create an Anonymous Connection
Differences
This shows you the differences between two versions of the page.
jvx:communication:serialization [2018/02/01 10:40] admin created |
jvx:communication:serialization [2020/06/08 15:58] (current) cduncan Edited for English grammar (capitalization, punctuation, correct verb conjugation) |
||
---|---|---|---|
Line 5: | Line 5: | ||
The so-called serializers have to fulfill the ISerializer interface. | The so-called serializers have to fulfill the ISerializer interface. | ||
- | == Why specific serializers? == | + | == Why Specific Serializers? == |
The communication between Java and C#, Flex, etc. would hardly be possible using standard Java serialization or the Java serialization would have to be taken over. The effort would be enormous. | The communication between Java and C#, Flex, etc. would hardly be possible using standard Java serialization or the Java serialization would have to be taken over. The effort would be enormous. | ||
Line 11: | Line 11: | ||
Existing serializing frameworks, such as [[http://hessian.caucho.com/|Hessian]], do not support all necessary objects, such as BigDecimal. | Existing serializing frameworks, such as [[http://hessian.caucho.com/|Hessian]], do not support all necessary objects, such as BigDecimal. | ||
- | For this reason a separate serializer was implemented, the UniversalSerializer. | + | For this reason, a separate serializer was implemented, the UniversalSerializer. |
However, using the definition of ISerializer, frameworks such as Hessian can be integrated in JVx. | However, using the definition of ISerializer, frameworks such as Hessian can be integrated in JVx. |