Click here to Skip to main content
15,886,806 members
Articles / Programming Languages / C#

UDDI Explorer: Tool for Searching Web Services

Rate me:
Please Sign up or sign in to vote.
4.93/5 (49 votes)
20 Dec 200517 min read 221.8K   3.2K   109  
Tool for searching web service(s) and viewing their WSDL information
using System;
using System.Xml;
using System.Xml.Serialization;
using System.Collections;


namespace UDDI_Explorer
{
	/// <summary>
	/// Summary description for UDDIServiceList.
	/// </summary>
	[Serializable]
	public class UDDIServiceList : CollectionBase
	{
		public UDDIServiceList()
		{

		}

		~UDDIServiceList()
		{

		}

		public int Add(UDDIService item)
		{
			
			return List.Add(item);
		}
		public void Insert(int index, UDDIService item)
		{
			List.Insert(index, item);
		}
		public void Remove(UDDIService item)
		{
			List.Remove(item);
		} 
		public bool Contains(UDDIService item)
		{
			return List.Contains(item);
		}
		public int IndexOf(UDDIService item)
		{
			return List.IndexOf(item);
		}
		public void CopyTo(UDDIService[] array, int index)
		{
			List.CopyTo(array, index);
			
		}
		
		public UDDIService this[int index]
		{
			get { return (UDDIService)List[index]; }
			set { List[index] = value; }
		}

		public virtual void Dispose()
		{
			
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Software Developer
Vietnam Vietnam
I'm still alive...but temporarily moved to work on mobile & web stuffs(j2me/brew/php/flash...something not M$). things have just been very busy, and probably will continue...so don't have chance to maintain & respond. Hope will have time to try to write again, because many ideas with WPF &silver light are waiting. wish me luck Smile | :)

FYI:
- MESHSimPack project(c# library for measuring similarity among concepts of the MESH ontology):
http://sourceforge.net/projects/meshsimpack.

Comments and Discussions