I'm looking for a DLL or a complete C# project with Client and server for sending and receiving XML-document. Google isn't my friend :(
I'm thankful for any help!
I'm looking for a DLL or a complete C# project with Client and server for sending and receiving XML-document. Google isn't my friend :(
I'm thankful for any help!
decided to move from raw async sockets to a WebService — a sensible switch depending on priorities. ’s pointers to async sockets are a valid route when you need a custom, low-latency or long-lived binary protocol, but HTTP-based services win on interoperability, firewall/proxy friendliness and easier hosting. Choose by answering: do you need raw performance/streaming (sockets) or easier integration and simpler deployment (WebService/HTTP)?
Practical points missed in the thread that matter in either approach:
XmlReaderSettings.DtdProcessing = Prohibit). Quick checklist for next steps: pick transport, design framing or use HTTP, enforce encoding & schema validation, enable TLS, and load-test in realistic network conditions. For implementation patterns see the platform async-socket guidance and the ASP.NET Web API docs:
SocketAsyncEventArgs docs
ASP.NET Core Web API docs
Jump to Post— kvprajapati 1,826Take a look at :
1.
2.
2.
Take a look at :
1.
2.
2.
Take a look at :
1.
2.
2.
Thanks! After some reading I decided to take a different path, I'ill try to build a WebService instead.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.