SOAP Body ÔªËØ
Ç¿ÖÆÊ¹ÓÃµÄ SOAP Body ÔªËØ°üº¬Êµ¼ÊµÄ SOAP ÏûÏ¢¡£
SOAP Body ÔªËØ
±ØÐèµÄ SOAP Body ÔªËØ¿É°üº¬´òËã´«Ë͵½ÏûÏ¢×îÖն˵ãµÄʵ¼Ê SOAP ÏûÏ¢¡£
SOAP Body ÔªËØµÄÖ±½Ó×ÓÔªËØ¿ÉÒÔÊǺϸñµÄÃüÃû¿Õ¼ä¡£SOAP ÔÚĬÈϵÄÃüÃû¿Õ¼äÖÐ("http://www.w3.org/2001/12/soap-envelope")¶¨ÒåÁË Body ÔªËØÄÚ²¿µÄÒ»¸öÔªËØ¡£¼´ SOAP µÄ Fault ÔªËØ£¬ÓÃÓÚָʾ´íÎóÏûÏ¢¡£
<?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> <soap:Body> <m:GetPrice xmlns:m="http://www.w3school.com.cn/prices"> <m:Item>Apples</m:Item> </m:GetPrice> </soap:Body> </soap:Envelope>
ÉÏÃæµÄÀý×ÓÇëÇ󯻹ûµÄ¼Û¸ñ¡£Çë×¢Ò⣬ÉÏÃæµÄ m:GetPrice ºÍ Item ÔªËØÊÇÓ¦ÓóÌÐòרÓõÄÔªËØ¡£ËüÃDz¢²»ÊÇ SOAP ±ê×¼µÄÒ»²¿·Ö¡£
¶øÒ»¸ö SOAP ÏìÓ¦Ó¦¸ÃÀàËÆÕâÑù£º
<?xml version="1.0"?> <soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> <soap:Body> <m:GetPriceResponse xmlns:m="http://www.w3school.com.cn/prices"> <m:Price>1.90</m:Price> </m:GetPriceResponse> </soap:Body> </soap:Envelope>