tags:

views:

45

answers:

1

i am developing a website which will show details of different institutions/college. i have got many information source for my website, means i will collect information from 4-5 webservices/websites as xml files in which their will be name, address, user rating, and detais. please tell me how to manage "DETAIL" field. as i have 4-5 sources and may be i will get different details for same institute so whose detail i should show? how to select this.

please help me and give me some good approach that how and what to do in such situation

+2  A: 

If they mean the same thing, treat them as the same. If they mean different things, you'll have to decide whether to split your details into two or more information types and, depending on what webservice you're calling, use the appropriate one.

Will
some times its also quite possible that a detail(of any institute) can come from 3 source and some time a other details come from 5 different sources..so i m thinking to create priority for that so i will show that data of that webservice whose priority is seted high. what do u say?
Rajesh Rolen- DotNet Developer
That certainly would be an option. Also, you could append each detail to the current list and show them all, perhaps in order of importance. You could also hide the lesser important details in the UI unless the user elects to view the additional details.
Will
this is very good approach... but i think, i will get detail about institution for different sources will be very near to similar so i think i should not show details of all providers because that will repeat the matter... what do u say?
Rajesh Rolen- DotNet Developer
and thanks a lot for your support..
Rajesh Rolen- DotNet Developer
Without seeing them its hard to say. If you do not have enough information to decide, provide all the information you have to users and let them determine what they wish to know.
Will