Changeset 23729
- Timestamp:
- Apr 7, 2009, 3:11:50 PM (17 years ago)
- Location:
- branches/neb_distrib_20081210/Nebulous/nebclient
- Files:
-
- 11 edited
-
src (modified) (1 prop)
-
src/nebulous.h (modified) (4 diffs)
-
src/soapC.c (modified) (12 diffs)
-
src/soapClient.c (modified) (4 diffs)
-
src/soapClientLib.c (modified) (1 diff)
-
src/soapH.h (modified) (1 diff)
-
src/soapServer.c (modified) (3 diffs)
-
src/soapServerLib.c (modified) (1 diff)
-
src/soapStub.h (modified) (4 diffs)
-
tests/tap (modified) (1 prop)
-
tests/tap/src (modified) (1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/neb_distrib_20081210/Nebulous/nebclient/src
- Property svn:ignore
-
old new 1 Makefile.in 1 2 .deps 3 Makefile 4 soapClientLib.c 5 nebulous.h 6 soapClient.c 7 soapStub.h 8 soapC.c 9 soapH.h 10 soapServerLib.c 11 soapServer.c 2 12 .libs 3 Makefile4 Makefile.in5 SOAP.nsmap6 libnebclient.la7 nebclient.lo8 nebulous.h9 soapC.c10 soapC.lo11 soapClient.c12 soapClient.lo13 soapClientLib.c14 soapH.h15 soapServer.c16 soapServerLib.c17 soapStub.h18 stdsoap2.lo19 xmalloc.lo
-
- Property svn:ignore
-
branches/neb_distrib_20081210/Nebulous/nebclient/src/nebulous.h
r20986 r23729 1 1 /* src/nebulous.h 2 Generated by wsdl2h 1.2.1 1from nebulous.wsdl and typemap.dat3 200 8-12-11 21:42:13 GMT2 Generated by wsdl2h 1.2.12 from nebulous.wsdl and typemap.dat 3 2009-04-03 00:34:43 GMT 4 4 Copyright (C) 2001-2008 Robert van Engelen, Genivia Inc. All Rights Reserved. 5 5 This part of the software is released under one of the following licenses: … … 808 808 NULL, // char *action = NULL selects default action for this operation 809 809 // request parameters: 810 char* key,811 810 char* uri, 812 811 // response parameters: … … 820 819 struct soap *soap, 821 820 // request parameters: 822 char* key,823 821 char* uri, 824 822 // response parameters: … … 833 831 //gsoap ns1 service method-action: delete_USCOREinstance urn:Nebulous/Server/SOAP#delete_instance 834 832 int ns1__delete_USCOREinstance( 835 char* key, ///< Request parameter836 833 char* uri, ///< Request parameter 837 834 int *result ///< Response parameter -
branches/neb_distrib_20081210/Nebulous/nebclient/src/soapC.c
r20986 r23729 1 1 /* soapC.c 2 Generated by gSOAP 2.7.1 1from src/nebulous.h2 Generated by gSOAP 2.7.12 from src/nebulous.h 3 3 Copyright(C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved. 4 4 This part of the software is released under one of the following licenses: … … 12 12 #endif 13 13 14 SOAP_SOURCE_STAMP("@(#) soapC.c ver 2.7.1 1 2008-12-11 21:42:14GMT")14 SOAP_SOURCE_STAMP("@(#) soapC.c ver 2.7.12 2009-04-03 00:34:43 GMT") 15 15 16 16 … … 676 676 677 677 SOAP_FMAC3 char * SOAP_FMAC4 soap_in_byte(struct soap *soap, const char *tag, char *a, const char *type) 678 { 679 return soap_inbyte(soap, tag, a, type, SOAP_TYPE_byte); 678 { char *p; 679 p = soap_inbyte(soap, tag, a, type, SOAP_TYPE_byte); 680 return p; 680 681 } 681 682 … … 711 712 712 713 SOAP_FMAC3 int * SOAP_FMAC4 soap_in_int(struct soap *soap, const char *tag, int *a, const char *type) 713 { 714 return soap_inint(soap, tag, a, type, SOAP_TYPE_int); 714 { int *p; 715 p = soap_inint(soap, tag, a, type, SOAP_TYPE_int); 716 return p; 715 717 } 716 718 … … 1342 1344 { 1343 1345 (void)soap; (void)a; /* appease -Wall -Werror */ 1344 soap_default_string(soap, &a->key);1345 1346 soap_default_string(soap, &a->uri); 1346 1347 } … … 1349 1350 { 1350 1351 (void)soap; (void)a; /* appease -Wall -Werror */ 1351 soap_serialize_string(soap, &a->key);1352 1352 soap_serialize_string(soap, &a->uri); 1353 1353 } … … 1365 1365 if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_ns1__delete_USCOREinstance), type)) 1366 1366 return soap->error; 1367 if (soap_out_string(soap, "key", -1, &a->key, ""))1368 return soap->error;1369 1367 if (soap_out_string(soap, "uri", -1, &a->uri, "")) 1370 1368 return soap->error; … … 1382 1380 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 1381 { 1384 size_t soap_flag_key = 1;1385 1382 size_t soap_flag_uri = 1; 1386 1383 if (soap_element_begin_in(soap, tag, 0, type)) … … 1394 1391 for (;;) 1395 1392 { 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 1393 if (soap_flag_uri && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG)) 1402 1394 if (soap_in_string(soap, "uri", &a->uri, "xsd:string")) … … 3394 3386 { 3395 3387 int i, n = a->__size; 3396 char *t = soap_putsize(soap, "xsd:string", a->__size);3388 char *t = a->__ptr ? soap_putsize(soap, "xsd:string", a->__size) : NULL; 3397 3389 id = soap_element_id(soap, tag, id, a, (struct soap_array*)&a->__ptr, 1, type, SOAP_TYPE_ArrayOfString); 3398 3390 if (id < 0) … … 4036 4028 4037 4029 SOAP_FMAC3 char * * SOAP_FMAC4 soap_in__QName(struct soap *soap, const char *tag, char **a, const char *type) 4038 { 4039 return soap_instring(soap, tag, a, type, SOAP_TYPE__QName, 2, -1, -1); 4030 { char **p; 4031 p = soap_instring(soap, tag, a, type, SOAP_TYPE__QName, 2, -1, -1); 4032 return p; 4040 4033 } 4041 4034 … … 4076 4069 4077 4070 SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_string(struct soap *soap, const char *tag, char **a, const char *type) 4078 { 4079 return soap_instring(soap, tag, a, type, SOAP_TYPE_string, 1, -1, -1); 4071 { char **p; 4072 p = soap_instring(soap, tag, a, type, SOAP_TYPE_string, 1, -1, -1); 4073 return p; 4080 4074 } 4081 4075 -
branches/neb_distrib_20081210/Nebulous/nebclient/src/soapClient.c
r20986 r23729 1 1 /* soapClient.c 2 Generated by gSOAP 2.7.1 1from src/nebulous.h2 Generated by gSOAP 2.7.12 from src/nebulous.h 3 3 Copyright(C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved. 4 4 This part of the software is released under one of the following licenses: … … 10 10 #endif 11 11 12 SOAP_SOURCE_STAMP("@(#) soapClient.c ver 2.7.1 1 2008-12-11 21:42:13 GMT")12 SOAP_SOURCE_STAMP("@(#) soapClient.c ver 2.7.12 2009-04-03 00:34:43 GMT") 13 13 14 14 … … 700 700 } 701 701 702 SOAP_FMAC5 int SOAP_FMAC6 soap_call_ns1__delete_USCOREinstance(struct soap *soap, const char *soap_endpoint, const char *soap_action, char * key, char *uri, int *result)702 SOAP_FMAC5 int SOAP_FMAC6 soap_call_ns1__delete_USCOREinstance(struct soap *soap, const char *soap_endpoint, const char *soap_action, char *uri, int *result) 703 703 { struct ns1__delete_USCOREinstance soap_tmp_ns1__delete_USCOREinstance; 704 704 struct ns1__delete_USCOREinstanceResponse *soap_tmp_ns1__delete_USCOREinstanceResponse; … … 708 708 soap_action = "urn:Nebulous/Server/SOAP#delete_instance"; 709 709 soap->encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/"; 710 soap_tmp_ns1__delete_USCOREinstance.key = key;711 710 soap_tmp_ns1__delete_USCOREinstance.uri = uri; 712 711 soap_begin(soap); -
branches/neb_distrib_20081210/Nebulous/nebclient/src/soapClientLib.c
r20900 r23729 1 1 /* soapClientLib.c 2 Generated by gSOAP 2.7.1 1from src/nebulous.h2 Generated by gSOAP 2.7.12 from src/nebulous.h 3 3 Copyright(C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved. 4 4 This part of the software is released under one of the following licenses: -
branches/neb_distrib_20081210/Nebulous/nebclient/src/soapH.h
r20208 r23729 1 1 /* soapH.h 2 Generated by gSOAP 2.7.1 1from src/nebulous.h2 Generated by gSOAP 2.7.12 from src/nebulous.h 3 3 Copyright(C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved. 4 4 This part of the software is released under one of the following licenses: -
branches/neb_distrib_20081210/Nebulous/nebclient/src/soapServer.c
r20986 r23729 1 1 /* soapServer.c 2 Generated by gSOAP 2.7.1 1from src/nebulous.h2 Generated by gSOAP 2.7.12 from src/nebulous.h 3 3 Copyright(C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved. 4 4 This part of the software is released under one of the following licenses: … … 10 10 #endif 11 11 12 SOAP_SOURCE_STAMP("@(#) soapServer.c ver 2.7.1 1 2008-12-11 21:42:13 GMT")12 SOAP_SOURCE_STAMP("@(#) soapServer.c ver 2.7.12 2009-04-03 00:34:43 GMT") 13 13 14 14 … … 643 643 || soap_end_recv(soap)) 644 644 return soap->error; 645 soap->error = ns1__delete_USCOREinstance(soap, soap_tmp_ns1__delete_USCOREinstance. key, soap_tmp_ns1__delete_USCOREinstance.uri, &soap_tmp_int);645 soap->error = ns1__delete_USCOREinstance(soap, soap_tmp_ns1__delete_USCOREinstance.uri, &soap_tmp_int); 646 646 if (soap->error) 647 647 return soap->error; -
branches/neb_distrib_20081210/Nebulous/nebclient/src/soapServerLib.c
r20900 r23729 1 1 /* soapServerLib.c 2 Generated by gSOAP 2.7.1 1from src/nebulous.h2 Generated by gSOAP 2.7.12 from src/nebulous.h 3 3 Copyright(C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved. 4 4 This part of the software is released under one of the following licenses: -
branches/neb_distrib_20081210/Nebulous/nebclient/src/soapStub.h
r20986 r23729 1 1 /* soapStub.h 2 Generated by gSOAP 2.7.1 1from src/nebulous.h2 Generated by gSOAP 2.7.12 from src/nebulous.h 3 3 Copyright(C) 2000-2008, Robert van Engelen, Genivia Inc. All Rights Reserved. 4 4 This part of the software is released under one of the following licenses: … … 283 283 struct ns1__delete_USCOREinstance 284 284 { 285 char *key; /* optional element of type xsd:string */286 285 char *uri; /* optional element of type xsd:string */ 287 286 }; … … 433 432 SOAP_FMAC5 int SOAP_FMAC6 ns1__find_USCOREinstances(struct soap*, char *key, char *volume, struct ns1__find_USCOREinstancesResponse *_param_3); 434 433 435 SOAP_FMAC5 int SOAP_FMAC6 ns1__delete_USCOREinstance(struct soap*, char * key, char *uri, int *result);434 SOAP_FMAC5 int SOAP_FMAC6 ns1__delete_USCOREinstance(struct soap*, char *uri, int *result); 436 435 437 436 SOAP_FMAC5 int SOAP_FMAC6 ns1__stat_USCOREobject(struct soap*, char *key, struct ns1__stat_USCOREobjectResponse *_param_4); … … 468 467 SOAP_FMAC5 int SOAP_FMAC6 soap_call_ns1__find_USCOREinstances(struct soap *soap, const char *soap_endpoint, const char *soap_action, char *key, char *volume, struct ns1__find_USCOREinstancesResponse *_param_3); 469 468 470 SOAP_FMAC5 int SOAP_FMAC6 soap_call_ns1__delete_USCOREinstance(struct soap *soap, const char *soap_endpoint, const char *soap_action, char * key, char *uri, int *result);469 SOAP_FMAC5 int SOAP_FMAC6 soap_call_ns1__delete_USCOREinstance(struct soap *soap, const char *soap_endpoint, const char *soap_action, char *uri, int *result); 471 470 472 471 SOAP_FMAC5 int SOAP_FMAC6 soap_call_ns1__stat_USCOREobject(struct soap *soap, const char *soap_endpoint, const char *soap_action, char *key, struct ns1__stat_USCOREobjectResponse *_param_4); -
branches/neb_distrib_20081210/Nebulous/nebclient/tests/tap
- Property svn:ignore
-
old new 1 *.bb 2 *.bbg 3 *.da 4 .in 1 configure 2 Makefile.in 3 config.log 4 depcomp 5 config.status 6 config.guess 7 ltmain.sh 8 config.sub 9 autom4te.cache 10 libtool 11 missing 12 aclocal.m4 5 13 Makefile 6 Makefile.in7 aclocal.m48 autom4te.cache9 config.guess10 config.log11 config.status12 config.sub13 configure14 depcomp15 gmon.out16 14 install-sh 17 libtool 18 ltmain.sh 19 missing 15 src/Makefile.in 16 src/stamp-h1 17 src/config.h 18 src/config.h.in 20 19 src/.deps 21 20 src/Makefile 22 src/Makefile.in23 src/config.h24 src/config.h.in25 src/stamp-h1
-
- Property svn:ignore
-
branches/neb_distrib_20081210/Nebulous/nebclient/tests/tap/src
- Property svn:ignore
-
old new 1 *.bb2 *.bbg3 *.da4 .deps5 .libs6 Makefile7 1 Makefile.in 2 ignore 3 stamp-h1 8 4 config.h 9 5 config.h.in 10 gmon.out 11 ignore 12 libtap.la 13 stamp-h1 14 tap.lo 6 .deps 7 Makefile 8 .libs
-
- Property svn:ignore
Note:
See TracChangeset
for help on using the changeset viewer.
