ok here it is:
a com object returns a binary string to perl in ascii 7 bit (8 bit for popular terms)

perl converts this binary to ascii 7 bit even parity by default when the com objects return value is set to a scalar.
binary data from com object looks something like this:
79a30bf0ac64fc0e469f0568562e43e53f89a3f46f7437d44d96dcd5087b20056df7fcb07485f0c0 (7 bit ascii even parity)

the same com object used in .net or asp returns binary value in ascii 7 bit (8bit for popular term)

i can't have this happen becuase the two systems won't decrypt the same value correctly through the com object.

some Hex values in ascii 7 bit even parity represent chars differently compared to the Hex representation of the same character in 7 bit ascii

I need to find a way for perl not to transfer the binary string returned from the com object into 7 bit even parity. this changes the hex values thus cannot be converted correctly by the .net apps that read in the perl stored values.

In reply to Re: Re: convert 7 bit even parity to 7 bit ascii by bear0053
in thread convert 7 bit even parity to 7 bit ascii by bear0053

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.