For Web services where you can browse on the Internet?
Answer Posted / swapna
For consuming Web services first we have to go to the UDDI
directory .In the UDDI directory we can find a link to
discovery file.
Then we can make a request for WSDL document.
This WSDL contains description of the services.
Then we have to integrate the webserice into our
application.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the features of asp.net mvc?
Why asp.net is used?
Explain the difference between asp & asp.net.
What kind of data can be stored in viewstate?
What is the difference between session and viewstate in asp.net?
What is difference in .net 1.1 and .net 2.0?
What is the default Orientation property in a Menu control?
What are cookies in your browser?
Can we set master page as a start page?
Can you nest updatepanel within each other?
How can we provide the WebParts control functionality to a server control?
What is difference between cookies and cache?
How does viewstate work?
What is x xss protection?
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal