Hi, I ran your example, see following code, and it ran fine (see screen shot). However, I did put the getNodeConfiguration with separate call (separate request), because setNodeConfiguration will take time to update the node, calling it immediately after setNodeConfiguration might not reflecting latest change. Also btw, we are updating more example code.
thanks
Dean
$configuration = array("persistItems"=>"true",
"userDependentItems"=>"true",
"publishModel"=>10,
"allowPrivateMessages"=>"true",
"lazySubscription"=>"false",
"allowPrivateMessages"=>"true",
"accessModel"=>20,
"modifyAnyItem"=>"false",
"itemStorageScheme"=>2,
"sessionDependentItems"=>"true",
"p2pDataMessaging"=>"false");
$afcs->subscribeCollection($roomname,$collectionname);
$afcs->createNode($roomname, $collectionname, $nodename);
$afcs->setNodeConfiguration($roomname,$collectionname,$nodename,$configuration);
echo "<h1> Create Node Sent </h1> ";
and separete request for getNodeConfigruation
