I've tested some cases.
Chrom and IE6 and Safari was ok. But, FF 3.5 and IE8 ( as emulated IE7 mode) doesn't worked.
Lastly, I know that prototype.js has conflict with "RpcContainer.000.js" or "IFPC_externalIframe005.js"
If you include http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.3/prototype.js" in IFPCExampleInternal.html,
it will be not worked properly. (in IE8)
I think that MDP team must more test many cases.
append1. I found that prototype.js extends Array.prototype.toJSON.
If you insert following code after include prototype.js, all IFPC call is ok.
------------------------------------------
<script>
if (window.JSON) {
delete Array.prototype.toJSON;
}
</script>
------------------------------------------
I don't know why extened toJSON has problem.
Please, check this problem. (FF 3.5 has same problem)