Well-respected Perl Monks, I'm seeking for your wisdom to help me find ways to use Perl under this scenario: I want to create a Perl Client that consumes data from a Windows Communication Foundation (WCF) Service using TCP/IP (NOT SOAP). The WCF Windows Service will be running on a Windows Machine and the Perl Client will run on client machines without .NET frameworks supporting WCF. I'd like to know if someone has done something similar using Perl. Any code samples or links or books to read from will be greatly appreciated. Here's a snapshot of my App.config file with the ABC data:
<services> <service behaviorConfiguration="MyDummyServiceBehavior" name="MyDummyService"> <endpoint address="net.tcp://localhost:8762/MyDummyService" bi +nding="netTcpBinding" bindingConfiguration="TCPBinding" name="TCPEndpoint" contrac +t="IMyDummyService"> <identity> <dns value="localhost" /> </identity> </endpoint> <endpoint address="http://localhost:8732/MyDummyService/mex" b +inding="mexHttpBinding" name="Metadata" contract="IMetadataExchange" /> <host> <baseAddresses> <add baseAddress="http://localhost:8732/MyDummyService/" / +> </baseAddresses> <timeouts closeTimeout="23:59:59" openTimeout="23:59:59" /> </host> </service> </services>

In reply to How to write Perl Client that uses WCF TCP/IP Service by PerlApprentice

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.