Doug, In FlexViewer 2.2 there is really no need for the remote server method of saving as FV2.2 requires Flash Player 10 or above which gives you the ability to save files to the client machine. Try this: const fileReference:FileReference = new FileReference();
fileReference.addEventListener(Event.COMPLETE, removeCur);
fileReference.addEventListener(Event.CANCEL, removeCur);
fileReference.addEventListener(IOErrorEvent.IO_ERROR, removeCur);
fileReference.addEventListener(SecurityErrorEvent.SECURITY_ERROR, removeCur);
fileReference.save(myPDF.save(Method.LOCAL,"",Download.INLINE,"myPDF.pdf"),"map.pdf");