Using SOAP::Lite and .NET

Ask a Question related to PERL Modules, Design and Development.

  1. #1

    Default Using SOAP::Lite and .NET

    Hello,
    i have to access to informations in a PC and they are avaliable via a
    webservice in .NET.
    I do not know webservices but i thought they are accessible via SOAP so
    i decided to use SOAP::Lite

    I'm trying to understand how it works so i've a webservice at this
    page:
    [url]http://www.eklipseinformationtechnology.com/finco.ws/test.asmx[/url]

    This service has a method (i hope it is called in this way in english)
    called CognomeNome in which, if you pass a number it gives you a name
    and surname...

    My script doesn't give me any output so i can't understand where is the
    problem...

    Can you give me any suggestions?
    Many thanks!!


    <code>
    use SOAP::Lite;


    $soap_response=SOAP::Lite
    -> uri('http://www.eklipseinformationtechnology.com/Test')
    ->
    proxy('http://www.eklipseinformationtechnology.com/finco.ws/test.asmx')

    ->CognomeNome(1);


    @res = $soap_response->paramsout;


    $res = $soap_response->result;
    print "Result is $res\n\n";
    </code>

    nathanvi Guest

  2. Similar Questions and Discussions

    1. Writing a HTML/ASP SOAP client for a SOAP::Lite destination
      How would I go about writing a SOAP client in either HTML or classic asp? The SOAP "listener" was written in Perl with SOAP::Lite in Unix and I am...
    2. SOAP::Lite : Problem of # sign added by SOAP::Lite in the sent SOAPActionstring
      Hello, I have a problem with a SOAP client written in Perl (source at the end). I've tried both ways (by commenting TRIAL ONE or SECOND TRIAL),...
    3. SOAP::Lite : BUG somewhere
      I tried running the demo scripts given in the SOAP::Lite tutorial that appeared in http://www.perl.com/pub/a/2001/01/soap.html. According to this...
    4. SOAP::Lite HELP!
      I've written soap clients before but never anything this complicated. Here are the links PIRP: http://homer.meso.com/crap/PIRP_Schema_v1.xsd...
    5. soap::lite and dbd::csv
      sorry !! my english is very poor. i got some trouble ! please help ! if $vars is constant in Bridge.pm then the process is right! ps:DBD::CVS ...
  3. #2

    Default Re: Using SOAP::Lite and .NET

    A couple of thoughts. "use soap::lite +trace;" so you can see what is happening.
    Do a search on soap-line .net and read the Microsoft article on using soap:lite to talk to a .net service. There are a number of different choices of defaults that have to be overcome to make it work.
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139