How to send this SOAP XML to Perl?

I need to send the XML below. And I have no idea where to start. I know that I need to look for SOAP in Perl, but it is something like this.

<xs:element name="CheckDomain"> 
<xs:complexType> 
<xs:sequence> 
<xs:element name="domain" type="domainRef"/> 
<xs:element name="suggestions" type="xs:boolean" default="false" minOccurs="0"/> 
</xs:sequence> 
</xs:complexType> 
</xs:element>
+3
source share
4 answers

Where to begin? Start reading the SOAP :: Lite documentation ; there are more extensive SOAP processing libraries here .

If you need more help, you can find what you need in some of the earlier SOAP questions in Stackoverflow.

+4
source

The marked XML snippet looks like an XSD schema. It describes the following XML:

<CheckDomain xmlns="...">
 <domainRef>...</domainRef>
 <suggestions>true</suggestions> <!-- or it could be "false" -->
</CheckDomain>

, CheckDomain, domainRef. XSD.

, WSDL , , SOAP. (, SOAP-, REST XML-RPC, XSD).

SOAP , . WSDL XSD, , , .

+1

, HTTP- CPAN, < ( ) ( XML-) . .

Perl SOAP-, , .

Interest Ask. Good luck with WSDL bludgeoning :-)

0
source

check the following url how to use perl to send soap messages:

http://users.skynet.be/pascalbotte/rcx-ws-doc/perlpost.htm

saludos,

0
source

Source: https://habr.com/ru/post/1719044/


All Articles