Hi i have setup a local WCF service with the following specs:
Web Service:
•
OperationContract:
[OperationContract] string SampleTest(Tester test)
•
DataContract:
[DataContract(Name = "Tester")]public class Tester
•
DataMember:
[DataMember(IsRequired = true)]public string Name, [DataMember(IsRequired = true)]public int Age
Now with my Perl script i have been able to successfully call a function with just a simple string parameter but i cant figure out how to call a function which has an object as its argument.
The method i am trying to access is trivial:
public string SampleTest(Tester test)
{
if (test == null)
{
return String.Format("NULL test");
}
}
When i use the following script i always get the above string printed meaning that the argument isnt passed correctly. Here is a relevant portion of the script:
my $method = SOAP::Data->name('SampleTest')
->attr({xmlns => 'http://tempuri.org/'});
my $query =
SOAP::Data
->name(Tester =>
\SOAP::Data->value(
SOAP::Data->name(Name => 'Nathan'),
SOAP::Data->name(Age => 22)
));
print $soap->call($method => $query)->result;
I dont think i am contructing the correct SOAP request. I am not sure how to check my WCF service on what request does it expect. I can access the WSDL file generated by my WCF service but it doesnt tell anything on the format of the SOAP request and response.
Can someone please help me out. Thanks in advance.
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.