SOAP Example

Hi,
Does anyone have a simple SOAP example? Just the XML and the correct URL to send the request to?
Ultimately I’d like to return the creator and last modifier for a content item but just getting a SOAP request to work and return something would be a start!

Thanks.

Nick,

Does Web Services (Version 6.5 link) provide the functionality you’re looking for?

RLJII

Yes, I’ve used the examples in that document to create and access content types in Java. I was just hoping to do a quick SOAP request to get the information I wanted. I’ve tried something as simple as the block below to http://XXXXX:9992/Rhythmyx/webservices/securitySOAP but just receive errors.
If anyone has a successful start point I could go from there.


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
  <SOAP-ENV:Header>
    <Authentication xmlns="http://www.percussion.com/wdsl/">
      <Username>admin1</Username>
      <Password>demo</Password>
    </Authentication>
  </SOAP-ENV:Header>
  <SOAP-ENV:Body>
    <login xmlns="urn:www.percussion.com/webservices/miscellaneous">
       <LoginRequest/>
    </login>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

NickK,
Have you had any luck calling the SOAP request from the html? Has anyone else successfully implemented this?

Paddy