custom-serialization
There are 12 repositories under custom-serialization topic.
goetas-webservices/xsd2php
Convert XSD into PHP classes and JMS serializer definitions
digitalsadhu/loopback-component-jsonapi
JSONAPI support for loopback.
dbolin/Apex.Serialization
High performance contract-less binary serializer for .NET
infobip/popout
Java file-based extremely fast and reliable FIFO queue.
tuanzuo/redismanager
Redis单机和集群下数据的查询,添加,修改,删除;支持自定义key,value的序列化方式
RameshMF/gson-tutorial
Guide to google gson library
360matt-archives/CitronDB
An API to simplify the handling of MySQL databases, with structures and reflections.
izackp/AutoBuffer
An easy to use binary serializer with the smallest output possible and supports type metadata for C#.
AnkurJain01/CustomSerializerDeserializer
Custom Serializer - Deserialzer implementation using annotation
badbatch/styled-snapshot
A utility for taking Jest snapshots of components that use Styled Components.
Neo-vortex/VortexTunnel
A high performance ,minimal raw socket protocol
kathleenwest/MySerializationDemoWCFAppSharedLib
This project presents a simple, but fun “Adopt a Dog” Service Application. The service provides a factory creational design pattern to create and return a single Dog object (complete with a cute photo). It is hosted using IIS Express to quickly demo and test the service with a client. The service interface is defined not in the service application but in a Shared Library. The Shared Library also defines the Dog class object with custom serialization using the ISerializable interface implemented on the Dog class. This project is intended to demo custom serialization and a shared library concept between both the service and the client. With the Shared Library concept of both the service interface definition and the Dog class, there is no need to use SVCUTIL or the Service Wizard to create a tightly coupled service reference. Instead, the client uses a simple ChannelFactory concept to build a channel to the service knowing the interface details in the Shared Library. Also, it can understand and work with the Dog objects as specified in the Shared Library. A client “tester” windows form application tests the service and provides output to the user in a simple GUI. In addition, a short discussion and code demo of debugging service errors and activity using diagnostics and a trace listener pattern is included in this article. Some of my lessons learned in debugging service errors and custom serialization may help you on your next project.