Changeset 20988 for trunk/Nebulous/nebclient/src/soapC.c
- Timestamp:
- Dec 14, 2008, 12:48:35 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/Nebulous/nebclient/src/soapC.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous/nebclient/src/soapC.c
r20965 r20988 12 12 #endif 13 13 14 SOAP_SOURCE_STAMP("@(#) soapC.c ver 2.7.11 2008-1 2-11 21:42:14GMT")14 SOAP_SOURCE_STAMP("@(#) soapC.c ver 2.7.11 2008-10-16 23:26:39 GMT") 15 15 16 16 … … 1342 1342 { 1343 1343 (void)soap; (void)a; /* appease -Wall -Werror */ 1344 soap_default_string(soap, &a->key);1345 1344 soap_default_string(soap, &a->uri); 1346 1345 } … … 1349 1348 { 1350 1349 (void)soap; (void)a; /* appease -Wall -Werror */ 1351 soap_serialize_string(soap, &a->key);1352 1350 soap_serialize_string(soap, &a->uri); 1353 1351 } … … 1365 1363 if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ns1__delete_USCOREinstance), type)) 1366 1364 return soap->error; 1367 if (soap_out_string(soap, "key", -1, &a->key, ""))1368 return soap->error;1369 1365 if (soap_out_string(soap, "uri", -1, &a->uri, "")) 1370 1366 return soap->error; … … 1382 1378 SOAP_FMAC3 struct ns1__delete_USCOREinstance * SOAP_FMAC4 soap_in_ns1__delete_USCOREinstance(struct soap *soap, const char *tag, struct ns1__delete_USCOREinstance *a, const char *type) 1383 1379 { 1384 size_t soap_flag_key = 1;1385 1380 size_t soap_flag_uri = 1; 1386 1381 if (soap_element_begin_in(soap, tag, 0, type)) … … 1394 1389 for (;;) 1395 1390 { soap->error = SOAP_TAG_MISMATCH; 1396 if (soap_flag_key && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG))1397 if (soap_in_string(soap, "key", &a->key, "xsd:string"))1398 { soap_flag_key--;1399 continue;1400 }1401 1391 if (soap_flag_uri && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) 1402 1392 if (soap_in_string(soap, "uri", &a->uri, "xsd:string"))
Note:
See TracChangeset
for help on using the changeset viewer.
