I am using some .NET assembly with OLE method.
Method in .NET looks like this:
public int IdentifyUserByCert(string certB64, ref string userTaxId, re
+f string corpTaxId)
Calling it from C# looks like this
DefaultCertUserIdentification identi = new DefaultCertUserIdentificati
+on(new Configuration());
string userTaxNum = "";
string corpTaxNum = "";
identi.IdentifyUserByCert(TestData.ACNLB_FO2, ref userTaxNum, ref corp
+TaxNum);
After this call in variable userTaxNum, and corpTaxNum there are some return values.
In Perl I am using same assembly via OLE like this.
my $identi = Win32::OLE->new('DefaultCertUserIdentification');
my $identified = $identi->IdentifyUserByCert($certificate, \$userTaxId
+, \$corpTaxId);
Return valu is OK. It works as expected.
I was expecting to get values in $userTaxId, and $corpTaxId, but I do not.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.