HTTP Listener
-
I need a program that will run on a server that will be sitting idle waiting for a website to send it an xml file. when the xml file gets sent to the server I need to parse the xml file and insert some of the data into a oracle database. The program needs to be a http listener. the xml file will be small. Where do I start for making this program? Does anyone know if Oracle has a function like this built into it? Thanks all.
-
I need a program that will run on a server that will be sitting idle waiting for a website to send it an xml file. when the xml file gets sent to the server I need to parse the xml file and insert some of the data into a oracle database. The program needs to be a http listener. the xml file will be small. Where do I start for making this program? Does anyone know if Oracle has a function like this built into it? Thanks all.
You can do it in .NET really easy. All you need to do is a Web Service, the site will call a method on that web service and pass the data, and then the web service will insert into Oracle.
-
You can do it in .NET really easy. All you need to do is a Web Service, the site will call a method on that web service and pass the data, and then the web service will insert into Oracle.
How do you do this?? Can you make it so that an automatic method is called all the time. I cant make the server call a method. all I can do is enter in the address of my server and that is what the other server will send the XML file too. I know usually you need to call a method, but is it possible to have it call a default method or somehting like that? Any Ideas?? Thanks all.