I am looking for a tool that will help automate my order process procedure. I get orders from Amazon and eBay in XML. I currently have a pretty good system in place but I feel that there is a way to automate it even more. Here are the steps currently go through.
1. I have a C# program the grabs the XML from Amazon and eBay
2. I then upload the XML to my web server
3. I navigate to the PHP Parsing file using $xml = simplexml_load_file($_GET["file"]); then changing the order number for every order.
4. I then copy the result into an XML file
5. Then I save that file into my API in folder.
Is there a way that I can change that to something like this...
1. Use the C# to get the XML (currently is grabs all the orders and puts them into separate XML files in one folder)
2. Run "something" that goes through all the XML files in that folder, parses the XML into the format that my API can read, then saves the resulting file to my API in.
I am not at all looking for someone to do this for me. I just need a gentle nudge in the right direction. Are there any software packages that can help with this, should I try a BAT file...
Like I mentioned it is a pretty good system but if I start getting north of 50 or 60 orders a day it will be too cumbersome.
Thanks,
Kane
1. I have a C# program the grabs the XML from Amazon and eBay
2. I then upload the XML to my web server
3. I navigate to the PHP Parsing file using $xml = simplexml_load_file($_GET["file"]); then changing the order number for every order.
4. I then copy the result into an XML file
5. Then I save that file into my API in folder.
Is there a way that I can change that to something like this...
1. Use the C# to get the XML (currently is grabs all the orders and puts them into separate XML files in one folder)
2. Run "something" that goes through all the XML files in that folder, parses the XML into the format that my API can read, then saves the resulting file to my API in.
I am not at all looking for someone to do this for me. I just need a gentle nudge in the right direction. Are there any software packages that can help with this, should I try a BAT file...
Like I mentioned it is a pretty good system but if I start getting north of 50 or 60 orders a day it will be too cumbersome.
Thanks,
Kane