Skip to content
Snippets Groups Projects
Commit 829e8a57 authored by Miguel Angel Reina Ortega's avatar Miguel Angel Reina Ortega
Browse files

Fixed f_getResourceAddress for CSEBase Unstructured CSE-Relative


Signed-off-by: Miguel Angel Reina Ortega's avatarMiguel Angel Reina Ortega <miguelangel.reinaortega@etsi.org>
parent 117c85c9
No related branches found
No related tags found
1 merge request!25Ae fixes
......@@ -7,7 +7,7 @@
*
* @author ETSI
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/LibOneM2M/OneM2M_Functions.ttcn $
* $Id: OneM2M_Functions.ttcn 190 2016-11-30 01:33:55Z reinaortega $
* $Id: OneM2M_Functions.ttcn 192 2016-11-30 21:52:33Z reinaortega $
* @desc Module containing functions for oneM2M
*
*/
......@@ -959,7 +959,7 @@ module OneM2M_Functions {
if(PX_UNSTRUCTURED) {
if(p_targetResourceIndex == -1) {
return "";
return PX_CSE_RESOURCE_ID;
} else {
return f_getResourceId(vc_resourcesList[p_targetResourceIndex].resource);
}
......
......@@ -7,7 +7,7 @@
*
* @author ETSI
* @version $URL: https://forge.etsi.org/svn/oneM2M/trunk/ttcn/LibOneM2M/OneM2M_Pixits.ttcn $
* $Id: OneM2M_Pixits.ttcn 156 2016-11-02 13:35:44Z carres $
* $Id: OneM2M_Pixits.ttcn 192 2016-11-30 21:52:33Z reinaortega $
* @desc Module containing Pixits for oneM2M
*
*/
......@@ -30,7 +30,11 @@ module OneM2M_Pixits {
modulepar charstring PX_XML_NAMESPACE := "om2m=""http://www.onem2m.org/xml/protocols""";
modulepar XSD.ID PX_CSE_NAME := "in-name";
modulepar XSD.ID PX_CSE_NAME := "cseName";
modulepar XSD.ID PX_CSE_ID := "cseId";
modulepar XSD.ID PX_CSE_RESOURCE_ID := "cseResourceId";
modulepar XSD.AnyURI PX_URI_CSE := "in-name";//TODO to be deleted
......@@ -51,8 +55,6 @@ module OneM2M_Pixits {
modulepar charstring PX_SERIALIZATION := "XML";
modulepar charstring PX_PROTOCOL_BINDING := "HTTP";
modulepar XSD.ID PX_CSE_ID := "in-cse";
modulepar boolean PX_FROM_IS_AE_ID := true;
//@Martin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment