Web Services

  • Thread starter Thread starter Randy
  • Start date Start date
R

Randy

Hello,
I'm trying to dynamically create a WebService object and assign the service
URL and hit the server and pull back any services available from that
server. I'm not finding any useful examples (source). Can someone please get
me started in the right direction.
Thanks
Randy
 
Actually, I meant that I was trying to create a service reference
dynamically and hit the said web service. I want to do this dynamically.
 
Hi Randy,

I think what you need is a UDDI. Here are some articles about UDDI and how
to use UDDI at runtime.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnexxml/htm
l/xml12182000.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnuddi/html
/runtimeuddi1.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnuddi/html
/runtimeuddi2.asp

If anything is unclear, please feel free to reply to the post.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Thanks for the info. I'm having a little trouble finding what to download.
I've found the Beta 2.0 UDDI on Microsoft's site, but I'm pretty sure that
is old. I also searched on Microsoft's site for UDDI. I found the Core SDK
which had UDDI listed as one of the components. I downloaded and installed
this but I'm not seeing anything about UDDI now in the program group. Do I
have the right thing installed?
Thanks
 
Hi Randy,

Just to install and use UDDI Services, all you need is Windows Server 2003.
So if all you are doing is interacting with the web interface or sending raw
SOAP XML messages to the server, you don't need any additional software.

But if you are writing an application in VS.NET that interacts with UDDI
Services you should install the Microsoft UDDI SDK.

When you ship your application to your client, remember to package the file
"Microsoft.Uddi.dll" along with your application binaries. During install of
your application, register this DLL in the Global Assembly Cache using the
command "gacutil.exe /i Microsoft.Uddi.dll". This will register the SDK dll
on the client machine and allow your application to run on the client's
machine.

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."
 
Back
Top