I´m not sure if my issue is related to start with a Project instead of a WebSite or if it is related to try MVC in place o WebForm.
I have to consume about 24 diferent webservices and my issue is how can I organize all these webservices, to simplify they are 6 webservices in 4 diferent groups (North, South, East and West) which means states located by region.
In WebSite/WebForm, I just add a reference and point each webservice to same folder, no issue, and classes are generated at runtime. So here there is just 4 folders and 6 groups of files representing each webservice
Now in Project/MVC, when I add a reference (wsdl file), each webservice should be in a dedicated folder and a Reference.map and Reference.vb is created, this forces to have 24 folders one for each webservice. Of course I understand that due to fixed file name "Reference"
On the other hand, looks after all done, I can move files, but still have to maintain one folder per webservice.
So, Is there a better way to organize these References, Folders and Files?
Is there any problem if I move generates files to another place in a way that best suit to have files organized like North, South, East and West? Doing this (move files) I notice, class if found on Import statement but Icon representation on Solution Explorer
will not be same
finally what am I missing here?