⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 quote2.c

📁 linux下简单对象应用协议的开发库
💻 C
字号:
/*	getQuote example with asynchronous SOAP messaging*/#include "soapH.h"int main(){ struct soap soap;  struct ns__getQuoteResponse r;  soap_init(&soap);  if (soap_send_ns__getQuote(&soap, "http://services.xmethods.net/soap", "", "IBM"))    soap_print_fault(&soap, stderr);  else if (soap_recv_ns__getQuoteResponse(&soap, &r))    soap_print_fault(&soap, stderr);  else    printf("IBM: %f\n", r.Result);  soap_end(&soap);  soap_done(&soap);  return 0;}struct Namespace namespaces[] ={  {"SOAP-ENV", "http://schemas.xmlsoap.org/soap/envelope/"},	/* MUST be first */  {"SOAP-ENC", "http://schemas.xmlsoap.org/soap/encoding/"},	/* MUST be second */  {"xsi", "http://www.w3.org/1999/XMLSchema-instance"},		/* MUST be third */  {"xsd", "http://www.w3.org/1999/XMLSchema"},  {"ns", "urn:xmethods-delayed-quotes"},	/* Method namespace URI */  {NULL, NULL}};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -