SOAP::Lite creating remote objects

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

  1. #1

    Default SOAP::Lite creating remote objects

    Im using SOAP::Lite to create a SOAP client, and I need to create an
    object which has its structure defined in a WSDL file.
    All of the samples i have found related to object creation/handling
    with SOAP::Lite relates to handling returned objects, but I need to
    create an object and submit it.
    Is there a way to do this automagically using their provided WSDL file
    (which does have the XML definition for the object i need), or will I
    need to use something like SOAP::Data to build this object manually?

    I have read the documentation, and like I said, most all of the
    examples I have seen relate to dealing with *returned* objects, not
    creating them before calling a remote method.

    In case it matters, the WSDL file is here :
    [url]http://stage.freshdigital.co.uk/webservices/MediaStore?wsdl[/url]
    and i need to create a Product object, but i dont think that level of
    detail is necessary to answer my question..

    Thanks in advance,
    Gabriel

    Gabriel Guest

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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),...
    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: SOAP::Lite creating remote objects

    Hi Gabriel,

    You need wrap your object with SOAP::Data by yourself. ie. you need
    customized serializer. check out: SOAP::EnvelopeMaker.

    PerlDev Guest

  4. #3

    Default Re: SOAP::Lite creating remote objects

    I am having the same issue.. please share the solution..

    Thanks
    Nitin 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