I am wondering if anyone has a way to use an alternate url for a single Ext.Direct call. I have a few calls in my app that need to be secure, so I need to swap out the url for an https url. I know I could just call a normal Ext.Ajax.request(), but I'd like to keep everything consistent. Any ideas?
I am wondering if anyone has a way to use an alternate url for a single Ext.Direct call. I have a few calls in my app that need to be secure, so I need to swap out the url for an https url. I know I could just call a normal Ext.Ajax.request(), but I'd like to keep everything consistent. Any ideas?
You can have two providers, one for normal calls and one for secure calls.
Hmmm, yeah, I tried that and came up with mixed results due to the fact that it's https. Is there a way to change the proxy for the new provider to a ScriptTagProxy? I can't see anything in the API regarding this.
On second thought, I can't use ScriptTagProxy if I am sending secure info since it doesn't accept post parameters. It appears this can't be done... or am I missing something? Is there a way other than creating an iframe and calling in a new https page to handle this?