Pretty sure the answer is no, but I've not been able to articulate the question in a way that's let me find a definitive answer via search.
Can I make a local html file that submits a form to a website, and have that data accepted?
At work I basically copy info, from an xml source that arrives email by email, into multiple tools. This feels a bit like a job for a robot. I'd like to make a webpage that accepts the xml file and automatically sorts the data into form fields that I can submit via POST directly to the web tools.
- Can't be done without a webserver right?
- And even then, cross domain posting is usually disallowed?
I don't have access to the databases or apis unfortunately. And we use IE9, so I don't think there's an approach like greasemonkey or a homemade extension that I could leverage to move the data directly into the webform on page.
Thanks for confirming if this is possible or not.