|
|
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
31 Articles match "Host"
|
Related DevelopMentor Courses
|
MORE
|
|
NET Architecture and Design Principles: Building Distributed Applications
Hosting and Deployment Once a component of a distributed system is built, we must push it out into a production environment or to the customer. We look at the options available for hosting an application either with Windows Services or ASP.NET. Learn to build systems that are scalable, reliable and secure. Discussions range from object-oriented programming to enterprise patterns, networking to Web Services, caching to distributed databases, and client/database applications to very large-scale web sites. How can I use patterns to design extensible, reusable services? Using C# 3.0's
DevelopMentor Courses
- Friday, June 12, 2009
SharePoint for Developers (WSSv3/MOSS2007)
client application may need to run off-host and communicate with the server via web services in order to complete required tasks. We explore the more powerful and common web services needed for building rich off-host applications that leverage SharePoint technologies. The technologies covered will each be deployed utilizing the new feature and solution framework in WSS. You'll get answers to these questions: How do I understand the page-processing and request-processing framework? How can I build custom lists, pages, master pages, web parts, event handlers, content types and more?
DevelopMentor Courses
- Friday, June 12, 2009
Essential Silverlight 3
You will also see a quick survey of the controls in the Silverlight Toolkit, the open source project hosted on CodePlex. Create Rich Internet Applications (RIAs) using languages and libraries that you already know. Deliver online business applications, multimedia websites, and games to Windows, Mac OS, and Linux clients. You'll get answers to these questions: How does Silverlight compare to Flash, AJAX, and WPF? How do I use graphics, animations, effects and media to build compelling user interfaces? How can I utilize background threads to make my UI more responsive?
DevelopMentor Courses
- Wednesday, June 17, 2009
|
101 Articles match "Host"
|
The Latest from DevelopMentor
|
MORE
|
|
Moving StarterSTS to the (Azure) Cloud
This was accomplished by using the HTTP Host header to generate URLs instead of the local machine name. Quite some people asked me about an Azure version of StarterSTS. While I kinda knew what I had to do to make the move, I couldn’t find the time. Until recently. This blog post briefly documents the necessary changes and design decisions for the next version of StarterSTS which will work both on-premise and on Azure. Provider. Fortunately StarterSTS is already based on the idea of “providers”. This makes the migration to different data stores less painful. URL Handling. New Features.
www.leastprivilege.com
- Wednesday, August 11, 2010
Thinktecture.IdentityModel: WIF Support for WCF REST Services and OData
var host = base.CreateServiceHost(serviceType, baseAddresses); host.Authorization.ServiceAuthorizationManager =. new FederatedWebServiceAuthorizationManager (); host.Authorization.PrincipalPermissionMode = PrincipalPermissionMode.Custom; return host; }. }. The last step is to set up the.svc file to use the service host factory (see the sample download). The latest drop of Thinktecture.IdentityModel includes plumbing and support for WIF, claims and tokens for WCF REST services and Data Server (aka OData). support for SAML and SWT tokens. Setting up the Data Service.
www.leastprivilege.com
- Wednesday, May 5, 2010
More Workflow 4 Services and duplex communications
var address = "[link] ; var serviceCallback = new ServiceCallback(); var host = new ServiceHost(serviceCallback, new Uri(address)); host.Open(); var proxy = new ServiceClient(); Console.WriteLine(proxy.GetData(42, address)); Console.ReadLine(); proxy.Close(); host.Close(); }. Yesterday I posted a long blog post explaining how to do duplex communications in a Workflow service. So what is the problem with this? There is no real problem per se except that it takes quite a bit of doing to set this up, both on the client and in the workflow service. As it turns out it is! Conclusion.
The Problem Solver
- Tuesday, May 4, 2010
|
-
|
The Best from DevelopMentor
|
MORE
|
-
Host Headers, SSL and WCF Metadata
The server also hosts some WCF services and I noticed that the imports and endpoint addresses in the WSDL point to the machine name and not to the DNS name. No big deal – simply set the host header for the site via the IIS GUI and I am done. And sure enough, after the configuration change my WSDL was correct and used the name configured in the host header. After some googling I found articles about something I totally forgot about: SSL host headers. Since IIS 6 you can also set host headers for SSL site bindings. Everything looks good. What’s going on here?
www.leastprivilege.com
- Tuesday, February 10, 2009
-
Hosting of Code Samples
The other day when I posted about the sample how to call a WCF Service from a SQLCLR method , I mentioned that I had no place to host my demo-code. did not want to create a project on CodePlex (like I did with the SQLCLRProject ), as demo code is not really projects per se. discussed this with David Reed from Microsoft who is a PM on the SQL Server team, and has a lot to do with overseeing the SQL projects on Code Plex. He mentioned MSDN’s Code Gallery , which is a place where you can create resource pages and upload code for download.
Managed Data
- Thursday, February 12, 2009
-
Geneva Framework Quick Tip: Hosting a Security Token Service
The idea of the security token service infrastructure in Geneva is, that it is completely host agnostic. It is the job of the host to translate some protocol back and forth to this technology independent representation. The key to STS hosting (and that’s btw what the WCF WSTrustServiceContract class or the FederatedPassiveSignin web control does) is to create a token service from configuration. The STS itself expects a RequestSecurityToken and returns a RequestSecurityTokenResponse. And this couldn’t be easier ;).
www.leastprivilege.com
- Wednesday, May 27, 2009
-
Rehosting the Workflow Designer in WF4
Both these properties point to ready to use WPF UIElement’s so, as long as the host used WPF, adding them to a form is easy. Note: This blog post is written using the.NET framework 4.0 Beta 2 With Windows Workflow Foundation 3 it was possible to rehost the workflow designer in your own application. But possible is about all there was to say about it as it was pretty hard to do anything beyond the basics. Now that is more like it! The WorkflowDesigner The WorkflowDesigner is the main class to work with. One thing that is needed is to register the workflow activity designer metadata.
The Problem Solver
- Wednesday, December 23, 2009
-
Workflow 4 Services and duplex communications
Next step is to update the Main() function to host this service: static void Main( string [] args). {. var address = "[link] ; var serviceCallback = new ServiceCallback(); var host = new ServiceHost(serviceCallback, new Uri(address)); host.Open(); var proxy = new ServiceClient(); Console.WriteLine(proxy.GetData(42)); Console.ReadLine(); proxy.Close(); host.Close(); }. Note that this looks just like a service would when self hosting. There are quite a a few cases where it is useful to have a duplex communications. public interface IService1. {. OperationContract].
The Problem Solver
- Monday, May 3, 2010
-
Using WF4 bookmarks with IWorkflowInstanceExtension
Neither the WorkflowInvoker not the WorkflowServiceHost contain a ResumeBookmark function so how do we resume a bookmark using either of those execution hosts? Note: This blog post is written using the.NET framework 4.0 Beta 2 In this previous blog post I showed how to create an asynchronous activity using the NativeActivity and CreateBookmark to pause a workflow execution. Using that in a WorkflowApplication was easy but what about WorkflowInvoker or WorkflowServiceHost? So what about using a WorkflowInvoker or a WorkflowServiceHost? The trick is to use a IWorkflowInstanceExtension.
The Problem Solver
- Wednesday, January 27, 2010
-
TryCatch activity in WF4
This means that an exception that is unhandled which bubbles terminating the workflow up will not cause the finally block to execute unless the host application forces it to do so by returning UnhandledExceptionAction.Cancel from the OnUnhandledException instead of UnhandledExceptionAction.Terminate (the default). I can’t say I am a fan of the way the TryCatch activity is implemented in Windows Workflow Foundation 4. For starters there is a Finally block where you can add some activities you want to execute. Except that it behaves in a subtlety different way. FaultSource.Name; }. }. }.
The Problem Solver
- Thursday, November 26, 2009
|
|
|