Reputation: 26122
I have a page which needs to redirect a user to another separate system (I have no access there). The system requires some parameters to be sent to it via POST (for example "userId"). The problem is, that my page is in UTF-8 and the other system's encoding is ISO-8859-1.
Also, it could take some time to process the request for the other system. That's why while the request is processing, user should be seeing some "Please wait, you are being processed by the system" in my page.
The best way how I'd like it to look is something like this:
The problem is, I can not make a form as it will post the data in UTF-8 and the other server will try to parse it as ISO-8859-1.
What are the possible solutions?
Thanks in advance.
Upvotes: 1
Views: 531
Reputation: 26122
Managed to make it using iframes. Iframe can have it's personal encoding loaded.
Upvotes: 1