I am trying to use this wsdl (http://multiplayerrobot.com/Diplomacy.svc), with as3-jaws. I get the error TypeError: Error #1080: Illegal value for namespace:
var wsdl:Namespace = _rawWSDL.namespace("wsdl");
var s:Namespace = _rawWSDL.namespace("s");
var types:XMLList = _rawWSDL.wsdl::types;
var schema:XMLList = types.s::schema; //error on this line
The wsdl doesn't seem to have anything relating to "s", and I tried "xsd" instead (resolves to http://www.w3.org/2001/XMLSchema), but that gives Error: Method not found as XMLList = schema.s::element; is empty.