Due to project requirements, I need to send XML that represents a dataset to a webservice and have the web service denormalize it and put the data into a SQL server. I need to only have one web method, i cannot have more then one.
The hard part: the XML always varies, but it will ALWAYS exactly match the database structure. For example, one XML could use A and B table but the next could use C and D, or even A,C, and D. It always varies.
I've got a few ways in my head to do this, but none of them i'm happy with as i think there must be a better way, any ideas?
The hard part: the XML always varies, but it will ALWAYS exactly match the database structure. For example, one XML could use A and B table but the next could use C and D, or even A,C, and D. It always varies.
I've got a few ways in my head to do this, but none of them i'm happy with as i think there must be a better way, any ideas?