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

📄 localtime.c

📁 linux下开发的soap协议。建议大家学习学习!
💻 C
字号:
/* This client invokes a remote method of a service implemented in .NET with SOAP doc/lit encoding *//* Change the US zipcode in the subroutine call to obtain your local time */#include "soapH.h"#include "localtime.nsmap"int main(){ struct soap soap;  char *t;  soap_init(&soap);  if (soap_call_ns__LocalTimeByZipCode(&soap, "http://www.alethea.net/webservices/LocalTime.asmx", "http://www.alethea.net/webservices/LocalTimeByZipCode", "32306", &t))    soap_print_fault(&soap, stderr);  else    printf("Time = %s\n", t);  return 0;}

⌨️ 快捷键说明

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