SOAP and XML

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • srussell
    Indigo Rose Customer
    • Sep 2005
    • 77

    SOAP and XML

    Anyone doing anything with SOAP web service calls and XML? I've been working on another project that has several hundred web services, such as GetPasswordHash, that use SOAP calls and would like to do the same in Autoplay Media Studio

    Example: (you pass the administrator name and the password and it returns the pashh MD5 hash...)

    <?xml version="1.0" encoding="utf-8"?>
    <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
    <GetPasswordHash xmlns="http://webservice.xxxxxxxx.com/">
    <Administrator>string</Administrator>
    <Password>string</Password>
    </GetPasswordHash>
    </soap:Body>
    </soap:Envelope>
  • TJ_Tigger
    Indigo Rose Customer
    • Sep 2002
    • 3159

    #2
    I am not very familiar with SOAP (insert bad joke here ). Do you submit to a page the XML structure you have listed above? Or how does one interact with the information contained within the XML?

    On lua.org there is a page on LUASOAP which is based on LUASocket 2.0. Since LUASocket works in AMS6 I don't know if LUASOAP will work but it is worth a try.
    TJ-Tigger
    "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
    "Draco dormiens nunquam titillandus."
    Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

    Comment

    • TJ_Tigger
      Indigo Rose Customer
      • Sep 2002
      • 3159

      #3
      It is too bad that we cannot use the HTTP.Submit to POST a SOAP XML to a website and have the SOAP response returned.

      Tigg
      TJ-Tigger
      "A common mistake that people make when trying to design something completely foolproof was to underestimate the ingenuity of complete fools."
      "Draco dormiens nunquam titillandus."
      Map of IR Forum Users - IR Project CodeViewer - Online Help - TiggTV - QuizEngine

      Comment

      • srussell
        Indigo Rose Customer
        • Sep 2005
        • 77

        #4
        Originally posted by TJ_Tigger
        It is too bad that we cannot use the HTTP.Submit to POST a SOAP XML to a website and have the SOAP response returned.

        Tigg
        Something to look into the future... Web services are becoming much more popular as they are written in C-sharp. For now, we may have to use Php or something ...
        Srussell

        Comment

        Working...
        X