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

📄 sslclient.c

📁 linux下开发的soap协议。建议大家学习学习!
💻 C
字号:
#include "soapH.h"#include "ssl.nsmap"int main(){ struct soap soap;  int in, out;  double a, b, result;  a = 10.0;  b = 20.0;  soap_init(&soap);  soap.keyfile = "client.pem"; /* may be omitted when server does not require client authentication */  soap.password = "password"; /* may be omitted when server does not require client authentication */  soap.cafile = "cacert.pem"; /* may be omitted when server does not require client authentication */  if (soap_call_ns__add(&soap, "https://linprog1.cs.fsu.edu:18081", "", a, b, &result)== SOAP_OK)    fprintf(stdout,"Result = %f\n", result);  else    soap_print_fault(&soap, stderr);  return 0;}

⌨️ 快捷键说明

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