Is it possible to create an Input that receives an HTTP POST message whose content type is application/x-www-form-urlencoded ?
I would like to receive the following and create an event.
Solved! Go to Solution.
Hey @MAGICMuscatineAreaGeographicIn
At the moment GeoEvent doesn't support URL form encoded data (there is no OOTB adapter for it). GeoEvent does natively support XML, JSON, GeoJSON, and CSV, so you will need to convert the data into one of those formats before sending. If you cannot change the format of the incoming data, you will need to create a custom adapter using the GeoEvent SDK or a separate application to receive the form data, translate it into one of the supported formats, and forward it to GeoEvent.
Hey @MAGICMuscatineAreaGeographicIn
At the moment GeoEvent doesn't support URL form encoded data (there is no OOTB adapter for it). GeoEvent does natively support XML, JSON, GeoJSON, and CSV, so you will need to convert the data into one of those formats before sending. If you cannot change the format of the incoming data, you will need to create a custom adapter using the GeoEvent SDK or a separate application to receive the form data, translate it into one of the supported formats, and forward it to GeoEvent.
Eric
Thanks for the quick reply.