[dss-commits] r8820 - dss/trunk/webservices
dss-commits at forum.digitalstrom.org
dss-commits at forum.digitalstrom.org
Mon Oct 5 17:04:57 CEST 2009
Author: pstaehlin
Date: 2009-10-05 17:04:57 +0200 (Mon, 05 Oct 2009)
New Revision: 8820
Modified:
dss/trunk/webservices/dss.wsdl
dss/trunk/webservices/dss.xsd
dss/trunk/webservices/model_soap.cpp
dss/trunk/webservices/model_soap.h
dss/trunk/webservices/soapC.cpp
dss/trunk/webservices/soapH.h
dss/trunk/webservices/soapServer.cpp
dss/trunk/webservices/soapStub.h
dss/trunk/webservices/soapdssObject.h
Log:
Allow rescanning the apartment from SOAP
Closes #73
Modified: dss/trunk/webservices/dss.wsdl
===================================================================
--- dss/trunk/webservices/dss.wsdl 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/dss.wsdl 2009-10-05 15:04:57 UTC (rev 8820)
@@ -749,6 +749,39 @@
</complexType>
</element>
<!-- operation request element -->
+ <element name="ApartmentRescan">
+ <complexType>
+ <sequence>
+ <element name="token" type="xsd:int" minOccurs="1" maxOccurs="1"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation response element -->
+ <element name="ApartmentRescanResponse">
+ <complexType>
+ <sequence>
+ <element name="result" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation request element -->
+ <element name="CircuitRescan">
+ <complexType>
+ <sequence>
+ <element name="token" type="xsd:int" minOccurs="1" maxOccurs="1"/>
+ <element name="dsid" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation response element -->
+ <element name="CircuitRescanResponse">
+ <complexType>
+ <sequence>
+ <element name="result" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation request element -->
<element name="ZoneTurnOn">
<complexType>
<sequence>
@@ -1971,6 +2004,22 @@
<part name="parameters" element="dss:ApartmentSaveSceneResponse"/>
</message>
+<message name="ApartmentRescanRequest">
+ <part name="parameters" element="dss:ApartmentRescan"/>
+</message>
+
+<message name="ApartmentRescanResponse">
+ <part name="parameters" element="dss:ApartmentRescanResponse"/>
+</message>
+
+<message name="CircuitRescanRequest">
+ <part name="parameters" element="dss:CircuitRescan"/>
+</message>
+
+<message name="CircuitRescanResponse">
+ <part name="parameters" element="dss:CircuitRescanResponse"/>
+</message>
+
<message name="ZoneTurnOnRequest">
<part name="parameters" element="dss:ZoneTurnOn"/>
</message>
@@ -2577,6 +2626,16 @@
<input message="tns:ApartmentSaveSceneRequest"/>
<output message="tns:ApartmentSaveSceneResponse"/>
</operation>
+ <operation name="ApartmentRescan">
+ <documentation>Service definition of function dss__ApartmentRescan</documentation>
+ <input message="tns:ApartmentRescanRequest"/>
+ <output message="tns:ApartmentRescanResponse"/>
+ </operation>
+ <operation name="CircuitRescan">
+ <documentation>Service definition of function dss__CircuitRescan</documentation>
+ <input message="tns:CircuitRescanRequest"/>
+ <output message="tns:CircuitRescanResponse"/>
+ </operation>
<operation name="ZoneTurnOn">
<documentation>Service definition of function dss__ZoneTurnOn</documentation>
<input message="tns:ZoneTurnOnRequest"/>
@@ -3200,6 +3259,24 @@
<SOAP:body parts="parameters" use="literal"/>
</output>
</operation>
+ <operation name="ApartmentRescan">
+ <SOAP:operation soapAction=""/>
+ <input>
+ <SOAP:body parts="parameters" use="literal"/>
+ </input>
+ <output>
+ <SOAP:body parts="parameters" use="literal"/>
+ </output>
+ </operation>
+ <operation name="CircuitRescan">
+ <SOAP:operation soapAction=""/>
+ <input>
+ <SOAP:body parts="parameters" use="literal"/>
+ </input>
+ <output>
+ <SOAP:body parts="parameters" use="literal"/>
+ </output>
+ </operation>
<operation name="ZoneTurnOn">
<SOAP:operation soapAction=""/>
<input>
Modified: dss/trunk/webservices/dss.xsd
===================================================================
--- dss/trunk/webservices/dss.xsd 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/dss.xsd 2009-10-05 15:04:57 UTC (rev 8820)
@@ -733,6 +733,39 @@
</complexType>
</element>
<!-- operation request element -->
+ <element name="ApartmentRescan">
+ <complexType>
+ <sequence>
+ <element name="token" type="xsd:int" minOccurs="1" maxOccurs="1"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation response element -->
+ <element name="ApartmentRescanResponse">
+ <complexType>
+ <sequence>
+ <element name="result" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation request element -->
+ <element name="CircuitRescan">
+ <complexType>
+ <sequence>
+ <element name="token" type="xsd:int" minOccurs="1" maxOccurs="1"/>
+ <element name="dsid" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation response element -->
+ <element name="CircuitRescanResponse">
+ <complexType>
+ <sequence>
+ <element name="result" type="xsd:boolean" minOccurs="1" maxOccurs="1"/>
+ </sequence>
+ </complexType>
+ </element>
+ <!-- operation request element -->
<element name="ZoneTurnOn">
<complexType>
<sequence>
Modified: dss/trunk/webservices/model_soap.cpp
===================================================================
--- dss/trunk/webservices/model_soap.cpp 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/model_soap.cpp 2009-10-05 15:04:57 UTC (rev 8820)
@@ -419,9 +419,48 @@
}
return SOAP_OK;
-}
+} // dss__ApartmentGetZoneIDs
+int dss__ApartmentRescan(struct soap *soap, int _token, bool& result) {
+ if(!IsAuthorized(soap, _token)) {
+ return NotAuthorized(soap);
+ }
+ dss::Apartment& apt = dss::DSS::getInstance()->getApartment();
+ apt.initializeFromBus();
+
+ return SOAP_OK;
+} // dss__ApartmentRescan
+
+//==================================================== Circuit
+
+int dss__CircuitRescan(struct soap *soap, int _token, char* _dsid, bool& result) {
+ if(!IsAuthorized(soap, _token)) {
+ return NotAuthorized(soap);
+ }
+
+ dss::Apartment& apt = dss::DSS::getInstance()->getApartment();
+ dss::dsid_t dsid;
+ try {
+ dsid = dss::dsid_t::fromString(_dsid);
+ } catch(std::invalid_argument&) {
+ return soap_sender_fault(soap, "Error parsing dsid", NULL);
+ }
+ try {
+ dss::Modulator& mod = apt.getModulatorByDSID(dsid);
+ try {
+ result = apt.scanModulator(mod);
+ } catch(std::runtime_error&) {
+ soap_receiver_fault(soap, "Error scanning bus", NULL);
+ }
+ } catch(dss::ItemNotFoundException&) {
+ return soap_sender_fault(soap, "Could not find modulator", NULL);
+ }
+
+ return SOAP_OK;
+} // dss__CircuitRescan
+
+
//==================================================== Manipulation
//--------------------------- Set
Modified: dss/trunk/webservices/model_soap.h
===================================================================
--- dss/trunk/webservices/model_soap.h 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/model_soap.h 2009-10-05 15:04:57 UTC (rev 8820)
@@ -125,7 +125,13 @@
/** Saves the scene _sceneNr on all devices contained int the group _groupID. */
int dss__ApartmentSaveScene(int _token, int _groupID, int _sceneNr, bool& result);
+/** Rescans the bus for new devices/circuits */
+int dss__ApartmentRescan(int _token, bool& result);
+//--------------------------- Circuit
+/** Rescans the circuit for new/lost devices */
+int dss__CircuitRescan(int _token, char* _dsid, bool& result);
+
//--------------------------- Zone
/** Sends a turn on command to all devices contained in the zone/group */
Modified: dss/trunk/webservices/soapC.cpp
===================================================================
--- dss/trunk/webservices/soapC.cpp 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/soapC.cpp 2009-10-05 15:04:57 UTC (rev 8820)
@@ -7,7 +7,7 @@
#include "soapH.h"
-SOAP_SOURCE_STAMP("@(#) soapC.cpp ver 2.7.10 2009-09-22 13:48:12 GMT")
+SOAP_SOURCE_STAMP("@(#) soapC.cpp ver 2.7.10 2009-10-05 14:18:40 GMT")
#ifndef WITH_NOGLOBAL
@@ -381,6 +381,14 @@
return soap_in_dss__ZoneTurnOn(soap, NULL, NULL, "dss:ZoneTurnOn");
case SOAP_TYPE_dss__ZoneTurnOnResponse:
return soap_in_dss__ZoneTurnOnResponse(soap, NULL, NULL, "dss:ZoneTurnOnResponse");
+ case SOAP_TYPE_dss__CircuitRescan:
+ return soap_in_dss__CircuitRescan(soap, NULL, NULL, "dss:CircuitRescan");
+ case SOAP_TYPE_dss__CircuitRescanResponse:
+ return soap_in_dss__CircuitRescanResponse(soap, NULL, NULL, "dss:CircuitRescanResponse");
+ case SOAP_TYPE_dss__ApartmentRescan:
+ return soap_in_dss__ApartmentRescan(soap, NULL, NULL, "dss:ApartmentRescan");
+ case SOAP_TYPE_dss__ApartmentRescanResponse:
+ return soap_in_dss__ApartmentRescanResponse(soap, NULL, NULL, "dss:ApartmentRescanResponse");
case SOAP_TYPE_dss__ApartmentSaveScene:
return soap_in_dss__ApartmentSaveScene(soap, NULL, NULL, "dss:ApartmentSaveScene");
case SOAP_TYPE_dss__ApartmentSaveSceneResponse:
@@ -1008,6 +1016,22 @@
{ *type = SOAP_TYPE_dss__ZoneTurnOnResponse;
return soap_in_dss__ZoneTurnOnResponse(soap, NULL, NULL, NULL);
}
+ if (!soap_match_tag(soap, t, "dss:CircuitRescan"))
+ { *type = SOAP_TYPE_dss__CircuitRescan;
+ return soap_in_dss__CircuitRescan(soap, NULL, NULL, NULL);
+ }
+ if (!soap_match_tag(soap, t, "dss:CircuitRescanResponse"))
+ { *type = SOAP_TYPE_dss__CircuitRescanResponse;
+ return soap_in_dss__CircuitRescanResponse(soap, NULL, NULL, NULL);
+ }
+ if (!soap_match_tag(soap, t, "dss:ApartmentRescan"))
+ { *type = SOAP_TYPE_dss__ApartmentRescan;
+ return soap_in_dss__ApartmentRescan(soap, NULL, NULL, NULL);
+ }
+ if (!soap_match_tag(soap, t, "dss:ApartmentRescanResponse"))
+ { *type = SOAP_TYPE_dss__ApartmentRescanResponse;
+ return soap_in_dss__ApartmentRescanResponse(soap, NULL, NULL, NULL);
+ }
if (!soap_match_tag(soap, t, "dss:ApartmentSaveScene"))
{ *type = SOAP_TYPE_dss__ApartmentSaveScene;
return soap_in_dss__ApartmentSaveScene(soap, NULL, NULL, NULL);
@@ -1640,6 +1664,14 @@
return soap_out_dss__ZoneTurnOn(soap, tag, id, (const struct dss__ZoneTurnOn *)ptr, "dss:ZoneTurnOn");
case SOAP_TYPE_dss__ZoneTurnOnResponse:
return soap_out_dss__ZoneTurnOnResponse(soap, tag, id, (const struct dss__ZoneTurnOnResponse *)ptr, "dss:ZoneTurnOnResponse");
+ case SOAP_TYPE_dss__CircuitRescan:
+ return soap_out_dss__CircuitRescan(soap, tag, id, (const struct dss__CircuitRescan *)ptr, "dss:CircuitRescan");
+ case SOAP_TYPE_dss__CircuitRescanResponse:
+ return soap_out_dss__CircuitRescanResponse(soap, tag, id, (const struct dss__CircuitRescanResponse *)ptr, "dss:CircuitRescanResponse");
+ case SOAP_TYPE_dss__ApartmentRescan:
+ return soap_out_dss__ApartmentRescan(soap, tag, id, (const struct dss__ApartmentRescan *)ptr, "dss:ApartmentRescan");
+ case SOAP_TYPE_dss__ApartmentRescanResponse:
+ return soap_out_dss__ApartmentRescanResponse(soap, tag, id, (const struct dss__ApartmentRescanResponse *)ptr, "dss:ApartmentRescanResponse");
case SOAP_TYPE_dss__ApartmentSaveScene:
return soap_out_dss__ApartmentSaveScene(soap, tag, id, (const struct dss__ApartmentSaveScene *)ptr, "dss:ApartmentSaveScene");
case SOAP_TYPE_dss__ApartmentSaveSceneResponse:
@@ -2135,6 +2167,18 @@
case SOAP_TYPE_dss__ZoneTurnOnResponse:
soap_serialize_dss__ZoneTurnOnResponse(soap, (const struct dss__ZoneTurnOnResponse *)ptr);
break;
+ case SOAP_TYPE_dss__CircuitRescan:
+ soap_serialize_dss__CircuitRescan(soap, (const struct dss__CircuitRescan *)ptr);
+ break;
+ case SOAP_TYPE_dss__CircuitRescanResponse:
+ soap_serialize_dss__CircuitRescanResponse(soap, (const struct dss__CircuitRescanResponse *)ptr);
+ break;
+ case SOAP_TYPE_dss__ApartmentRescan:
+ soap_serialize_dss__ApartmentRescan(soap, (const struct dss__ApartmentRescan *)ptr);
+ break;
+ case SOAP_TYPE_dss__ApartmentRescanResponse:
+ soap_serialize_dss__ApartmentRescanResponse(soap, (const struct dss__ApartmentRescanResponse *)ptr);
+ break;
case SOAP_TYPE_dss__ApartmentSaveScene:
soap_serialize_dss__ApartmentSaveScene(soap, (const struct dss__ApartmentSaveScene *)ptr);
break;
@@ -2568,6 +2612,14 @@
return (void*)soap_instantiate_dss__ApartmentSaveSceneResponse(soap, -1, type, arrayType, n);
case SOAP_TYPE_dss__ApartmentSaveScene:
return (void*)soap_instantiate_dss__ApartmentSaveScene(soap, -1, type, arrayType, n);
+ case SOAP_TYPE_dss__ApartmentRescanResponse:
+ return (void*)soap_instantiate_dss__ApartmentRescanResponse(soap, -1, type, arrayType, n);
+ case SOAP_TYPE_dss__ApartmentRescan:
+ return (void*)soap_instantiate_dss__ApartmentRescan(soap, -1, type, arrayType, n);
+ case SOAP_TYPE_dss__CircuitRescanResponse:
+ return (void*)soap_instantiate_dss__CircuitRescanResponse(soap, -1, type, arrayType, n);
+ case SOAP_TYPE_dss__CircuitRescan:
+ return (void*)soap_instantiate_dss__CircuitRescan(soap, -1, type, arrayType, n);
case SOAP_TYPE_dss__ZoneTurnOnResponse:
return (void*)soap_instantiate_dss__ZoneTurnOnResponse(soap, -1, type, arrayType, n);
case SOAP_TYPE_dss__ZoneTurnOn:
@@ -3301,6 +3353,30 @@
else
delete[] (struct dss__ApartmentSaveScene*)p->ptr;
break;
+ case SOAP_TYPE_dss__ApartmentRescanResponse:
+ if (p->size < 0)
+ delete (struct dss__ApartmentRescanResponse*)p->ptr;
+ else
+ delete[] (struct dss__ApartmentRescanResponse*)p->ptr;
+ break;
+ case SOAP_TYPE_dss__ApartmentRescan:
+ if (p->size < 0)
+ delete (struct dss__ApartmentRescan*)p->ptr;
+ else
+ delete[] (struct dss__ApartmentRescan*)p->ptr;
+ break;
+ case SOAP_TYPE_dss__CircuitRescanResponse:
+ if (p->size < 0)
+ delete (struct dss__CircuitRescanResponse*)p->ptr;
+ else
+ delete[] (struct dss__CircuitRescanResponse*)p->ptr;
+ break;
+ case SOAP_TYPE_dss__CircuitRescan:
+ if (p->size < 0)
+ delete (struct dss__CircuitRescan*)p->ptr;
+ else
+ delete[] (struct dss__CircuitRescan*)p->ptr;
+ break;
case SOAP_TYPE_dss__ZoneTurnOnResponse:
if (p->size < 0)
delete (struct dss__ZoneTurnOnResponse*)p->ptr;
@@ -17344,6 +17420,467 @@
*(struct dss__ZoneTurnOnResponse*)p = *(struct dss__ZoneTurnOnResponse*)q;
}
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__CircuitRescan(struct soap *soap, struct dss__CircuitRescan *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+ soap_default_int(soap, &a->_token);
+ soap_default_string(soap, &a->_dsid);
+}
+
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__CircuitRescan(struct soap *soap, const struct dss__CircuitRescan *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+ soap_serialize_string(soap, &a->_dsid);
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__CircuitRescan(struct soap *soap, const struct dss__CircuitRescan *a, const char *tag, const char *type)
+{
+ register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_dss__CircuitRescan);
+ if (soap_out_dss__CircuitRescan(soap, tag, id, a, type))
+ return soap->error;
+ return soap_putindependent(soap);
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__CircuitRescan(struct soap *soap, const char *tag, int id, const struct dss__CircuitRescan *a, const char *type)
+{
+ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_dss__CircuitRescan), type))
+ return soap->error;
+ if (soap_out_int(soap, "token", -1, &a->_token, ""))
+ return soap->error;
+ if (soap_out_string(soap, "dsid", -1, &a->_dsid, ""))
+ return soap->error;
+ return soap_element_end_out(soap, tag);
+}
+
+SOAP_FMAC3 struct dss__CircuitRescan * SOAP_FMAC4 soap_get_dss__CircuitRescan(struct soap *soap, struct dss__CircuitRescan *p, const char *tag, const char *type)
+{
+ if ((p = soap_in_dss__CircuitRescan(soap, tag, p, type)))
+ if (soap_getindependent(soap))
+ return NULL;
+ return p;
+}
+
+SOAP_FMAC3 struct dss__CircuitRescan * SOAP_FMAC4 soap_in_dss__CircuitRescan(struct soap *soap, const char *tag, struct dss__CircuitRescan *a, const char *type)
+{
+ short soap_flag__token = 1, soap_flag__dsid = 1;
+ if (soap_element_begin_in(soap, tag, 0, type))
+ return NULL;
+ a = (struct dss__CircuitRescan *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_dss__CircuitRescan, sizeof(struct dss__CircuitRescan), 0, NULL, NULL, NULL);
+ if (!a)
+ return NULL;
+ soap_default_dss__CircuitRescan(soap, a);
+ if (soap->body && !*soap->href)
+ {
+ for (;;)
+ { soap->error = SOAP_TAG_MISMATCH;
+ if (soap_flag__token && soap->error == SOAP_TAG_MISMATCH)
+ if (soap_in_int(soap, NULL, &a->_token, "xsd:int"))
+ { soap_flag__token--;
+ continue;
+ }
+ if (soap_flag__dsid && (soap->error == SOAP_TAG_MISMATCH || soap->error == SOAP_NO_TAG))
+ if (soap_in_string(soap, NULL, &a->_dsid, "xsd:string"))
+ { soap_flag__dsid--;
+ continue;
+ }
+ if (soap->error == SOAP_TAG_MISMATCH)
+ soap->error = soap_ignore_element(soap);
+ if (soap->error == SOAP_NO_TAG)
+ break;
+ if (soap->error)
+ return NULL;
+ }
+ if (soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ else
+ { a = (struct dss__CircuitRescan *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_dss__CircuitRescan, 0, sizeof(struct dss__CircuitRescan), 0, NULL);
+ if (soap->body && soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ if ((soap->mode & SOAP_XML_STRICT) && (soap_flag__token > 0))
+ { soap->error = SOAP_OCCURS;
+ return NULL;
+ }
+ return a;
+}
+
+SOAP_FMAC5 struct dss__CircuitRescan * SOAP_FMAC6 soap_new_dss__CircuitRescan(struct soap *soap, int n)
+{ return soap_instantiate_dss__CircuitRescan(soap, n, NULL, NULL, NULL);
+}
+
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__CircuitRescan(struct soap *soap, struct dss__CircuitRescan *p)
+{ soap_delete(soap, p);
+}
+
+SOAP_FMAC3 struct dss__CircuitRescan * SOAP_FMAC4 soap_instantiate_dss__CircuitRescan(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_dss__CircuitRescan(%d, %s, %s)\n", n, type?type:"", arrayType?arrayType:""));
+ struct soap_clist *cp = soap_link(soap, NULL, SOAP_TYPE_dss__CircuitRescan, n, soap_fdelete);
+ if (!cp)
+ return NULL;
+ if (n < 0)
+ { cp->ptr = (void*)new struct dss__CircuitRescan;
+ if (size)
+ *size = sizeof(struct dss__CircuitRescan);
+ }
+ else
+ { cp->ptr = (void*)new struct dss__CircuitRescan[n];
+ if (!cp->ptr)
+ { soap->error = SOAP_EOM;
+ return NULL;
+ }
+ if (size)
+ *size = n * sizeof(struct dss__CircuitRescan);
+ }
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated location=%p\n", cp->ptr));
+ return (struct dss__CircuitRescan*)cp->ptr;
+}
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__CircuitRescan(struct soap *soap, int st, int tt, void *p, size_t len, const void *q, size_t n)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copying struct dss__CircuitRescan %p -> %p\n", q, p));
+ *(struct dss__CircuitRescan*)p = *(struct dss__CircuitRescan*)q;
+}
+
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__CircuitRescanResponse(struct soap *soap, struct dss__CircuitRescanResponse *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+ soap_default_bool(soap, &a->result);
+}
+
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__CircuitRescanResponse(struct soap *soap, const struct dss__CircuitRescanResponse *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__CircuitRescanResponse(struct soap *soap, const struct dss__CircuitRescanResponse *a, const char *tag, const char *type)
+{
+ register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_dss__CircuitRescanResponse);
+ if (soap_out_dss__CircuitRescanResponse(soap, tag, id, a, type))
+ return soap->error;
+ return soap_putindependent(soap);
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__CircuitRescanResponse(struct soap *soap, const char *tag, int id, const struct dss__CircuitRescanResponse *a, const char *type)
+{
+ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_dss__CircuitRescanResponse), type))
+ return soap->error;
+ if (soap_out_bool(soap, "result", -1, &a->result, ""))
+ return soap->error;
+ return soap_element_end_out(soap, tag);
+}
+
+SOAP_FMAC3 struct dss__CircuitRescanResponse * SOAP_FMAC4 soap_get_dss__CircuitRescanResponse(struct soap *soap, struct dss__CircuitRescanResponse *p, const char *tag, const char *type)
+{
+ if ((p = soap_in_dss__CircuitRescanResponse(soap, tag, p, type)))
+ if (soap_getindependent(soap))
+ return NULL;
+ return p;
+}
+
+SOAP_FMAC3 struct dss__CircuitRescanResponse * SOAP_FMAC4 soap_in_dss__CircuitRescanResponse(struct soap *soap, const char *tag, struct dss__CircuitRescanResponse *a, const char *type)
+{
+ short soap_flag_result = 1;
+ if (soap_element_begin_in(soap, tag, 0, type))
+ return NULL;
+ a = (struct dss__CircuitRescanResponse *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_dss__CircuitRescanResponse, sizeof(struct dss__CircuitRescanResponse), 0, NULL, NULL, NULL);
+ if (!a)
+ return NULL;
+ soap_default_dss__CircuitRescanResponse(soap, a);
+ if (soap->body && !*soap->href)
+ {
+ for (;;)
+ { soap->error = SOAP_TAG_MISMATCH;
+ if (soap_flag_result && soap->error == SOAP_TAG_MISMATCH)
+ if (soap_in_bool(soap, "result", &a->result, "xsd:boolean"))
+ { soap_flag_result--;
+ continue;
+ }
+ if (soap->error == SOAP_TAG_MISMATCH)
+ soap->error = soap_ignore_element(soap);
+ if (soap->error == SOAP_NO_TAG)
+ break;
+ if (soap->error)
+ return NULL;
+ }
+ if (soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ else
+ { a = (struct dss__CircuitRescanResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_dss__CircuitRescanResponse, 0, sizeof(struct dss__CircuitRescanResponse), 0, NULL);
+ if (soap->body && soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_result > 0))
+ { soap->error = SOAP_OCCURS;
+ return NULL;
+ }
+ return a;
+}
+
+SOAP_FMAC5 struct dss__CircuitRescanResponse * SOAP_FMAC6 soap_new_dss__CircuitRescanResponse(struct soap *soap, int n)
+{ return soap_instantiate_dss__CircuitRescanResponse(soap, n, NULL, NULL, NULL);
+}
+
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__CircuitRescanResponse(struct soap *soap, struct dss__CircuitRescanResponse *p)
+{ soap_delete(soap, p);
+}
+
+SOAP_FMAC3 struct dss__CircuitRescanResponse * SOAP_FMAC4 soap_instantiate_dss__CircuitRescanResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_dss__CircuitRescanResponse(%d, %s, %s)\n", n, type?type:"", arrayType?arrayType:""));
+ struct soap_clist *cp = soap_link(soap, NULL, SOAP_TYPE_dss__CircuitRescanResponse, n, soap_fdelete);
+ if (!cp)
+ return NULL;
+ if (n < 0)
+ { cp->ptr = (void*)new struct dss__CircuitRescanResponse;
+ if (size)
+ *size = sizeof(struct dss__CircuitRescanResponse);
+ }
+ else
+ { cp->ptr = (void*)new struct dss__CircuitRescanResponse[n];
+ if (!cp->ptr)
+ { soap->error = SOAP_EOM;
+ return NULL;
+ }
+ if (size)
+ *size = n * sizeof(struct dss__CircuitRescanResponse);
+ }
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated location=%p\n", cp->ptr));
+ return (struct dss__CircuitRescanResponse*)cp->ptr;
+}
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__CircuitRescanResponse(struct soap *soap, int st, int tt, void *p, size_t len, const void *q, size_t n)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copying struct dss__CircuitRescanResponse %p -> %p\n", q, p));
+ *(struct dss__CircuitRescanResponse*)p = *(struct dss__CircuitRescanResponse*)q;
+}
+
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentRescan(struct soap *soap, struct dss__ApartmentRescan *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+ soap_default_int(soap, &a->_token);
+}
+
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentRescan(struct soap *soap, const struct dss__ApartmentRescan *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__ApartmentRescan(struct soap *soap, const struct dss__ApartmentRescan *a, const char *tag, const char *type)
+{
+ register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_dss__ApartmentRescan);
+ if (soap_out_dss__ApartmentRescan(soap, tag, id, a, type))
+ return soap->error;
+ return soap_putindependent(soap);
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__ApartmentRescan(struct soap *soap, const char *tag, int id, const struct dss__ApartmentRescan *a, const char *type)
+{
+ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_dss__ApartmentRescan), type))
+ return soap->error;
+ if (soap_out_int(soap, "token", -1, &a->_token, ""))
+ return soap->error;
+ return soap_element_end_out(soap, tag);
+}
+
+SOAP_FMAC3 struct dss__ApartmentRescan * SOAP_FMAC4 soap_get_dss__ApartmentRescan(struct soap *soap, struct dss__ApartmentRescan *p, const char *tag, const char *type)
+{
+ if ((p = soap_in_dss__ApartmentRescan(soap, tag, p, type)))
+ if (soap_getindependent(soap))
+ return NULL;
+ return p;
+}
+
+SOAP_FMAC3 struct dss__ApartmentRescan * SOAP_FMAC4 soap_in_dss__ApartmentRescan(struct soap *soap, const char *tag, struct dss__ApartmentRescan *a, const char *type)
+{
+ short soap_flag__token = 1;
+ if (soap_element_begin_in(soap, tag, 0, type))
+ return NULL;
+ a = (struct dss__ApartmentRescan *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_dss__ApartmentRescan, sizeof(struct dss__ApartmentRescan), 0, NULL, NULL, NULL);
+ if (!a)
+ return NULL;
+ soap_default_dss__ApartmentRescan(soap, a);
+ if (soap->body && !*soap->href)
+ {
+ for (;;)
+ { soap->error = SOAP_TAG_MISMATCH;
+ if (soap_flag__token && soap->error == SOAP_TAG_MISMATCH)
+ if (soap_in_int(soap, NULL, &a->_token, "xsd:int"))
+ { soap_flag__token--;
+ continue;
+ }
+ if (soap->error == SOAP_TAG_MISMATCH)
+ soap->error = soap_ignore_element(soap);
+ if (soap->error == SOAP_NO_TAG)
+ break;
+ if (soap->error)
+ return NULL;
+ }
+ if (soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ else
+ { a = (struct dss__ApartmentRescan *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_dss__ApartmentRescan, 0, sizeof(struct dss__ApartmentRescan), 0, NULL);
+ if (soap->body && soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ if ((soap->mode & SOAP_XML_STRICT) && (soap_flag__token > 0))
+ { soap->error = SOAP_OCCURS;
+ return NULL;
+ }
+ return a;
+}
+
+SOAP_FMAC5 struct dss__ApartmentRescan * SOAP_FMAC6 soap_new_dss__ApartmentRescan(struct soap *soap, int n)
+{ return soap_instantiate_dss__ApartmentRescan(soap, n, NULL, NULL, NULL);
+}
+
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__ApartmentRescan(struct soap *soap, struct dss__ApartmentRescan *p)
+{ soap_delete(soap, p);
+}
+
+SOAP_FMAC3 struct dss__ApartmentRescan * SOAP_FMAC4 soap_instantiate_dss__ApartmentRescan(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_dss__ApartmentRescan(%d, %s, %s)\n", n, type?type:"", arrayType?arrayType:""));
+ struct soap_clist *cp = soap_link(soap, NULL, SOAP_TYPE_dss__ApartmentRescan, n, soap_fdelete);
+ if (!cp)
+ return NULL;
+ if (n < 0)
+ { cp->ptr = (void*)new struct dss__ApartmentRescan;
+ if (size)
+ *size = sizeof(struct dss__ApartmentRescan);
+ }
+ else
+ { cp->ptr = (void*)new struct dss__ApartmentRescan[n];
+ if (!cp->ptr)
+ { soap->error = SOAP_EOM;
+ return NULL;
+ }
+ if (size)
+ *size = n * sizeof(struct dss__ApartmentRescan);
+ }
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated location=%p\n", cp->ptr));
+ return (struct dss__ApartmentRescan*)cp->ptr;
+}
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentRescan(struct soap *soap, int st, int tt, void *p, size_t len, const void *q, size_t n)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copying struct dss__ApartmentRescan %p -> %p\n", q, p));
+ *(struct dss__ApartmentRescan*)p = *(struct dss__ApartmentRescan*)q;
+}
+
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentRescanResponse(struct soap *soap, struct dss__ApartmentRescanResponse *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+ soap_default_bool(soap, &a->result);
+}
+
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentRescanResponse(struct soap *soap, const struct dss__ApartmentRescanResponse *a)
+{
+ (void)soap; (void)a; /* appease -Wall -Werror */
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__ApartmentRescanResponse(struct soap *soap, const struct dss__ApartmentRescanResponse *a, const char *tag, const char *type)
+{
+ register int id = soap_embed(soap, (void*)a, NULL, 0, tag, SOAP_TYPE_dss__ApartmentRescanResponse);
+ if (soap_out_dss__ApartmentRescanResponse(soap, tag, id, a, type))
+ return soap->error;
+ return soap_putindependent(soap);
+}
+
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__ApartmentRescanResponse(struct soap *soap, const char *tag, int id, const struct dss__ApartmentRescanResponse *a, const char *type)
+{
+ if (soap_element_begin_out(soap, tag, soap_embedded_id(soap, id, a, SOAP_TYPE_dss__ApartmentRescanResponse), type))
+ return soap->error;
+ if (soap_out_bool(soap, "result", -1, &a->result, ""))
+ return soap->error;
+ return soap_element_end_out(soap, tag);
+}
+
+SOAP_FMAC3 struct dss__ApartmentRescanResponse * SOAP_FMAC4 soap_get_dss__ApartmentRescanResponse(struct soap *soap, struct dss__ApartmentRescanResponse *p, const char *tag, const char *type)
+{
+ if ((p = soap_in_dss__ApartmentRescanResponse(soap, tag, p, type)))
+ if (soap_getindependent(soap))
+ return NULL;
+ return p;
+}
+
+SOAP_FMAC3 struct dss__ApartmentRescanResponse * SOAP_FMAC4 soap_in_dss__ApartmentRescanResponse(struct soap *soap, const char *tag, struct dss__ApartmentRescanResponse *a, const char *type)
+{
+ short soap_flag_result = 1;
+ if (soap_element_begin_in(soap, tag, 0, type))
+ return NULL;
+ a = (struct dss__ApartmentRescanResponse *)soap_id_enter(soap, soap->id, a, SOAP_TYPE_dss__ApartmentRescanResponse, sizeof(struct dss__ApartmentRescanResponse), 0, NULL, NULL, NULL);
+ if (!a)
+ return NULL;
+ soap_default_dss__ApartmentRescanResponse(soap, a);
+ if (soap->body && !*soap->href)
+ {
+ for (;;)
+ { soap->error = SOAP_TAG_MISMATCH;
+ if (soap_flag_result && soap->error == SOAP_TAG_MISMATCH)
+ if (soap_in_bool(soap, "result", &a->result, "xsd:boolean"))
+ { soap_flag_result--;
+ continue;
+ }
+ if (soap->error == SOAP_TAG_MISMATCH)
+ soap->error = soap_ignore_element(soap);
+ if (soap->error == SOAP_NO_TAG)
+ break;
+ if (soap->error)
+ return NULL;
+ }
+ if (soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ else
+ { a = (struct dss__ApartmentRescanResponse *)soap_id_forward(soap, soap->href, (void*)a, 0, SOAP_TYPE_dss__ApartmentRescanResponse, 0, sizeof(struct dss__ApartmentRescanResponse), 0, NULL);
+ if (soap->body && soap_element_end_in(soap, tag))
+ return NULL;
+ }
+ if ((soap->mode & SOAP_XML_STRICT) && (soap_flag_result > 0))
+ { soap->error = SOAP_OCCURS;
+ return NULL;
+ }
+ return a;
+}
+
+SOAP_FMAC5 struct dss__ApartmentRescanResponse * SOAP_FMAC6 soap_new_dss__ApartmentRescanResponse(struct soap *soap, int n)
+{ return soap_instantiate_dss__ApartmentRescanResponse(soap, n, NULL, NULL, NULL);
+}
+
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__ApartmentRescanResponse(struct soap *soap, struct dss__ApartmentRescanResponse *p)
+{ soap_delete(soap, p);
+}
+
+SOAP_FMAC3 struct dss__ApartmentRescanResponse * SOAP_FMAC4 soap_instantiate_dss__ApartmentRescanResponse(struct soap *soap, int n, const char *type, const char *arrayType, size_t *size)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "soap_instantiate_dss__ApartmentRescanResponse(%d, %s, %s)\n", n, type?type:"", arrayType?arrayType:""));
+ struct soap_clist *cp = soap_link(soap, NULL, SOAP_TYPE_dss__ApartmentRescanResponse, n, soap_fdelete);
+ if (!cp)
+ return NULL;
+ if (n < 0)
+ { cp->ptr = (void*)new struct dss__ApartmentRescanResponse;
+ if (size)
+ *size = sizeof(struct dss__ApartmentRescanResponse);
+ }
+ else
+ { cp->ptr = (void*)new struct dss__ApartmentRescanResponse[n];
+ if (!cp->ptr)
+ { soap->error = SOAP_EOM;
+ return NULL;
+ }
+ if (size)
+ *size = n * sizeof(struct dss__ApartmentRescanResponse);
+ }
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Instantiated location=%p\n", cp->ptr));
+ return (struct dss__ApartmentRescanResponse*)cp->ptr;
+}
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentRescanResponse(struct soap *soap, int st, int tt, void *p, size_t len, const void *q, size_t n)
+{
+ DBGLOG(TEST, SOAP_MESSAGE(fdebug, "Copying struct dss__ApartmentRescanResponse %p -> %p\n", q, p));
+ *(struct dss__ApartmentRescanResponse*)p = *(struct dss__ApartmentRescanResponse*)q;
+}
+
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentSaveScene(struct soap *soap, struct dss__ApartmentSaveScene *a)
{
(void)soap; (void)a; /* appease -Wall -Werror */
Modified: dss/trunk/webservices/soapH.h
===================================================================
--- dss/trunk/webservices/soapH.h 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/soapH.h 2009-10-05 15:04:57 UTC (rev 8820)
@@ -137,7 +137,7 @@
SOAP_FMAC3S int SOAP_FMAC4S soap_s2bool(struct soap*, const char*, bool *);
#ifndef SOAP_TYPE_dss__Event
-#define SOAP_TYPE_dss__Event (271)
+#define SOAP_TYPE_dss__Event (277)
#endif
SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__Event(struct soap*, const char*, int, const dss__Event *, const char*);
@@ -165,7 +165,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_SOAP_ENV__Fault
-#define SOAP_TYPE_SOAP_ENV__Fault (314)
+#define SOAP_TYPE_SOAP_ENV__Fault (320)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Fault(struct soap*, struct SOAP_ENV__Fault *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Fault(struct soap*, const struct SOAP_ENV__Fault *);
@@ -183,7 +183,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_SOAP_ENV__Reason
-#define SOAP_TYPE_SOAP_ENV__Reason (313)
+#define SOAP_TYPE_SOAP_ENV__Reason (319)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Reason(struct soap*, const struct SOAP_ENV__Reason *);
@@ -201,7 +201,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_SOAP_ENV__Detail
-#define SOAP_TYPE_SOAP_ENV__Detail (310)
+#define SOAP_TYPE_SOAP_ENV__Detail (316)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Detail(struct soap*, const struct SOAP_ENV__Detail *);
@@ -219,7 +219,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_SOAP_ENV__Code
-#define SOAP_TYPE_SOAP_ENV__Code (308)
+#define SOAP_TYPE_SOAP_ENV__Code (314)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Code(struct soap*, const struct SOAP_ENV__Code *);
@@ -237,7 +237,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_SOAP_ENV__Header
-#define SOAP_TYPE_SOAP_ENV__Header (307)
+#define SOAP_TYPE_SOAP_ENV__Header (313)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_SOAP_ENV__Header(struct soap*, struct SOAP_ENV__Header *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_SOAP_ENV__Header(struct soap*, const struct SOAP_ENV__Header *);
@@ -253,7 +253,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetChildren
-#define SOAP_TYPE_dss__PropertyGetChildren (306)
+#define SOAP_TYPE_dss__PropertyGetChildren (312)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetChildren(struct soap*, struct dss__PropertyGetChildren *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetChildren(struct soap*, const struct dss__PropertyGetChildren *);
@@ -267,7 +267,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetChildren(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetChildrenResponse
-#define SOAP_TYPE_dss__PropertyGetChildrenResponse (305)
+#define SOAP_TYPE_dss__PropertyGetChildrenResponse (311)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetChildrenResponse(struct soap*, struct dss__PropertyGetChildrenResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetChildrenResponse(struct soap*, const struct dss__PropertyGetChildrenResponse *);
@@ -281,7 +281,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetChildrenResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetBool
-#define SOAP_TYPE_dss__PropertyGetBool (303)
+#define SOAP_TYPE_dss__PropertyGetBool (309)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetBool(struct soap*, struct dss__PropertyGetBool *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetBool(struct soap*, const struct dss__PropertyGetBool *);
@@ -295,7 +295,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetBool(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetBoolResponse
-#define SOAP_TYPE_dss__PropertyGetBoolResponse (302)
+#define SOAP_TYPE_dss__PropertyGetBoolResponse (308)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetBoolResponse(struct soap*, struct dss__PropertyGetBoolResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetBoolResponse(struct soap*, const struct dss__PropertyGetBoolResponse *);
@@ -309,7 +309,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetBoolResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetString
-#define SOAP_TYPE_dss__PropertyGetString (300)
+#define SOAP_TYPE_dss__PropertyGetString (306)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetString(struct soap*, struct dss__PropertyGetString *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetString(struct soap*, const struct dss__PropertyGetString *);
@@ -323,7 +323,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetString(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetStringResponse
-#define SOAP_TYPE_dss__PropertyGetStringResponse (299)
+#define SOAP_TYPE_dss__PropertyGetStringResponse (305)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetStringResponse(struct soap*, struct dss__PropertyGetStringResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetStringResponse(struct soap*, const struct dss__PropertyGetStringResponse *);
@@ -337,7 +337,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetStringResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetInt
-#define SOAP_TYPE_dss__PropertyGetInt (297)
+#define SOAP_TYPE_dss__PropertyGetInt (303)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetInt(struct soap*, struct dss__PropertyGetInt *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetInt(struct soap*, const struct dss__PropertyGetInt *);
@@ -351,7 +351,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetInt(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetIntResponse
-#define SOAP_TYPE_dss__PropertyGetIntResponse (296)
+#define SOAP_TYPE_dss__PropertyGetIntResponse (302)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetIntResponse(struct soap*, struct dss__PropertyGetIntResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetIntResponse(struct soap*, const struct dss__PropertyGetIntResponse *);
@@ -365,7 +365,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetIntResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertySetBool
-#define SOAP_TYPE_dss__PropertySetBool (294)
+#define SOAP_TYPE_dss__PropertySetBool (300)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertySetBool(struct soap*, struct dss__PropertySetBool *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertySetBool(struct soap*, const struct dss__PropertySetBool *);
@@ -379,7 +379,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertySetBool(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertySetBoolResponse
-#define SOAP_TYPE_dss__PropertySetBoolResponse (293)
+#define SOAP_TYPE_dss__PropertySetBoolResponse (299)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertySetBoolResponse(struct soap*, struct dss__PropertySetBoolResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertySetBoolResponse(struct soap*, const struct dss__PropertySetBoolResponse *);
@@ -393,7 +393,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertySetBoolResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertySetString
-#define SOAP_TYPE_dss__PropertySetString (291)
+#define SOAP_TYPE_dss__PropertySetString (297)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertySetString(struct soap*, struct dss__PropertySetString *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertySetString(struct soap*, const struct dss__PropertySetString *);
@@ -407,7 +407,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertySetString(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertySetStringResponse
-#define SOAP_TYPE_dss__PropertySetStringResponse (290)
+#define SOAP_TYPE_dss__PropertySetStringResponse (296)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertySetStringResponse(struct soap*, struct dss__PropertySetStringResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertySetStringResponse(struct soap*, const struct dss__PropertySetStringResponse *);
@@ -421,7 +421,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertySetStringResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertySetInt
-#define SOAP_TYPE_dss__PropertySetInt (288)
+#define SOAP_TYPE_dss__PropertySetInt (294)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertySetInt(struct soap*, struct dss__PropertySetInt *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertySetInt(struct soap*, const struct dss__PropertySetInt *);
@@ -435,7 +435,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertySetInt(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertySetIntResponse
-#define SOAP_TYPE_dss__PropertySetIntResponse (287)
+#define SOAP_TYPE_dss__PropertySetIntResponse (293)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertySetIntResponse(struct soap*, struct dss__PropertySetIntResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertySetIntResponse(struct soap*, const struct dss__PropertySetIntResponse *);
@@ -449,7 +449,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertySetIntResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetType
-#define SOAP_TYPE_dss__PropertyGetType (285)
+#define SOAP_TYPE_dss__PropertyGetType (291)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetType(struct soap*, struct dss__PropertyGetType *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetType(struct soap*, const struct dss__PropertyGetType *);
@@ -463,7 +463,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetType(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__PropertyGetTypeResponse
-#define SOAP_TYPE_dss__PropertyGetTypeResponse (284)
+#define SOAP_TYPE_dss__PropertyGetTypeResponse (290)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__PropertyGetTypeResponse(struct soap*, struct dss__PropertyGetTypeResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__PropertyGetTypeResponse(struct soap*, const struct dss__PropertyGetTypeResponse *);
@@ -477,7 +477,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__PropertyGetTypeResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__EventSubscribeTo
-#define SOAP_TYPE_dss__EventSubscribeTo (282)
+#define SOAP_TYPE_dss__EventSubscribeTo (288)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__EventSubscribeTo(struct soap*, struct dss__EventSubscribeTo *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__EventSubscribeTo(struct soap*, const struct dss__EventSubscribeTo *);
@@ -491,7 +491,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__EventSubscribeTo(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__EventSubscribeToResponse
-#define SOAP_TYPE_dss__EventSubscribeToResponse (281)
+#define SOAP_TYPE_dss__EventSubscribeToResponse (287)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__EventSubscribeToResponse(struct soap*, struct dss__EventSubscribeToResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__EventSubscribeToResponse(struct soap*, const struct dss__EventSubscribeToResponse *);
@@ -505,7 +505,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__EventSubscribeToResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__EventWaitFor
-#define SOAP_TYPE_dss__EventWaitFor (279)
+#define SOAP_TYPE_dss__EventWaitFor (285)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__EventWaitFor(struct soap*, struct dss__EventWaitFor *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__EventWaitFor(struct soap*, const struct dss__EventWaitFor *);
@@ -519,7 +519,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__EventWaitFor(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__EventWaitForResponse
-#define SOAP_TYPE_dss__EventWaitForResponse (278)
+#define SOAP_TYPE_dss__EventWaitForResponse (284)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__EventWaitForResponse(struct soap*, struct dss__EventWaitForResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__EventWaitForResponse(struct soap*, const struct dss__EventWaitForResponse *);
@@ -533,7 +533,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__EventWaitForResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__EventRaise
-#define SOAP_TYPE_dss__EventRaise (274)
+#define SOAP_TYPE_dss__EventRaise (280)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__EventRaise(struct soap*, struct dss__EventRaise *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__EventRaise(struct soap*, const struct dss__EventRaise *);
@@ -547,7 +547,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__EventRaise(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__EventRaiseResponse
-#define SOAP_TYPE_dss__EventRaiseResponse (273)
+#define SOAP_TYPE_dss__EventRaiseResponse (279)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__EventRaiseResponse(struct soap*, struct dss__EventRaiseResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__EventRaiseResponse(struct soap*, const struct dss__EventRaiseResponse *);
@@ -561,7 +561,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__EventRaiseResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__SwitchGetGroupID
-#define SOAP_TYPE_dss__SwitchGetGroupID (270)
+#define SOAP_TYPE_dss__SwitchGetGroupID (276)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__SwitchGetGroupID(struct soap*, struct dss__SwitchGetGroupID *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__SwitchGetGroupID(struct soap*, const struct dss__SwitchGetGroupID *);
@@ -575,7 +575,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__SwitchGetGroupID(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__SwitchGetGroupIDResponse
-#define SOAP_TYPE_dss__SwitchGetGroupIDResponse (269)
+#define SOAP_TYPE_dss__SwitchGetGroupIDResponse (275)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__SwitchGetGroupIDResponse(struct soap*, struct dss__SwitchGetGroupIDResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__SwitchGetGroupIDResponse(struct soap*, const struct dss__SwitchGetGroupIDResponse *);
@@ -589,7 +589,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__SwitchGetGroupIDResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetFunctionID
-#define SOAP_TYPE_dss__DeviceGetFunctionID (267)
+#define SOAP_TYPE_dss__DeviceGetFunctionID (273)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetFunctionID(struct soap*, struct dss__DeviceGetFunctionID *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetFunctionID(struct soap*, const struct dss__DeviceGetFunctionID *);
@@ -603,7 +603,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetFunctionID(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetFunctionIDResponse
-#define SOAP_TYPE_dss__DeviceGetFunctionIDResponse (266)
+#define SOAP_TYPE_dss__DeviceGetFunctionIDResponse (272)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetFunctionIDResponse(struct soap*, struct dss__DeviceGetFunctionIDResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetFunctionIDResponse(struct soap*, const struct dss__DeviceGetFunctionIDResponse *);
@@ -617,7 +617,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetFunctionIDResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__GroupRemoveDevice
-#define SOAP_TYPE_dss__GroupRemoveDevice (264)
+#define SOAP_TYPE_dss__GroupRemoveDevice (270)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__GroupRemoveDevice(struct soap*, struct dss__GroupRemoveDevice *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__GroupRemoveDevice(struct soap*, const struct dss__GroupRemoveDevice *);
@@ -631,7 +631,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__GroupRemoveDevice(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__GroupRemoveDeviceResponse
-#define SOAP_TYPE_dss__GroupRemoveDeviceResponse (263)
+#define SOAP_TYPE_dss__GroupRemoveDeviceResponse (269)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__GroupRemoveDeviceResponse(struct soap*, struct dss__GroupRemoveDeviceResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__GroupRemoveDeviceResponse(struct soap*, const struct dss__GroupRemoveDeviceResponse *);
@@ -645,7 +645,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__GroupRemoveDeviceResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__GroupAddDevice
-#define SOAP_TYPE_dss__GroupAddDevice (261)
+#define SOAP_TYPE_dss__GroupAddDevice (267)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__GroupAddDevice(struct soap*, struct dss__GroupAddDevice *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__GroupAddDevice(struct soap*, const struct dss__GroupAddDevice *);
@@ -659,7 +659,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__GroupAddDevice(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__GroupAddDeviceResponse
-#define SOAP_TYPE_dss__GroupAddDeviceResponse (260)
+#define SOAP_TYPE_dss__GroupAddDeviceResponse (266)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__GroupAddDeviceResponse(struct soap*, struct dss__GroupAddDeviceResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__GroupAddDeviceResponse(struct soap*, const struct dss__GroupAddDeviceResponse *);
@@ -673,7 +673,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__GroupAddDeviceResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__GroupRemoveUserGroup
-#define SOAP_TYPE_dss__GroupRemoveUserGroup (258)
+#define SOAP_TYPE_dss__GroupRemoveUserGroup (264)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__GroupRemoveUserGroup(struct soap*, struct dss__GroupRemoveUserGroup *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__GroupRemoveUserGroup(struct soap*, const struct dss__GroupRemoveUserGroup *);
@@ -687,7 +687,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__GroupRemoveUserGroup(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__GroupRemoveUserGroupResponse
-#define SOAP_TYPE_dss__GroupRemoveUserGroupResponse (257)
+#define SOAP_TYPE_dss__GroupRemoveUserGroupResponse (263)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__GroupRemoveUserGroupResponse(struct soap*, struct dss__GroupRemoveUserGroupResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__GroupRemoveUserGroupResponse(struct soap*, const struct dss__GroupRemoveUserGroupResponse *);
@@ -701,7 +701,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__GroupRemoveUserGroupResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentAllocateUserGroup
-#define SOAP_TYPE_dss__ApartmentAllocateUserGroup (255)
+#define SOAP_TYPE_dss__ApartmentAllocateUserGroup (261)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentAllocateUserGroup(struct soap*, struct dss__ApartmentAllocateUserGroup *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentAllocateUserGroup(struct soap*, const struct dss__ApartmentAllocateUserGroup *);
@@ -715,7 +715,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentAllocateUserGroup(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentAllocateUserGroupResponse
-#define SOAP_TYPE_dss__ApartmentAllocateUserGroupResponse (254)
+#define SOAP_TYPE_dss__ApartmentAllocateUserGroupResponse (260)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentAllocateUserGroupResponse(struct soap*, struct dss__ApartmentAllocateUserGroupResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentAllocateUserGroupResponse(struct soap*, const struct dss__ApartmentAllocateUserGroupResponse *);
@@ -729,7 +729,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentAllocateUserGroupResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__Zone_SetName
-#define SOAP_TYPE_dss__Zone_SetName (252)
+#define SOAP_TYPE_dss__Zone_SetName (258)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__Zone_SetName(struct soap*, struct dss__Zone_SetName *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__Zone_SetName(struct soap*, const struct dss__Zone_SetName *);
@@ -743,7 +743,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__Zone_SetName(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__Zone_SetNameResponse
-#define SOAP_TYPE_dss__Zone_SetNameResponse (251)
+#define SOAP_TYPE_dss__Zone_SetNameResponse (257)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__Zone_SetNameResponse(struct soap*, struct dss__Zone_SetNameResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__Zone_SetNameResponse(struct soap*, const struct dss__Zone_SetNameResponse *);
@@ -757,7 +757,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__Zone_SetNameResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__Zone_RemoveDevice
-#define SOAP_TYPE_dss__Zone_RemoveDevice (249)
+#define SOAP_TYPE_dss__Zone_RemoveDevice (255)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__Zone_RemoveDevice(struct soap*, struct dss__Zone_RemoveDevice *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__Zone_RemoveDevice(struct soap*, const struct dss__Zone_RemoveDevice *);
@@ -771,7 +771,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__Zone_RemoveDevice(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__Zone_RemoveDeviceResponse
-#define SOAP_TYPE_dss__Zone_RemoveDeviceResponse (248)
+#define SOAP_TYPE_dss__Zone_RemoveDeviceResponse (254)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__Zone_RemoveDeviceResponse(struct soap*, struct dss__Zone_RemoveDeviceResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__Zone_RemoveDeviceResponse(struct soap*, const struct dss__Zone_RemoveDeviceResponse *);
@@ -785,7 +785,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__Zone_RemoveDeviceResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__Zone_AddDevice
-#define SOAP_TYPE_dss__Zone_AddDevice (246)
+#define SOAP_TYPE_dss__Zone_AddDevice (252)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__Zone_AddDevice(struct soap*, struct dss__Zone_AddDevice *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__Zone_AddDevice(struct soap*, const struct dss__Zone_AddDevice *);
@@ -799,7 +799,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__Zone_AddDevice(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__Zone_AddDeviceResponse
-#define SOAP_TYPE_dss__Zone_AddDeviceResponse (245)
+#define SOAP_TYPE_dss__Zone_AddDeviceResponse (251)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__Zone_AddDeviceResponse(struct soap*, struct dss__Zone_AddDeviceResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__Zone_AddDeviceResponse(struct soap*, const struct dss__Zone_AddDeviceResponse *);
@@ -813,7 +813,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__Zone_AddDeviceResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentDeleteZone
-#define SOAP_TYPE_dss__ApartmentDeleteZone (243)
+#define SOAP_TYPE_dss__ApartmentDeleteZone (249)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentDeleteZone(struct soap*, struct dss__ApartmentDeleteZone *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentDeleteZone(struct soap*, const struct dss__ApartmentDeleteZone *);
@@ -827,7 +827,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentDeleteZone(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentDeleteZoneResponse
-#define SOAP_TYPE_dss__ApartmentDeleteZoneResponse (242)
+#define SOAP_TYPE_dss__ApartmentDeleteZoneResponse (248)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentDeleteZoneResponse(struct soap*, struct dss__ApartmentDeleteZoneResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentDeleteZoneResponse(struct soap*, const struct dss__ApartmentDeleteZoneResponse *);
@@ -841,7 +841,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentDeleteZoneResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentAllocateZone
-#define SOAP_TYPE_dss__ApartmentAllocateZone (240)
+#define SOAP_TYPE_dss__ApartmentAllocateZone (246)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentAllocateZone(struct soap*, struct dss__ApartmentAllocateZone *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentAllocateZone(struct soap*, const struct dss__ApartmentAllocateZone *);
@@ -855,7 +855,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentAllocateZone(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentAllocateZoneResponse
-#define SOAP_TYPE_dss__ApartmentAllocateZoneResponse (239)
+#define SOAP_TYPE_dss__ApartmentAllocateZoneResponse (245)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentAllocateZoneResponse(struct soap*, struct dss__ApartmentAllocateZoneResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentAllocateZoneResponse(struct soap*, const struct dss__ApartmentAllocateZoneResponse *);
@@ -869,7 +869,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentAllocateZoneResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ModulatorGetName
-#define SOAP_TYPE_dss__ModulatorGetName (237)
+#define SOAP_TYPE_dss__ModulatorGetName (243)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ModulatorGetName(struct soap*, struct dss__ModulatorGetName *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ModulatorGetName(struct soap*, const struct dss__ModulatorGetName *);
@@ -883,7 +883,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ModulatorGetName(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ModulatorGetNameResponse
-#define SOAP_TYPE_dss__ModulatorGetNameResponse (236)
+#define SOAP_TYPE_dss__ModulatorGetNameResponse (242)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ModulatorGetNameResponse(struct soap*, struct dss__ModulatorGetNameResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ModulatorGetNameResponse(struct soap*, const struct dss__ModulatorGetNameResponse *);
@@ -897,7 +897,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ModulatorGetNameResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentGetModulatorIDs
-#define SOAP_TYPE_dss__ApartmentGetModulatorIDs (234)
+#define SOAP_TYPE_dss__ApartmentGetModulatorIDs (240)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentGetModulatorIDs(struct soap*, struct dss__ApartmentGetModulatorIDs *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentGetModulatorIDs(struct soap*, const struct dss__ApartmentGetModulatorIDs *);
@@ -911,7 +911,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentGetModulatorIDs(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ApartmentGetModulatorIDsResponse
-#define SOAP_TYPE_dss__ApartmentGetModulatorIDsResponse (233)
+#define SOAP_TYPE_dss__ApartmentGetModulatorIDsResponse (239)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentGetModulatorIDsResponse(struct soap*, struct dss__ApartmentGetModulatorIDsResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentGetModulatorIDsResponse(struct soap*, const struct dss__ApartmentGetModulatorIDsResponse *);
@@ -925,7 +925,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentGetModulatorIDsResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ModulatorGetPowerConsumption
-#define SOAP_TYPE_dss__ModulatorGetPowerConsumption (231)
+#define SOAP_TYPE_dss__ModulatorGetPowerConsumption (237)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ModulatorGetPowerConsumption(struct soap*, struct dss__ModulatorGetPowerConsumption *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ModulatorGetPowerConsumption(struct soap*, const struct dss__ModulatorGetPowerConsumption *);
@@ -939,7 +939,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ModulatorGetPowerConsumption(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ModulatorGetPowerConsumptionResponse
-#define SOAP_TYPE_dss__ModulatorGetPowerConsumptionResponse (230)
+#define SOAP_TYPE_dss__ModulatorGetPowerConsumptionResponse (236)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ModulatorGetPowerConsumptionResponse(struct soap*, struct dss__ModulatorGetPowerConsumptionResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ModulatorGetPowerConsumptionResponse(struct soap*, const struct dss__ModulatorGetPowerConsumptionResponse *);
@@ -953,7 +953,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ModulatorGetPowerConsumptionResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetZoneID
-#define SOAP_TYPE_dss__DeviceGetZoneID (227)
+#define SOAP_TYPE_dss__DeviceGetZoneID (233)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetZoneID(struct soap*, struct dss__DeviceGetZoneID *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetZoneID(struct soap*, const struct dss__DeviceGetZoneID *);
@@ -967,7 +967,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetZoneID(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetZoneIDResponse
-#define SOAP_TYPE_dss__DeviceGetZoneIDResponse (226)
+#define SOAP_TYPE_dss__DeviceGetZoneIDResponse (232)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetZoneIDResponse(struct soap*, struct dss__DeviceGetZoneIDResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetZoneIDResponse(struct soap*, const struct dss__DeviceGetZoneIDResponse *);
@@ -981,7 +981,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetZoneIDResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetName
-#define SOAP_TYPE_dss__DeviceGetName (224)
+#define SOAP_TYPE_dss__DeviceGetName (230)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetName(struct soap*, struct dss__DeviceGetName *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetName(struct soap*, const struct dss__DeviceGetName *);
@@ -995,7 +995,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetName(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetNameResponse
-#define SOAP_TYPE_dss__DeviceGetNameResponse (223)
+#define SOAP_TYPE_dss__DeviceGetNameResponse (229)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetNameResponse(struct soap*, struct dss__DeviceGetNameResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetNameResponse(struct soap*, const struct dss__DeviceGetNameResponse *);
@@ -1009,7 +1009,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetNameResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceSaveScene
-#define SOAP_TYPE_dss__DeviceSaveScene (220)
+#define SOAP_TYPE_dss__DeviceSaveScene (226)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceSaveScene(struct soap*, struct dss__DeviceSaveScene *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceSaveScene(struct soap*, const struct dss__DeviceSaveScene *);
@@ -1023,7 +1023,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceSaveScene(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceSaveSceneResponse
-#define SOAP_TYPE_dss__DeviceSaveSceneResponse (219)
+#define SOAP_TYPE_dss__DeviceSaveSceneResponse (225)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceSaveSceneResponse(struct soap*, struct dss__DeviceSaveSceneResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceSaveSceneResponse(struct soap*, const struct dss__DeviceSaveSceneResponse *);
@@ -1037,7 +1037,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceSaveSceneResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceCallScene
-#define SOAP_TYPE_dss__DeviceCallScene (217)
+#define SOAP_TYPE_dss__DeviceCallScene (223)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceCallScene(struct soap*, struct dss__DeviceCallScene *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceCallScene(struct soap*, const struct dss__DeviceCallScene *);
@@ -1051,7 +1051,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceCallScene(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceCallSceneResponse
-#define SOAP_TYPE_dss__DeviceCallSceneResponse (216)
+#define SOAP_TYPE_dss__DeviceCallSceneResponse (222)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceCallSceneResponse(struct soap*, struct dss__DeviceCallSceneResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceCallSceneResponse(struct soap*, const struct dss__DeviceCallSceneResponse *);
@@ -1065,7 +1065,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceCallSceneResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetValue
-#define SOAP_TYPE_dss__DeviceGetValue (214)
+#define SOAP_TYPE_dss__DeviceGetValue (220)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetValue(struct soap*, struct dss__DeviceGetValue *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetValue(struct soap*, const struct dss__DeviceGetValue *);
@@ -1079,7 +1079,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetValue(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceGetValueResponse
-#define SOAP_TYPE_dss__DeviceGetValueResponse (213)
+#define SOAP_TYPE_dss__DeviceGetValueResponse (219)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceGetValueResponse(struct soap*, struct dss__DeviceGetValueResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceGetValueResponse(struct soap*, const struct dss__DeviceGetValueResponse *);
@@ -1093,7 +1093,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceGetValueResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceSetValue
-#define SOAP_TYPE_dss__DeviceSetValue (210)
+#define SOAP_TYPE_dss__DeviceSetValue (216)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceSetValue(struct soap*, struct dss__DeviceSetValue *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceSetValue(struct soap*, const struct dss__DeviceSetValue *);
@@ -1107,7 +1107,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceSetValue(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceSetValueResponse
-#define SOAP_TYPE_dss__DeviceSetValueResponse (209)
+#define SOAP_TYPE_dss__DeviceSetValueResponse (215)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceSetValueResponse(struct soap*, struct dss__DeviceSetValueResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceSetValueResponse(struct soap*, const struct dss__DeviceSetValueResponse *);
@@ -1121,7 +1121,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceSetValueResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceEndDim
-#define SOAP_TYPE_dss__DeviceEndDim (207)
+#define SOAP_TYPE_dss__DeviceEndDim (213)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceEndDim(struct soap*, struct dss__DeviceEndDim *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceEndDim(struct soap*, const struct dss__DeviceEndDim *);
@@ -1135,7 +1135,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceEndDim(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceEndDimResponse
-#define SOAP_TYPE_dss__DeviceEndDimResponse (206)
+#define SOAP_TYPE_dss__DeviceEndDimResponse (212)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceEndDimResponse(struct soap*, struct dss__DeviceEndDimResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceEndDimResponse(struct soap*, const struct dss__DeviceEndDimResponse *);
@@ -1149,7 +1149,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceEndDimResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceStartDim
-#define SOAP_TYPE_dss__DeviceStartDim (204)
+#define SOAP_TYPE_dss__DeviceStartDim (210)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceStartDim(struct soap*, struct dss__DeviceStartDim *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceStartDim(struct soap*, const struct dss__DeviceStartDim *);
@@ -1163,7 +1163,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceStartDim(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceStartDimResponse
-#define SOAP_TYPE_dss__DeviceStartDimResponse (203)
+#define SOAP_TYPE_dss__DeviceStartDimResponse (209)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceStartDimResponse(struct soap*, struct dss__DeviceStartDimResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceStartDimResponse(struct soap*, const struct dss__DeviceStartDimResponse *);
@@ -1177,7 +1177,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceStartDimResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceDisable
-#define SOAP_TYPE_dss__DeviceDisable (201)
+#define SOAP_TYPE_dss__DeviceDisable (207)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceDisable(struct soap*, struct dss__DeviceDisable *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceDisable(struct soap*, const struct dss__DeviceDisable *);
@@ -1191,7 +1191,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceDisable(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceDisableResponse
-#define SOAP_TYPE_dss__DeviceDisableResponse (200)
+#define SOAP_TYPE_dss__DeviceDisableResponse (206)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceDisableResponse(struct soap*, struct dss__DeviceDisableResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceDisableResponse(struct soap*, const struct dss__DeviceDisableResponse *);
@@ -1205,7 +1205,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceDisableResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceEnable
-#define SOAP_TYPE_dss__DeviceEnable (198)
+#define SOAP_TYPE_dss__DeviceEnable (204)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceEnable(struct soap*, struct dss__DeviceEnable *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceEnable(struct soap*, const struct dss__DeviceEnable *);
@@ -1219,7 +1219,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceEnable(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceEnableResponse
-#define SOAP_TYPE_dss__DeviceEnableResponse (197)
+#define SOAP_TYPE_dss__DeviceEnableResponse (203)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceEnableResponse(struct soap*, struct dss__DeviceEnableResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceEnableResponse(struct soap*, const struct dss__DeviceEnableResponse *);
@@ -1233,7 +1233,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceEnableResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceDecreaseValue
-#define SOAP_TYPE_dss__DeviceDecreaseValue (195)
+#define SOAP_TYPE_dss__DeviceDecreaseValue (201)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceDecreaseValue(struct soap*, struct dss__DeviceDecreaseValue *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceDecreaseValue(struct soap*, const struct dss__DeviceDecreaseValue *);
@@ -1247,7 +1247,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceDecreaseValue(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceDecreaseValueResponse
-#define SOAP_TYPE_dss__DeviceDecreaseValueResponse (194)
+#define SOAP_TYPE_dss__DeviceDecreaseValueResponse (200)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceDecreaseValueResponse(struct soap*, struct dss__DeviceDecreaseValueResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceDecreaseValueResponse(struct soap*, const struct dss__DeviceDecreaseValueResponse *);
@@ -1261,7 +1261,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceDecreaseValueResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceIncreaseValue
-#define SOAP_TYPE_dss__DeviceIncreaseValue (192)
+#define SOAP_TYPE_dss__DeviceIncreaseValue (198)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceIncreaseValue(struct soap*, struct dss__DeviceIncreaseValue *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceIncreaseValue(struct soap*, const struct dss__DeviceIncreaseValue *);
@@ -1275,7 +1275,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceIncreaseValue(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceIncreaseValueResponse
-#define SOAP_TYPE_dss__DeviceIncreaseValueResponse (191)
+#define SOAP_TYPE_dss__DeviceIncreaseValueResponse (197)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceIncreaseValueResponse(struct soap*, struct dss__DeviceIncreaseValueResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceIncreaseValueResponse(struct soap*, const struct dss__DeviceIncreaseValueResponse *);
@@ -1289,7 +1289,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceIncreaseValueResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceTurnOff
-#define SOAP_TYPE_dss__DeviceTurnOff (189)
+#define SOAP_TYPE_dss__DeviceTurnOff (195)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceTurnOff(struct soap*, struct dss__DeviceTurnOff *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceTurnOff(struct soap*, const struct dss__DeviceTurnOff *);
@@ -1303,7 +1303,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceTurnOff(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceTurnOffResponse
-#define SOAP_TYPE_dss__DeviceTurnOffResponse (188)
+#define SOAP_TYPE_dss__DeviceTurnOffResponse (194)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceTurnOffResponse(struct soap*, struct dss__DeviceTurnOffResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceTurnOffResponse(struct soap*, const struct dss__DeviceTurnOffResponse *);
@@ -1317,7 +1317,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceTurnOffResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceTurnOn
-#define SOAP_TYPE_dss__DeviceTurnOn (186)
+#define SOAP_TYPE_dss__DeviceTurnOn (192)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceTurnOn(struct soap*, struct dss__DeviceTurnOn *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceTurnOn(struct soap*, const struct dss__DeviceTurnOn *);
@@ -1331,7 +1331,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceTurnOn(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__DeviceTurnOnResponse
-#define SOAP_TYPE_dss__DeviceTurnOnResponse (185)
+#define SOAP_TYPE_dss__DeviceTurnOnResponse (191)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__DeviceTurnOnResponse(struct soap*, struct dss__DeviceTurnOnResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__DeviceTurnOnResponse(struct soap*, const struct dss__DeviceTurnOnResponse *);
@@ -1345,7 +1345,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__DeviceTurnOnResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneSaveScene
-#define SOAP_TYPE_dss__ZoneSaveScene (183)
+#define SOAP_TYPE_dss__ZoneSaveScene (189)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneSaveScene(struct soap*, struct dss__ZoneSaveScene *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneSaveScene(struct soap*, const struct dss__ZoneSaveScene *);
@@ -1359,7 +1359,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneSaveScene(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneSaveSceneResponse
-#define SOAP_TYPE_dss__ZoneSaveSceneResponse (182)
+#define SOAP_TYPE_dss__ZoneSaveSceneResponse (188)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneSaveSceneResponse(struct soap*, struct dss__ZoneSaveSceneResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneSaveSceneResponse(struct soap*, const struct dss__ZoneSaveSceneResponse *);
@@ -1373,7 +1373,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneSaveSceneResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneCallScene
-#define SOAP_TYPE_dss__ZoneCallScene (180)
+#define SOAP_TYPE_dss__ZoneCallScene (186)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneCallScene(struct soap*, struct dss__ZoneCallScene *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneCallScene(struct soap*, const struct dss__ZoneCallScene *);
@@ -1387,7 +1387,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneCallScene(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneCallSceneResponse
-#define SOAP_TYPE_dss__ZoneCallSceneResponse (179)
+#define SOAP_TYPE_dss__ZoneCallSceneResponse (185)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneCallSceneResponse(struct soap*, struct dss__ZoneCallSceneResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneCallSceneResponse(struct soap*, const struct dss__ZoneCallSceneResponse *);
@@ -1401,7 +1401,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneCallSceneResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneSetValue
-#define SOAP_TYPE_dss__ZoneSetValue (177)
+#define SOAP_TYPE_dss__ZoneSetValue (183)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneSetValue(struct soap*, struct dss__ZoneSetValue *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneSetValue(struct soap*, const struct dss__ZoneSetValue *);
@@ -1415,7 +1415,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneSetValue(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneSetValueResponse
-#define SOAP_TYPE_dss__ZoneSetValueResponse (176)
+#define SOAP_TYPE_dss__ZoneSetValueResponse (182)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneSetValueResponse(struct soap*, struct dss__ZoneSetValueResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneSetValueResponse(struct soap*, const struct dss__ZoneSetValueResponse *);
@@ -1429,7 +1429,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneSetValueResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneEndDim
-#define SOAP_TYPE_dss__ZoneEndDim (174)
+#define SOAP_TYPE_dss__ZoneEndDim (180)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneEndDim(struct soap*, struct dss__ZoneEndDim *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneEndDim(struct soap*, const struct dss__ZoneEndDim *);
@@ -1443,7 +1443,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneEndDim(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneEndDimResponse
-#define SOAP_TYPE_dss__ZoneEndDimResponse (173)
+#define SOAP_TYPE_dss__ZoneEndDimResponse (179)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneEndDimResponse(struct soap*, struct dss__ZoneEndDimResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneEndDimResponse(struct soap*, const struct dss__ZoneEndDimResponse *);
@@ -1457,7 +1457,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneEndDimResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneStartDim
-#define SOAP_TYPE_dss__ZoneStartDim (171)
+#define SOAP_TYPE_dss__ZoneStartDim (177)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneStartDim(struct soap*, struct dss__ZoneStartDim *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneStartDim(struct soap*, const struct dss__ZoneStartDim *);
@@ -1471,7 +1471,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneStartDim(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneStartDimResponse
-#define SOAP_TYPE_dss__ZoneStartDimResponse (170)
+#define SOAP_TYPE_dss__ZoneStartDimResponse (176)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneStartDimResponse(struct soap*, struct dss__ZoneStartDimResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneStartDimResponse(struct soap*, const struct dss__ZoneStartDimResponse *);
@@ -1485,7 +1485,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneStartDimResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneDisable
-#define SOAP_TYPE_dss__ZoneDisable (168)
+#define SOAP_TYPE_dss__ZoneDisable (174)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneDisable(struct soap*, struct dss__ZoneDisable *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneDisable(struct soap*, const struct dss__ZoneDisable *);
@@ -1499,7 +1499,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneDisable(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneDisableResponse
-#define SOAP_TYPE_dss__ZoneDisableResponse (167)
+#define SOAP_TYPE_dss__ZoneDisableResponse (173)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneDisableResponse(struct soap*, struct dss__ZoneDisableResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneDisableResponse(struct soap*, const struct dss__ZoneDisableResponse *);
@@ -1513,7 +1513,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneDisableResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneEnable
-#define SOAP_TYPE_dss__ZoneEnable (165)
+#define SOAP_TYPE_dss__ZoneEnable (171)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneEnable(struct soap*, struct dss__ZoneEnable *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneEnable(struct soap*, const struct dss__ZoneEnable *);
@@ -1527,7 +1527,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneEnable(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneEnableResponse
-#define SOAP_TYPE_dss__ZoneEnableResponse (164)
+#define SOAP_TYPE_dss__ZoneEnableResponse (170)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneEnableResponse(struct soap*, struct dss__ZoneEnableResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneEnableResponse(struct soap*, const struct dss__ZoneEnableResponse *);
@@ -1541,7 +1541,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneEnableResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneDecreaseValue
-#define SOAP_TYPE_dss__ZoneDecreaseValue (162)
+#define SOAP_TYPE_dss__ZoneDecreaseValue (168)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneDecreaseValue(struct soap*, struct dss__ZoneDecreaseValue *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneDecreaseValue(struct soap*, const struct dss__ZoneDecreaseValue *);
@@ -1555,7 +1555,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneDecreaseValue(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneDecreaseValueResponse
-#define SOAP_TYPE_dss__ZoneDecreaseValueResponse (161)
+#define SOAP_TYPE_dss__ZoneDecreaseValueResponse (167)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneDecreaseValueResponse(struct soap*, struct dss__ZoneDecreaseValueResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneDecreaseValueResponse(struct soap*, const struct dss__ZoneDecreaseValueResponse *);
@@ -1569,7 +1569,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneDecreaseValueResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneIncreaseValue
-#define SOAP_TYPE_dss__ZoneIncreaseValue (159)
+#define SOAP_TYPE_dss__ZoneIncreaseValue (165)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneIncreaseValue(struct soap*, struct dss__ZoneIncreaseValue *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneIncreaseValue(struct soap*, const struct dss__ZoneIncreaseValue *);
@@ -1583,7 +1583,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneIncreaseValue(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneIncreaseValueResponse
-#define SOAP_TYPE_dss__ZoneIncreaseValueResponse (158)
+#define SOAP_TYPE_dss__ZoneIncreaseValueResponse (164)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneIncreaseValueResponse(struct soap*, struct dss__ZoneIncreaseValueResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneIncreaseValueResponse(struct soap*, const struct dss__ZoneIncreaseValueResponse *);
@@ -1597,7 +1597,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneIncreaseValueResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneTurnOff
-#define SOAP_TYPE_dss__ZoneTurnOff (156)
+#define SOAP_TYPE_dss__ZoneTurnOff (162)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneTurnOff(struct soap*, struct dss__ZoneTurnOff *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneTurnOff(struct soap*, const struct dss__ZoneTurnOff *);
@@ -1611,7 +1611,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneTurnOff(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneTurnOffResponse
-#define SOAP_TYPE_dss__ZoneTurnOffResponse (155)
+#define SOAP_TYPE_dss__ZoneTurnOffResponse (161)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneTurnOffResponse(struct soap*, struct dss__ZoneTurnOffResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneTurnOffResponse(struct soap*, const struct dss__ZoneTurnOffResponse *);
@@ -1625,7 +1625,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneTurnOffResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneTurnOn
-#define SOAP_TYPE_dss__ZoneTurnOn (153)
+#define SOAP_TYPE_dss__ZoneTurnOn (159)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneTurnOn(struct soap*, struct dss__ZoneTurnOn *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneTurnOn(struct soap*, const struct dss__ZoneTurnOn *);
@@ -1639,7 +1639,7 @@
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneTurnOn(struct soap*, int, int, void*, size_t, const void*, size_t);
#ifndef SOAP_TYPE_dss__ZoneTurnOnResponse
-#define SOAP_TYPE_dss__ZoneTurnOnResponse (152)
+#define SOAP_TYPE_dss__ZoneTurnOnResponse (158)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ZoneTurnOnResponse(struct soap*, struct dss__ZoneTurnOnResponse *);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ZoneTurnOnResponse(struct soap*, const struct dss__ZoneTurnOnResponse *);
@@ -1652,6 +1652,62 @@
SOAP_FMAC3 struct dss__ZoneTurnOnResponse * SOAP_FMAC4 soap_instantiate_dss__ZoneTurnOnResponse(struct soap*, int, const char*, const char*, size_t*);
SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ZoneTurnOnResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
+#ifndef SOAP_TYPE_dss__CircuitRescan
+#define SOAP_TYPE_dss__CircuitRescan (156)
+#endif
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__CircuitRescan(struct soap*, struct dss__CircuitRescan *);
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__CircuitRescan(struct soap*, const struct dss__CircuitRescan *);
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__CircuitRescan(struct soap*, const struct dss__CircuitRescan *, const char*, const char*);
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__CircuitRescan(struct soap*, const char*, int, const struct dss__CircuitRescan *, const char*);
+SOAP_FMAC3 struct dss__CircuitRescan * SOAP_FMAC4 soap_get_dss__CircuitRescan(struct soap*, struct dss__CircuitRescan *, const char*, const char*);
+SOAP_FMAC3 struct dss__CircuitRescan * SOAP_FMAC4 soap_in_dss__CircuitRescan(struct soap*, const char*, struct dss__CircuitRescan *, const char*);
+SOAP_FMAC5 struct dss__CircuitRescan * SOAP_FMAC6 soap_new_dss__CircuitRescan(struct soap*, int);
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__CircuitRescan(struct soap*, struct dss__CircuitRescan*);
+SOAP_FMAC3 struct dss__CircuitRescan * SOAP_FMAC4 soap_instantiate_dss__CircuitRescan(struct soap*, int, const char*, const char*, size_t*);
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__CircuitRescan(struct soap*, int, int, void*, size_t, const void*, size_t);
+
+#ifndef SOAP_TYPE_dss__CircuitRescanResponse
+#define SOAP_TYPE_dss__CircuitRescanResponse (155)
+#endif
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__CircuitRescanResponse(struct soap*, struct dss__CircuitRescanResponse *);
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__CircuitRescanResponse(struct soap*, const struct dss__CircuitRescanResponse *);
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__CircuitRescanResponse(struct soap*, const struct dss__CircuitRescanResponse *, const char*, const char*);
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__CircuitRescanResponse(struct soap*, const char*, int, const struct dss__CircuitRescanResponse *, const char*);
+SOAP_FMAC3 struct dss__CircuitRescanResponse * SOAP_FMAC4 soap_get_dss__CircuitRescanResponse(struct soap*, struct dss__CircuitRescanResponse *, const char*, const char*);
+SOAP_FMAC3 struct dss__CircuitRescanResponse * SOAP_FMAC4 soap_in_dss__CircuitRescanResponse(struct soap*, const char*, struct dss__CircuitRescanResponse *, const char*);
+SOAP_FMAC5 struct dss__CircuitRescanResponse * SOAP_FMAC6 soap_new_dss__CircuitRescanResponse(struct soap*, int);
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__CircuitRescanResponse(struct soap*, struct dss__CircuitRescanResponse*);
+SOAP_FMAC3 struct dss__CircuitRescanResponse * SOAP_FMAC4 soap_instantiate_dss__CircuitRescanResponse(struct soap*, int, const char*, const char*, size_t*);
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__CircuitRescanResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
+
+#ifndef SOAP_TYPE_dss__ApartmentRescan
+#define SOAP_TYPE_dss__ApartmentRescan (153)
+#endif
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentRescan(struct soap*, struct dss__ApartmentRescan *);
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentRescan(struct soap*, const struct dss__ApartmentRescan *);
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__ApartmentRescan(struct soap*, const struct dss__ApartmentRescan *, const char*, const char*);
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__ApartmentRescan(struct soap*, const char*, int, const struct dss__ApartmentRescan *, const char*);
+SOAP_FMAC3 struct dss__ApartmentRescan * SOAP_FMAC4 soap_get_dss__ApartmentRescan(struct soap*, struct dss__ApartmentRescan *, const char*, const char*);
+SOAP_FMAC3 struct dss__ApartmentRescan * SOAP_FMAC4 soap_in_dss__ApartmentRescan(struct soap*, const char*, struct dss__ApartmentRescan *, const char*);
+SOAP_FMAC5 struct dss__ApartmentRescan * SOAP_FMAC6 soap_new_dss__ApartmentRescan(struct soap*, int);
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__ApartmentRescan(struct soap*, struct dss__ApartmentRescan*);
+SOAP_FMAC3 struct dss__ApartmentRescan * SOAP_FMAC4 soap_instantiate_dss__ApartmentRescan(struct soap*, int, const char*, const char*, size_t*);
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentRescan(struct soap*, int, int, void*, size_t, const void*, size_t);
+
+#ifndef SOAP_TYPE_dss__ApartmentRescanResponse
+#define SOAP_TYPE_dss__ApartmentRescanResponse (152)
+#endif
+SOAP_FMAC3 void SOAP_FMAC4 soap_default_dss__ApartmentRescanResponse(struct soap*, struct dss__ApartmentRescanResponse *);
+SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_dss__ApartmentRescanResponse(struct soap*, const struct dss__ApartmentRescanResponse *);
+SOAP_FMAC3 int SOAP_FMAC4 soap_put_dss__ApartmentRescanResponse(struct soap*, const struct dss__ApartmentRescanResponse *, const char*, const char*);
+SOAP_FMAC3 int SOAP_FMAC4 soap_out_dss__ApartmentRescanResponse(struct soap*, const char*, int, const struct dss__ApartmentRescanResponse *, const char*);
+SOAP_FMAC3 struct dss__ApartmentRescanResponse * SOAP_FMAC4 soap_get_dss__ApartmentRescanResponse(struct soap*, struct dss__ApartmentRescanResponse *, const char*, const char*);
+SOAP_FMAC3 struct dss__ApartmentRescanResponse * SOAP_FMAC4 soap_in_dss__ApartmentRescanResponse(struct soap*, const char*, struct dss__ApartmentRescanResponse *, const char*);
+SOAP_FMAC5 struct dss__ApartmentRescanResponse * SOAP_FMAC6 soap_new_dss__ApartmentRescanResponse(struct soap*, int);
+SOAP_FMAC5 void SOAP_FMAC6 soap_delete_dss__ApartmentRescanResponse(struct soap*, struct dss__ApartmentRescanResponse*);
+SOAP_FMAC3 struct dss__ApartmentRescanResponse * SOAP_FMAC4 soap_instantiate_dss__ApartmentRescanResponse(struct soap*, int, const char*, const char*, size_t*);
+SOAP_FMAC3 void SOAP_FMAC4 soap_copy_dss__ApartmentRescanResponse(struct soap*, int, int, void*, size_t, const void*, size_t);
+
#ifndef SOAP_TYPE_dss__ApartmentSaveScene
#define SOAP_TYPE_dss__ApartmentSaveScene (150)
#endif
@@ -2803,7 +2859,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_PointerToSOAP_ENV__Reason
-#define SOAP_TYPE_PointerToSOAP_ENV__Reason (316)
+#define SOAP_TYPE_PointerToSOAP_ENV__Reason (322)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason *const*);
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Reason(struct soap*, struct SOAP_ENV__Reason *const*, const char*, const char*);
@@ -2816,7 +2872,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_PointerToSOAP_ENV__Detail
-#define SOAP_TYPE_PointerToSOAP_ENV__Detail (315)
+#define SOAP_TYPE_PointerToSOAP_ENV__Detail (321)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail *const*);
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Detail(struct soap*, struct SOAP_ENV__Detail *const*, const char*, const char*);
@@ -2829,7 +2885,7 @@
#ifndef WITH_NOGLOBAL
#ifndef SOAP_TYPE_PointerToSOAP_ENV__Code
-#define SOAP_TYPE_PointerToSOAP_ENV__Code (309)
+#define SOAP_TYPE_PointerToSOAP_ENV__Code (315)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerToSOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code *const*);
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerToSOAP_ENV__Code(struct soap*, struct SOAP_ENV__Code *const*, const char*, const char*);
@@ -2840,7 +2896,7 @@
#endif
#ifndef SOAP_TYPE_PointerTostring
-#define SOAP_TYPE_PointerTostring (221)
+#define SOAP_TYPE_PointerTostring (227)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_PointerTostring(struct soap*, char **const*);
SOAP_FMAC3 int SOAP_FMAC4 soap_put_PointerTostring(struct soap*, char **const*, const char*, const char*);
@@ -2869,7 +2925,7 @@
SOAP_FMAC3 char * * SOAP_FMAC4 soap_in_string(struct soap*, const char*, char **, const char*);
#ifndef SOAP_TYPE_std__vectorTemplateOfdss__Event
-#define SOAP_TYPE_std__vectorTemplateOfdss__Event (275)
+#define SOAP_TYPE_std__vectorTemplateOfdss__Event (281)
#endif
SOAP_FMAC3 void SOAP_FMAC4 soap_default_std__vectorTemplateOfdss__Event(struct soap*, std::vector<dss__Event >*);
SOAP_FMAC3 void SOAP_FMAC4 soap_serialize_std__vectorTemplateOfdss__Event(struct soap*, const std::vector<dss__Event >*);
Modified: dss/trunk/webservices/soapServer.cpp
===================================================================
--- dss/trunk/webservices/soapServer.cpp 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/soapServer.cpp 2009-10-05 15:04:57 UTC (rev 8820)
@@ -6,7 +6,7 @@
*/
#include "soapH.h"
-SOAP_SOURCE_STAMP("@(#) soapServer.cpp ver 2.7.10 2009-09-22 13:48:12 GMT")
+SOAP_SOURCE_STAMP("@(#) soapServer.cpp ver 2.7.10 2009-10-05 14:18:40 GMT")
SOAP_FMAC5 int SOAP_FMAC6 soap_serve(struct soap *soap)
@@ -155,6 +155,10 @@
return soap_serve_dss__ApartmentCallScene(soap);
if (!soap_match_tag(soap, soap->tag, "dss:ApartmentSaveScene"))
return soap_serve_dss__ApartmentSaveScene(soap);
+ if (!soap_match_tag(soap, soap->tag, "dss:ApartmentRescan"))
+ return soap_serve_dss__ApartmentRescan(soap);
+ if (!soap_match_tag(soap, soap->tag, "dss:CircuitRescan"))
+ return soap_serve_dss__CircuitRescan(soap);
if (!soap_match_tag(soap, soap->tag, "dss:ZoneTurnOn"))
return soap_serve_dss__ZoneTurnOn(soap);
if (!soap_match_tag(soap, soap->tag, "dss:ZoneTurnOff"))
@@ -1940,6 +1944,88 @@
return soap_closesock(soap);
}
+SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__ApartmentRescan(struct soap *soap)
+{ struct dss__ApartmentRescan soap_tmp_dss__ApartmentRescan;
+ struct dss__ApartmentRescanResponse soap_tmp_dss__ApartmentRescanResponse;
+ soap_default_dss__ApartmentRescanResponse(soap, &soap_tmp_dss__ApartmentRescanResponse);
+ soap_default_dss__ApartmentRescan(soap, &soap_tmp_dss__ApartmentRescan);
+ soap->encodingStyle = NULL;
+ if (!soap_get_dss__ApartmentRescan(soap, &soap_tmp_dss__ApartmentRescan, "dss:ApartmentRescan", NULL))
+ return soap->error;
+ if (soap_body_end_in(soap)
+ || soap_envelope_end_in(soap)
+ || soap_end_recv(soap))
+ return soap->error;
+ soap->error = dss__ApartmentRescan(soap, soap_tmp_dss__ApartmentRescan._token, soap_tmp_dss__ApartmentRescanResponse.result);
+ if (soap->error)
+ return soap->error;
+ soap_serializeheader(soap);
+ soap_serialize_dss__ApartmentRescanResponse(soap, &soap_tmp_dss__ApartmentRescanResponse);
+ if (soap_begin_count(soap))
+ return soap->error;
+ if (soap->mode & SOAP_IO_LENGTH)
+ { if (soap_envelope_begin_out(soap)
+ || soap_putheader(soap)
+ || soap_body_begin_out(soap)
+ || soap_put_dss__ApartmentRescanResponse(soap, &soap_tmp_dss__ApartmentRescanResponse, "dss:ApartmentRescanResponse", "")
+ || soap_body_end_out(soap)
+ || soap_envelope_end_out(soap))
+ return soap->error;
+ };
+ if (soap_end_count(soap)
+ || soap_response(soap, SOAP_OK)
+ || soap_envelope_begin_out(soap)
+ || soap_putheader(soap)
+ || soap_body_begin_out(soap)
+ || soap_put_dss__ApartmentRescanResponse(soap, &soap_tmp_dss__ApartmentRescanResponse, "dss:ApartmentRescanResponse", "")
+ || soap_body_end_out(soap)
+ || soap_envelope_end_out(soap)
+ || soap_end_send(soap))
+ return soap->error;
+ return soap_closesock(soap);
+}
+
+SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__CircuitRescan(struct soap *soap)
+{ struct dss__CircuitRescan soap_tmp_dss__CircuitRescan;
+ struct dss__CircuitRescanResponse soap_tmp_dss__CircuitRescanResponse;
+ soap_default_dss__CircuitRescanResponse(soap, &soap_tmp_dss__CircuitRescanResponse);
+ soap_default_dss__CircuitRescan(soap, &soap_tmp_dss__CircuitRescan);
+ soap->encodingStyle = NULL;
+ if (!soap_get_dss__CircuitRescan(soap, &soap_tmp_dss__CircuitRescan, "dss:CircuitRescan", NULL))
+ return soap->error;
+ if (soap_body_end_in(soap)
+ || soap_envelope_end_in(soap)
+ || soap_end_recv(soap))
+ return soap->error;
+ soap->error = dss__CircuitRescan(soap, soap_tmp_dss__CircuitRescan._token, soap_tmp_dss__CircuitRescan._dsid, soap_tmp_dss__CircuitRescanResponse.result);
+ if (soap->error)
+ return soap->error;
+ soap_serializeheader(soap);
+ soap_serialize_dss__CircuitRescanResponse(soap, &soap_tmp_dss__CircuitRescanResponse);
+ if (soap_begin_count(soap))
+ return soap->error;
+ if (soap->mode & SOAP_IO_LENGTH)
+ { if (soap_envelope_begin_out(soap)
+ || soap_putheader(soap)
+ || soap_body_begin_out(soap)
+ || soap_put_dss__CircuitRescanResponse(soap, &soap_tmp_dss__CircuitRescanResponse, "dss:CircuitRescanResponse", "")
+ || soap_body_end_out(soap)
+ || soap_envelope_end_out(soap))
+ return soap->error;
+ };
+ if (soap_end_count(soap)
+ || soap_response(soap, SOAP_OK)
+ || soap_envelope_begin_out(soap)
+ || soap_putheader(soap)
+ || soap_body_begin_out(soap)
+ || soap_put_dss__CircuitRescanResponse(soap, &soap_tmp_dss__CircuitRescanResponse, "dss:CircuitRescanResponse", "")
+ || soap_body_end_out(soap)
+ || soap_envelope_end_out(soap)
+ || soap_end_send(soap))
+ return soap->error;
+ return soap_closesock(soap);
+}
+
SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__ZoneTurnOn(struct soap *soap)
{ struct dss__ZoneTurnOn soap_tmp_dss__ZoneTurnOn;
struct dss__ZoneTurnOnResponse soap_tmp_dss__ZoneTurnOnResponse;
Modified: dss/trunk/webservices/soapStub.h
===================================================================
--- dss/trunk/webservices/soapStub.h 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/soapStub.h 2009-10-05 15:04:57 UTC (rev 8820)
@@ -916,8 +916,49 @@
};
#endif
+#ifndef SOAP_TYPE_dss__ApartmentRescanResponse
+#define SOAP_TYPE_dss__ApartmentRescanResponse (152)
+/* dss:ApartmentRescanResponse */
+struct dss__ApartmentRescanResponse
+{
+public:
+ bool result; /* SOAP 1.2 RPC return element (when namespace qualified) */ /* required element of type xsd:boolean */
+};
+#endif
+
+#ifndef SOAP_TYPE_dss__ApartmentRescan
+#define SOAP_TYPE_dss__ApartmentRescan (153)
+/* dss:ApartmentRescan */
+struct dss__ApartmentRescan
+{
+public:
+ int _token; /* required element of type xsd:int */
+};
+#endif
+
+#ifndef SOAP_TYPE_dss__CircuitRescanResponse
+#define SOAP_TYPE_dss__CircuitRescanResponse (155)
+/* dss:CircuitRescanResponse */
+struct dss__CircuitRescanResponse
+{
+public:
+ bool result; /* SOAP 1.2 RPC return element (when namespace qualified) */ /* required element of type xsd:boolean */
+};
+#endif
+
+#ifndef SOAP_TYPE_dss__CircuitRescan
+#define SOAP_TYPE_dss__CircuitRescan (156)
+/* dss:CircuitRescan */
+struct dss__CircuitRescan
+{
+public:
+ int _token; /* required element of type xsd:int */
+ char *_dsid; /* optional element of type xsd:string */
+};
+#endif
+
#ifndef SOAP_TYPE_dss__ZoneTurnOnResponse
-#define SOAP_TYPE_dss__ZoneTurnOnResponse (152)
+#define SOAP_TYPE_dss__ZoneTurnOnResponse (158)
/* dss:ZoneTurnOnResponse */
struct dss__ZoneTurnOnResponse
{
@@ -927,7 +968,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneTurnOn
-#define SOAP_TYPE_dss__ZoneTurnOn (153)
+#define SOAP_TYPE_dss__ZoneTurnOn (159)
/* dss:ZoneTurnOn */
struct dss__ZoneTurnOn
{
@@ -939,7 +980,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneTurnOffResponse
-#define SOAP_TYPE_dss__ZoneTurnOffResponse (155)
+#define SOAP_TYPE_dss__ZoneTurnOffResponse (161)
/* dss:ZoneTurnOffResponse */
struct dss__ZoneTurnOffResponse
{
@@ -949,7 +990,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneTurnOff
-#define SOAP_TYPE_dss__ZoneTurnOff (156)
+#define SOAP_TYPE_dss__ZoneTurnOff (162)
/* dss:ZoneTurnOff */
struct dss__ZoneTurnOff
{
@@ -961,7 +1002,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneIncreaseValueResponse
-#define SOAP_TYPE_dss__ZoneIncreaseValueResponse (158)
+#define SOAP_TYPE_dss__ZoneIncreaseValueResponse (164)
/* dss:ZoneIncreaseValueResponse */
struct dss__ZoneIncreaseValueResponse
{
@@ -971,7 +1012,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneIncreaseValue
-#define SOAP_TYPE_dss__ZoneIncreaseValue (159)
+#define SOAP_TYPE_dss__ZoneIncreaseValue (165)
/* dss:ZoneIncreaseValue */
struct dss__ZoneIncreaseValue
{
@@ -984,7 +1025,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneDecreaseValueResponse
-#define SOAP_TYPE_dss__ZoneDecreaseValueResponse (161)
+#define SOAP_TYPE_dss__ZoneDecreaseValueResponse (167)
/* dss:ZoneDecreaseValueResponse */
struct dss__ZoneDecreaseValueResponse
{
@@ -994,7 +1035,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneDecreaseValue
-#define SOAP_TYPE_dss__ZoneDecreaseValue (162)
+#define SOAP_TYPE_dss__ZoneDecreaseValue (168)
/* dss:ZoneDecreaseValue */
struct dss__ZoneDecreaseValue
{
@@ -1007,7 +1048,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneEnableResponse
-#define SOAP_TYPE_dss__ZoneEnableResponse (164)
+#define SOAP_TYPE_dss__ZoneEnableResponse (170)
/* dss:ZoneEnableResponse */
struct dss__ZoneEnableResponse
{
@@ -1017,7 +1058,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneEnable
-#define SOAP_TYPE_dss__ZoneEnable (165)
+#define SOAP_TYPE_dss__ZoneEnable (171)
/* dss:ZoneEnable */
struct dss__ZoneEnable
{
@@ -1029,7 +1070,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneDisableResponse
-#define SOAP_TYPE_dss__ZoneDisableResponse (167)
+#define SOAP_TYPE_dss__ZoneDisableResponse (173)
/* dss:ZoneDisableResponse */
struct dss__ZoneDisableResponse
{
@@ -1039,7 +1080,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneDisable
-#define SOAP_TYPE_dss__ZoneDisable (168)
+#define SOAP_TYPE_dss__ZoneDisable (174)
/* dss:ZoneDisable */
struct dss__ZoneDisable
{
@@ -1051,7 +1092,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneStartDimResponse
-#define SOAP_TYPE_dss__ZoneStartDimResponse (170)
+#define SOAP_TYPE_dss__ZoneStartDimResponse (176)
/* dss:ZoneStartDimResponse */
struct dss__ZoneStartDimResponse
{
@@ -1061,7 +1102,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneStartDim
-#define SOAP_TYPE_dss__ZoneStartDim (171)
+#define SOAP_TYPE_dss__ZoneStartDim (177)
/* dss:ZoneStartDim */
struct dss__ZoneStartDim
{
@@ -1075,7 +1116,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneEndDimResponse
-#define SOAP_TYPE_dss__ZoneEndDimResponse (173)
+#define SOAP_TYPE_dss__ZoneEndDimResponse (179)
/* dss:ZoneEndDimResponse */
struct dss__ZoneEndDimResponse
{
@@ -1085,7 +1126,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneEndDim
-#define SOAP_TYPE_dss__ZoneEndDim (174)
+#define SOAP_TYPE_dss__ZoneEndDim (180)
/* dss:ZoneEndDim */
struct dss__ZoneEndDim
{
@@ -1098,7 +1139,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneSetValueResponse
-#define SOAP_TYPE_dss__ZoneSetValueResponse (176)
+#define SOAP_TYPE_dss__ZoneSetValueResponse (182)
/* dss:ZoneSetValueResponse */
struct dss__ZoneSetValueResponse
{
@@ -1108,7 +1149,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneSetValue
-#define SOAP_TYPE_dss__ZoneSetValue (177)
+#define SOAP_TYPE_dss__ZoneSetValue (183)
/* dss:ZoneSetValue */
struct dss__ZoneSetValue
{
@@ -1122,7 +1163,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneCallSceneResponse
-#define SOAP_TYPE_dss__ZoneCallSceneResponse (179)
+#define SOAP_TYPE_dss__ZoneCallSceneResponse (185)
/* dss:ZoneCallSceneResponse */
struct dss__ZoneCallSceneResponse
{
@@ -1132,7 +1173,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneCallScene
-#define SOAP_TYPE_dss__ZoneCallScene (180)
+#define SOAP_TYPE_dss__ZoneCallScene (186)
/* dss:ZoneCallScene */
struct dss__ZoneCallScene
{
@@ -1145,7 +1186,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneSaveSceneResponse
-#define SOAP_TYPE_dss__ZoneSaveSceneResponse (182)
+#define SOAP_TYPE_dss__ZoneSaveSceneResponse (188)
/* dss:ZoneSaveSceneResponse */
struct dss__ZoneSaveSceneResponse
{
@@ -1155,7 +1196,7 @@
#endif
#ifndef SOAP_TYPE_dss__ZoneSaveScene
-#define SOAP_TYPE_dss__ZoneSaveScene (183)
+#define SOAP_TYPE_dss__ZoneSaveScene (189)
/* dss:ZoneSaveScene */
struct dss__ZoneSaveScene
{
@@ -1168,7 +1209,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceTurnOnResponse
-#define SOAP_TYPE_dss__DeviceTurnOnResponse (185)
+#define SOAP_TYPE_dss__DeviceTurnOnResponse (191)
/* dss:DeviceTurnOnResponse */
struct dss__DeviceTurnOnResponse
{
@@ -1178,7 +1219,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceTurnOn
-#define SOAP_TYPE_dss__DeviceTurnOn (186)
+#define SOAP_TYPE_dss__DeviceTurnOn (192)
/* dss:DeviceTurnOn */
struct dss__DeviceTurnOn
{
@@ -1189,7 +1230,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceTurnOffResponse
-#define SOAP_TYPE_dss__DeviceTurnOffResponse (188)
+#define SOAP_TYPE_dss__DeviceTurnOffResponse (194)
/* dss:DeviceTurnOffResponse */
struct dss__DeviceTurnOffResponse
{
@@ -1199,7 +1240,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceTurnOff
-#define SOAP_TYPE_dss__DeviceTurnOff (189)
+#define SOAP_TYPE_dss__DeviceTurnOff (195)
/* dss:DeviceTurnOff */
struct dss__DeviceTurnOff
{
@@ -1210,7 +1251,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceIncreaseValueResponse
-#define SOAP_TYPE_dss__DeviceIncreaseValueResponse (191)
+#define SOAP_TYPE_dss__DeviceIncreaseValueResponse (197)
/* dss:DeviceIncreaseValueResponse */
struct dss__DeviceIncreaseValueResponse
{
@@ -1220,7 +1261,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceIncreaseValue
-#define SOAP_TYPE_dss__DeviceIncreaseValue (192)
+#define SOAP_TYPE_dss__DeviceIncreaseValue (198)
/* dss:DeviceIncreaseValue */
struct dss__DeviceIncreaseValue
{
@@ -1232,7 +1273,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceDecreaseValueResponse
-#define SOAP_TYPE_dss__DeviceDecreaseValueResponse (194)
+#define SOAP_TYPE_dss__DeviceDecreaseValueResponse (200)
/* dss:DeviceDecreaseValueResponse */
struct dss__DeviceDecreaseValueResponse
{
@@ -1242,7 +1283,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceDecreaseValue
-#define SOAP_TYPE_dss__DeviceDecreaseValue (195)
+#define SOAP_TYPE_dss__DeviceDecreaseValue (201)
/* dss:DeviceDecreaseValue */
struct dss__DeviceDecreaseValue
{
@@ -1254,7 +1295,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceEnableResponse
-#define SOAP_TYPE_dss__DeviceEnableResponse (197)
+#define SOAP_TYPE_dss__DeviceEnableResponse (203)
/* dss:DeviceEnableResponse */
struct dss__DeviceEnableResponse
{
@@ -1264,7 +1305,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceEnable
-#define SOAP_TYPE_dss__DeviceEnable (198)
+#define SOAP_TYPE_dss__DeviceEnable (204)
/* dss:DeviceEnable */
struct dss__DeviceEnable
{
@@ -1275,7 +1316,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceDisableResponse
-#define SOAP_TYPE_dss__DeviceDisableResponse (200)
+#define SOAP_TYPE_dss__DeviceDisableResponse (206)
/* dss:DeviceDisableResponse */
struct dss__DeviceDisableResponse
{
@@ -1285,7 +1326,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceDisable
-#define SOAP_TYPE_dss__DeviceDisable (201)
+#define SOAP_TYPE_dss__DeviceDisable (207)
/* dss:DeviceDisable */
struct dss__DeviceDisable
{
@@ -1296,7 +1337,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceStartDimResponse
-#define SOAP_TYPE_dss__DeviceStartDimResponse (203)
+#define SOAP_TYPE_dss__DeviceStartDimResponse (209)
/* dss:DeviceStartDimResponse */
struct dss__DeviceStartDimResponse
{
@@ -1306,7 +1347,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceStartDim
-#define SOAP_TYPE_dss__DeviceStartDim (204)
+#define SOAP_TYPE_dss__DeviceStartDim (210)
/* dss:DeviceStartDim */
struct dss__DeviceStartDim
{
@@ -1319,7 +1360,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceEndDimResponse
-#define SOAP_TYPE_dss__DeviceEndDimResponse (206)
+#define SOAP_TYPE_dss__DeviceEndDimResponse (212)
/* dss:DeviceEndDimResponse */
struct dss__DeviceEndDimResponse
{
@@ -1329,7 +1370,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceEndDim
-#define SOAP_TYPE_dss__DeviceEndDim (207)
+#define SOAP_TYPE_dss__DeviceEndDim (213)
/* dss:DeviceEndDim */
struct dss__DeviceEndDim
{
@@ -1341,7 +1382,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceSetValueResponse
-#define SOAP_TYPE_dss__DeviceSetValueResponse (209)
+#define SOAP_TYPE_dss__DeviceSetValueResponse (215)
/* dss:DeviceSetValueResponse */
struct dss__DeviceSetValueResponse
{
@@ -1351,7 +1392,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceSetValue
-#define SOAP_TYPE_dss__DeviceSetValue (210)
+#define SOAP_TYPE_dss__DeviceSetValue (216)
/* dss:DeviceSetValue */
struct dss__DeviceSetValue
{
@@ -1364,7 +1405,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetValueResponse
-#define SOAP_TYPE_dss__DeviceGetValueResponse (213)
+#define SOAP_TYPE_dss__DeviceGetValueResponse (219)
/* dss:DeviceGetValueResponse */
struct dss__DeviceGetValueResponse
{
@@ -1374,7 +1415,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetValue
-#define SOAP_TYPE_dss__DeviceGetValue (214)
+#define SOAP_TYPE_dss__DeviceGetValue (220)
/* dss:DeviceGetValue */
struct dss__DeviceGetValue
{
@@ -1386,7 +1427,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceCallSceneResponse
-#define SOAP_TYPE_dss__DeviceCallSceneResponse (216)
+#define SOAP_TYPE_dss__DeviceCallSceneResponse (222)
/* dss:DeviceCallSceneResponse */
struct dss__DeviceCallSceneResponse
{
@@ -1396,7 +1437,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceCallScene
-#define SOAP_TYPE_dss__DeviceCallScene (217)
+#define SOAP_TYPE_dss__DeviceCallScene (223)
/* dss:DeviceCallScene */
struct dss__DeviceCallScene
{
@@ -1408,7 +1449,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceSaveSceneResponse
-#define SOAP_TYPE_dss__DeviceSaveSceneResponse (219)
+#define SOAP_TYPE_dss__DeviceSaveSceneResponse (225)
/* dss:DeviceSaveSceneResponse */
struct dss__DeviceSaveSceneResponse
{
@@ -1418,7 +1459,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceSaveScene
-#define SOAP_TYPE_dss__DeviceSaveScene (220)
+#define SOAP_TYPE_dss__DeviceSaveScene (226)
/* dss:DeviceSaveScene */
struct dss__DeviceSaveScene
{
@@ -1430,7 +1471,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetNameResponse
-#define SOAP_TYPE_dss__DeviceGetNameResponse (223)
+#define SOAP_TYPE_dss__DeviceGetNameResponse (229)
/* dss:DeviceGetNameResponse */
struct dss__DeviceGetNameResponse
{
@@ -1440,7 +1481,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetName
-#define SOAP_TYPE_dss__DeviceGetName (224)
+#define SOAP_TYPE_dss__DeviceGetName (230)
/* dss:DeviceGetName */
struct dss__DeviceGetName
{
@@ -1451,7 +1492,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetZoneIDResponse
-#define SOAP_TYPE_dss__DeviceGetZoneIDResponse (226)
+#define SOAP_TYPE_dss__DeviceGetZoneIDResponse (232)
/* dss:DeviceGetZoneIDResponse */
struct dss__DeviceGetZoneIDResponse
{
@@ -1461,7 +1502,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetZoneID
-#define SOAP_TYPE_dss__DeviceGetZoneID (227)
+#define SOAP_TYPE_dss__DeviceGetZoneID (233)
/* dss:DeviceGetZoneID */
struct dss__DeviceGetZoneID
{
@@ -1472,7 +1513,7 @@
#endif
#ifndef SOAP_TYPE_dss__ModulatorGetPowerConsumptionResponse
-#define SOAP_TYPE_dss__ModulatorGetPowerConsumptionResponse (230)
+#define SOAP_TYPE_dss__ModulatorGetPowerConsumptionResponse (236)
/* dss:ModulatorGetPowerConsumptionResponse */
struct dss__ModulatorGetPowerConsumptionResponse
{
@@ -1482,7 +1523,7 @@
#endif
#ifndef SOAP_TYPE_dss__ModulatorGetPowerConsumption
-#define SOAP_TYPE_dss__ModulatorGetPowerConsumption (231)
+#define SOAP_TYPE_dss__ModulatorGetPowerConsumption (237)
/* dss:ModulatorGetPowerConsumption */
struct dss__ModulatorGetPowerConsumption
{
@@ -1493,7 +1534,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentGetModulatorIDsResponse
-#define SOAP_TYPE_dss__ApartmentGetModulatorIDsResponse (233)
+#define SOAP_TYPE_dss__ApartmentGetModulatorIDsResponse (239)
/* dss:ApartmentGetModulatorIDsResponse */
struct dss__ApartmentGetModulatorIDsResponse
{
@@ -1503,7 +1544,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentGetModulatorIDs
-#define SOAP_TYPE_dss__ApartmentGetModulatorIDs (234)
+#define SOAP_TYPE_dss__ApartmentGetModulatorIDs (240)
/* dss:ApartmentGetModulatorIDs */
struct dss__ApartmentGetModulatorIDs
{
@@ -1513,7 +1554,7 @@
#endif
#ifndef SOAP_TYPE_dss__ModulatorGetNameResponse
-#define SOAP_TYPE_dss__ModulatorGetNameResponse (236)
+#define SOAP_TYPE_dss__ModulatorGetNameResponse (242)
/* dss:ModulatorGetNameResponse */
struct dss__ModulatorGetNameResponse
{
@@ -1523,7 +1564,7 @@
#endif
#ifndef SOAP_TYPE_dss__ModulatorGetName
-#define SOAP_TYPE_dss__ModulatorGetName (237)
+#define SOAP_TYPE_dss__ModulatorGetName (243)
/* dss:ModulatorGetName */
struct dss__ModulatorGetName
{
@@ -1534,7 +1575,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentAllocateZoneResponse
-#define SOAP_TYPE_dss__ApartmentAllocateZoneResponse (239)
+#define SOAP_TYPE_dss__ApartmentAllocateZoneResponse (245)
/* dss:ApartmentAllocateZoneResponse */
struct dss__ApartmentAllocateZoneResponse
{
@@ -1544,7 +1585,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentAllocateZone
-#define SOAP_TYPE_dss__ApartmentAllocateZone (240)
+#define SOAP_TYPE_dss__ApartmentAllocateZone (246)
/* dss:ApartmentAllocateZone */
struct dss__ApartmentAllocateZone
{
@@ -1554,7 +1595,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentDeleteZoneResponse
-#define SOAP_TYPE_dss__ApartmentDeleteZoneResponse (242)
+#define SOAP_TYPE_dss__ApartmentDeleteZoneResponse (248)
/* dss:ApartmentDeleteZoneResponse */
struct dss__ApartmentDeleteZoneResponse
{
@@ -1564,7 +1605,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentDeleteZone
-#define SOAP_TYPE_dss__ApartmentDeleteZone (243)
+#define SOAP_TYPE_dss__ApartmentDeleteZone (249)
/* dss:ApartmentDeleteZone */
struct dss__ApartmentDeleteZone
{
@@ -1575,7 +1616,7 @@
#endif
#ifndef SOAP_TYPE_dss__Zone_AddDeviceResponse
-#define SOAP_TYPE_dss__Zone_AddDeviceResponse (245)
+#define SOAP_TYPE_dss__Zone_AddDeviceResponse (251)
/* dss:Zone-AddDeviceResponse */
struct dss__Zone_AddDeviceResponse
{
@@ -1585,7 +1626,7 @@
#endif
#ifndef SOAP_TYPE_dss__Zone_AddDevice
-#define SOAP_TYPE_dss__Zone_AddDevice (246)
+#define SOAP_TYPE_dss__Zone_AddDevice (252)
/* dss:Zone-AddDevice */
struct dss__Zone_AddDevice
{
@@ -1597,7 +1638,7 @@
#endif
#ifndef SOAP_TYPE_dss__Zone_RemoveDeviceResponse
-#define SOAP_TYPE_dss__Zone_RemoveDeviceResponse (248)
+#define SOAP_TYPE_dss__Zone_RemoveDeviceResponse (254)
/* dss:Zone-RemoveDeviceResponse */
struct dss__Zone_RemoveDeviceResponse
{
@@ -1607,7 +1648,7 @@
#endif
#ifndef SOAP_TYPE_dss__Zone_RemoveDevice
-#define SOAP_TYPE_dss__Zone_RemoveDevice (249)
+#define SOAP_TYPE_dss__Zone_RemoveDevice (255)
/* dss:Zone-RemoveDevice */
struct dss__Zone_RemoveDevice
{
@@ -1619,7 +1660,7 @@
#endif
#ifndef SOAP_TYPE_dss__Zone_SetNameResponse
-#define SOAP_TYPE_dss__Zone_SetNameResponse (251)
+#define SOAP_TYPE_dss__Zone_SetNameResponse (257)
/* dss:Zone-SetNameResponse */
struct dss__Zone_SetNameResponse
{
@@ -1629,7 +1670,7 @@
#endif
#ifndef SOAP_TYPE_dss__Zone_SetName
-#define SOAP_TYPE_dss__Zone_SetName (252)
+#define SOAP_TYPE_dss__Zone_SetName (258)
/* dss:Zone-SetName */
struct dss__Zone_SetName
{
@@ -1641,7 +1682,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentAllocateUserGroupResponse
-#define SOAP_TYPE_dss__ApartmentAllocateUserGroupResponse (254)
+#define SOAP_TYPE_dss__ApartmentAllocateUserGroupResponse (260)
/* dss:ApartmentAllocateUserGroupResponse */
struct dss__ApartmentAllocateUserGroupResponse
{
@@ -1651,7 +1692,7 @@
#endif
#ifndef SOAP_TYPE_dss__ApartmentAllocateUserGroup
-#define SOAP_TYPE_dss__ApartmentAllocateUserGroup (255)
+#define SOAP_TYPE_dss__ApartmentAllocateUserGroup (261)
/* dss:ApartmentAllocateUserGroup */
struct dss__ApartmentAllocateUserGroup
{
@@ -1661,7 +1702,7 @@
#endif
#ifndef SOAP_TYPE_dss__GroupRemoveUserGroupResponse
-#define SOAP_TYPE_dss__GroupRemoveUserGroupResponse (257)
+#define SOAP_TYPE_dss__GroupRemoveUserGroupResponse (263)
/* dss:GroupRemoveUserGroupResponse */
struct dss__GroupRemoveUserGroupResponse
{
@@ -1671,7 +1712,7 @@
#endif
#ifndef SOAP_TYPE_dss__GroupRemoveUserGroup
-#define SOAP_TYPE_dss__GroupRemoveUserGroup (258)
+#define SOAP_TYPE_dss__GroupRemoveUserGroup (264)
/* dss:GroupRemoveUserGroup */
struct dss__GroupRemoveUserGroup
{
@@ -1682,7 +1723,7 @@
#endif
#ifndef SOAP_TYPE_dss__GroupAddDeviceResponse
-#define SOAP_TYPE_dss__GroupAddDeviceResponse (260)
+#define SOAP_TYPE_dss__GroupAddDeviceResponse (266)
/* dss:GroupAddDeviceResponse */
struct dss__GroupAddDeviceResponse
{
@@ -1692,7 +1733,7 @@
#endif
#ifndef SOAP_TYPE_dss__GroupAddDevice
-#define SOAP_TYPE_dss__GroupAddDevice (261)
+#define SOAP_TYPE_dss__GroupAddDevice (267)
/* dss:GroupAddDevice */
struct dss__GroupAddDevice
{
@@ -1704,7 +1745,7 @@
#endif
#ifndef SOAP_TYPE_dss__GroupRemoveDeviceResponse
-#define SOAP_TYPE_dss__GroupRemoveDeviceResponse (263)
+#define SOAP_TYPE_dss__GroupRemoveDeviceResponse (269)
/* dss:GroupRemoveDeviceResponse */
struct dss__GroupRemoveDeviceResponse
{
@@ -1714,7 +1755,7 @@
#endif
#ifndef SOAP_TYPE_dss__GroupRemoveDevice
-#define SOAP_TYPE_dss__GroupRemoveDevice (264)
+#define SOAP_TYPE_dss__GroupRemoveDevice (270)
/* dss:GroupRemoveDevice */
struct dss__GroupRemoveDevice
{
@@ -1726,7 +1767,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetFunctionIDResponse
-#define SOAP_TYPE_dss__DeviceGetFunctionIDResponse (266)
+#define SOAP_TYPE_dss__DeviceGetFunctionIDResponse (272)
/* dss:DeviceGetFunctionIDResponse */
struct dss__DeviceGetFunctionIDResponse
{
@@ -1736,7 +1777,7 @@
#endif
#ifndef SOAP_TYPE_dss__DeviceGetFunctionID
-#define SOAP_TYPE_dss__DeviceGetFunctionID (267)
+#define SOAP_TYPE_dss__DeviceGetFunctionID (273)
/* dss:DeviceGetFunctionID */
struct dss__DeviceGetFunctionID
{
@@ -1747,7 +1788,7 @@
#endif
#ifndef SOAP_TYPE_dss__SwitchGetGroupIDResponse
-#define SOAP_TYPE_dss__SwitchGetGroupIDResponse (269)
+#define SOAP_TYPE_dss__SwitchGetGroupIDResponse (275)
/* dss:SwitchGetGroupIDResponse */
struct dss__SwitchGetGroupIDResponse
{
@@ -1757,7 +1798,7 @@
#endif
#ifndef SOAP_TYPE_dss__SwitchGetGroupID
-#define SOAP_TYPE_dss__SwitchGetGroupID (270)
+#define SOAP_TYPE_dss__SwitchGetGroupID (276)
/* dss:SwitchGetGroupID */
struct dss__SwitchGetGroupID
{
@@ -1768,7 +1809,7 @@
#endif
#ifndef SOAP_TYPE_dss__Event
-#define SOAP_TYPE_dss__Event (271)
+#define SOAP_TYPE_dss__Event (277)
/* dss:Event */
class SOAP_CMAC dss__Event
{
@@ -1776,7 +1817,7 @@
std::string name; /* required element of type xsd:string */
std::vector<std::string >parameter; /* optional element of type xsd:string */
public:
- virtual int soap_type() const { return 271; } /* = unique id SOAP_TYPE_dss__Event */
+ virtual int soap_type() const { return 277; } /* = unique id SOAP_TYPE_dss__Event */
virtual void soap_default(struct soap*);
virtual void soap_serialize(struct soap*) const;
virtual int soap_put(struct soap*, const char*, const char*) const;
@@ -1789,7 +1830,7 @@
#endif
#ifndef SOAP_TYPE_dss__EventRaiseResponse
-#define SOAP_TYPE_dss__EventRaiseResponse (273)
+#define SOAP_TYPE_dss__EventRaiseResponse (279)
/* dss:EventRaiseResponse */
struct dss__EventRaiseResponse
{
@@ -1799,7 +1840,7 @@
#endif
#ifndef SOAP_TYPE_dss__EventRaise
-#define SOAP_TYPE_dss__EventRaise (274)
+#define SOAP_TYPE_dss__EventRaise (280)
/* dss:EventRaise */
struct dss__EventRaise
{
@@ -1813,7 +1854,7 @@
#endif
#ifndef SOAP_TYPE_dss__EventWaitForResponse
-#define SOAP_TYPE_dss__EventWaitForResponse (278)
+#define SOAP_TYPE_dss__EventWaitForResponse (284)
/* dss:EventWaitForResponse */
struct dss__EventWaitForResponse
{
@@ -1823,7 +1864,7 @@
#endif
#ifndef SOAP_TYPE_dss__EventWaitFor
-#define SOAP_TYPE_dss__EventWaitFor (279)
+#define SOAP_TYPE_dss__EventWaitFor (285)
/* dss:EventWaitFor */
struct dss__EventWaitFor
{
@@ -1834,7 +1875,7 @@
#endif
#ifndef SOAP_TYPE_dss__EventSubscribeToResponse
-#define SOAP_TYPE_dss__EventSubscribeToResponse (281)
+#define SOAP_TYPE_dss__EventSubscribeToResponse (287)
/* dss:EventSubscribeToResponse */
struct dss__EventSubscribeToResponse
{
@@ -1844,7 +1885,7 @@
#endif
#ifndef SOAP_TYPE_dss__EventSubscribeTo
-#define SOAP_TYPE_dss__EventSubscribeTo (282)
+#define SOAP_TYPE_dss__EventSubscribeTo (288)
/* dss:EventSubscribeTo */
struct dss__EventSubscribeTo
{
@@ -1855,7 +1896,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetTypeResponse
-#define SOAP_TYPE_dss__PropertyGetTypeResponse (284)
+#define SOAP_TYPE_dss__PropertyGetTypeResponse (290)
/* dss:PropertyGetTypeResponse */
struct dss__PropertyGetTypeResponse
{
@@ -1865,7 +1906,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetType
-#define SOAP_TYPE_dss__PropertyGetType (285)
+#define SOAP_TYPE_dss__PropertyGetType (291)
/* dss:PropertyGetType */
struct dss__PropertyGetType
{
@@ -1876,7 +1917,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertySetIntResponse
-#define SOAP_TYPE_dss__PropertySetIntResponse (287)
+#define SOAP_TYPE_dss__PropertySetIntResponse (293)
/* dss:PropertySetIntResponse */
struct dss__PropertySetIntResponse
{
@@ -1886,7 +1927,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertySetInt
-#define SOAP_TYPE_dss__PropertySetInt (288)
+#define SOAP_TYPE_dss__PropertySetInt (294)
/* dss:PropertySetInt */
struct dss__PropertySetInt
{
@@ -1899,7 +1940,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertySetStringResponse
-#define SOAP_TYPE_dss__PropertySetStringResponse (290)
+#define SOAP_TYPE_dss__PropertySetStringResponse (296)
/* dss:PropertySetStringResponse */
struct dss__PropertySetStringResponse
{
@@ -1909,7 +1950,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertySetString
-#define SOAP_TYPE_dss__PropertySetString (291)
+#define SOAP_TYPE_dss__PropertySetString (297)
/* dss:PropertySetString */
struct dss__PropertySetString
{
@@ -1922,7 +1963,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertySetBoolResponse
-#define SOAP_TYPE_dss__PropertySetBoolResponse (293)
+#define SOAP_TYPE_dss__PropertySetBoolResponse (299)
/* dss:PropertySetBoolResponse */
struct dss__PropertySetBoolResponse
{
@@ -1932,7 +1973,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertySetBool
-#define SOAP_TYPE_dss__PropertySetBool (294)
+#define SOAP_TYPE_dss__PropertySetBool (300)
/* dss:PropertySetBool */
struct dss__PropertySetBool
{
@@ -1945,7 +1986,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetIntResponse
-#define SOAP_TYPE_dss__PropertyGetIntResponse (296)
+#define SOAP_TYPE_dss__PropertyGetIntResponse (302)
/* dss:PropertyGetIntResponse */
struct dss__PropertyGetIntResponse
{
@@ -1955,7 +1996,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetInt
-#define SOAP_TYPE_dss__PropertyGetInt (297)
+#define SOAP_TYPE_dss__PropertyGetInt (303)
/* dss:PropertyGetInt */
struct dss__PropertyGetInt
{
@@ -1966,7 +2007,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetStringResponse
-#define SOAP_TYPE_dss__PropertyGetStringResponse (299)
+#define SOAP_TYPE_dss__PropertyGetStringResponse (305)
/* dss:PropertyGetStringResponse */
struct dss__PropertyGetStringResponse
{
@@ -1976,7 +2017,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetString
-#define SOAP_TYPE_dss__PropertyGetString (300)
+#define SOAP_TYPE_dss__PropertyGetString (306)
/* dss:PropertyGetString */
struct dss__PropertyGetString
{
@@ -1987,7 +2028,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetBoolResponse
-#define SOAP_TYPE_dss__PropertyGetBoolResponse (302)
+#define SOAP_TYPE_dss__PropertyGetBoolResponse (308)
/* dss:PropertyGetBoolResponse */
struct dss__PropertyGetBoolResponse
{
@@ -1997,7 +2038,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetBool
-#define SOAP_TYPE_dss__PropertyGetBool (303)
+#define SOAP_TYPE_dss__PropertyGetBool (309)
/* dss:PropertyGetBool */
struct dss__PropertyGetBool
{
@@ -2008,7 +2049,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetChildrenResponse
-#define SOAP_TYPE_dss__PropertyGetChildrenResponse (305)
+#define SOAP_TYPE_dss__PropertyGetChildrenResponse (311)
/* dss:PropertyGetChildrenResponse */
struct dss__PropertyGetChildrenResponse
{
@@ -2018,7 +2059,7 @@
#endif
#ifndef SOAP_TYPE_dss__PropertyGetChildren
-#define SOAP_TYPE_dss__PropertyGetChildren (306)
+#define SOAP_TYPE_dss__PropertyGetChildren (312)
/* dss:PropertyGetChildren */
struct dss__PropertyGetChildren
{
@@ -2029,7 +2070,7 @@
#endif
#ifndef SOAP_TYPE_SOAP_ENV__Header
-#define SOAP_TYPE_SOAP_ENV__Header (307)
+#define SOAP_TYPE_SOAP_ENV__Header (313)
/* SOAP Header: */
struct SOAP_ENV__Header
{
@@ -2041,7 +2082,7 @@
#endif
#ifndef SOAP_TYPE_SOAP_ENV__Code
-#define SOAP_TYPE_SOAP_ENV__Code (308)
+#define SOAP_TYPE_SOAP_ENV__Code (314)
/* SOAP Fault Code: */
struct SOAP_ENV__Code
{
@@ -2052,7 +2093,7 @@
#endif
#ifndef SOAP_TYPE_SOAP_ENV__Detail
-#define SOAP_TYPE_SOAP_ENV__Detail (310)
+#define SOAP_TYPE_SOAP_ENV__Detail (316)
/* SOAP-ENV:Detail */
struct SOAP_ENV__Detail
{
@@ -2064,7 +2105,7 @@
#endif
#ifndef SOAP_TYPE_SOAP_ENV__Reason
-#define SOAP_TYPE_SOAP_ENV__Reason (313)
+#define SOAP_TYPE_SOAP_ENV__Reason (319)
/* SOAP-ENV:Reason */
struct SOAP_ENV__Reason
{
@@ -2074,7 +2115,7 @@
#endif
#ifndef SOAP_TYPE_SOAP_ENV__Fault
-#define SOAP_TYPE_SOAP_ENV__Fault (314)
+#define SOAP_TYPE_SOAP_ENV__Fault (320)
/* SOAP Fault: */
struct SOAP_ENV__Fault
{
@@ -2228,6 +2269,10 @@
SOAP_FMAC5 int SOAP_FMAC6 dss__ApartmentSaveScene(struct soap*, int _token, int _groupID, int _sceneNr, bool &result);
+SOAP_FMAC5 int SOAP_FMAC6 dss__ApartmentRescan(struct soap*, int _token, bool &result);
+
+SOAP_FMAC5 int SOAP_FMAC6 dss__CircuitRescan(struct soap*, int _token, char *_dsid, bool &result);
+
SOAP_FMAC5 int SOAP_FMAC6 dss__ZoneTurnOn(struct soap*, int _token, int _zoneID, int _groupID, bool &result);
SOAP_FMAC5 int SOAP_FMAC6 dss__ZoneTurnOff(struct soap*, int _token, int _zoneID, int _groupID, bool &result);
@@ -2420,6 +2465,10 @@
SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__ApartmentSaveScene(struct soap*);
+SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__ApartmentRescan(struct soap*);
+
+SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__CircuitRescan(struct soap*);
+
SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__ZoneTurnOn(struct soap*);
SOAP_FMAC5 int SOAP_FMAC6 soap_serve_dss__ZoneTurnOff(struct soap*);
Modified: dss/trunk/webservices/soapdssObject.h
===================================================================
--- dss/trunk/webservices/soapdssObject.h 2009-10-05 15:03:28 UTC (rev 8819)
+++ dss/trunk/webservices/soapdssObject.h 2009-10-05 15:04:57 UTC (rev 8820)
@@ -126,6 +126,10 @@
SOAP_FMAC5 int SOAP_FMAC6 dss__ApartmentSaveScene(struct soap*, int _token, int _groupID, int _sceneNr, bool &result);
+SOAP_FMAC5 int SOAP_FMAC6 dss__ApartmentRescan(struct soap*, int _token, bool &result);
+
+SOAP_FMAC5 int SOAP_FMAC6 dss__CircuitRescan(struct soap*, int _token, char *_dsid, bool &result);
+
SOAP_FMAC5 int SOAP_FMAC6 dss__ZoneTurnOn(struct soap*, int _token, int _zoneID, int _groupID, bool &result);
SOAP_FMAC5 int SOAP_FMAC6 dss__ZoneTurnOff(struct soap*, int _token, int _zoneID, int _groupID, bool &result);
More information about the dss-commits
mailing list