javascript - How to create a basic SOAP request page -



javascript - How to create a basic SOAP request page -

i need create basic html page capture user information, first name, surname, value , email address , description of goods etc. needs sent example.com basic soap request (below)

this simple signup form. user manually input info , on submit info should pass "http://www.example.com/". want know, how create html page job.

<?xml version="1.0" encoding="utf-8"?> <s:envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"> <s:body xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema"> <submitnewapplicationshort xmlns="http://www.example.com/"> <newapplicationdatashort> <usercredentials> <loginname>xxxxx_icet1</loginname> <password>xxxxxxx</password> </usercredentials> <proposalshort> <clientreference>3692</clientreference> <cashprice>1700</cashprice> </proposalshort> <goods type="hi0"> <description>boiler</description> <quantity>1</quantity> </goods> <customer> <title>mr</title> <forename>test</forename> <initial xsi:nil="true" /> <surname>six</surname> <emailaddress>xxxxxxx@xxxxxx.com</emailaddress> </customer> <address> <housenumber /> <housename /> <flat /> <street /> <district /> <town /> <county /> <postcode /> </address> </newapplicationdatashort> </submitnewapplicationshort> </s:body> </s:envelope>

javascript html soap

Comments

Popular posts from this blog

c# - ASP.NET MVC Sequence contains no matching element -

java - Parsing XML, skip certain tags -

rest - How to invalidate user session on inactivity in a stateless server? -