You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 30, 2024. It is now read-only.
in XMLHTTPServiceProvider urlSuffix & serializer are declared protected
protected var urlSuffix:String;
protected var serializer:ISerializer;
so one needs to subclass to modify them if they were declared public or had setter it would make changing them easier for those who want to use for example standard xml format instead of fxml or want to use a customized serializer
Also in XML serializer ID need to be give as a child tag of the node but sometimes it is given as an attribute instead so changing
var node:XML = XML(source);
.....
var nodeId:String = node.id;
.....
to
var node:XML = XML(source);
.....
var nodeId:String = node.id;
if(!nodeId)
node.attribute("id");
.....