|
|
Browse by Tags
All Tags » .NET » C# (RSS)
-
I was recently asked how to call WCF Service asynchronously from ASP.NET. Here's my sample code:
1) WCF Service Library Implementationnamespace WcfServiceLibrary1
{
[ServiceContract]
public interface ISampleService
{
[OperationContract]
string SayHelloWorld();
}
}
namespace ...
-
See ScottGu's announcement at: http://weblogs.asp.net/scottgu/archive/2008/10/14/silverlight-2-released.aspx
Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live it!
|
|
|