views:

9

answers:

0

Dear Gurus

I have a Sync Services built using .Net WCF, .net 4.0,SQL Server 2008 and hosted in a windows service.

Following are some custom implementation we have done;

  1. Custom DB Connection Pooling, filled on the start of Application, and there is a cleanup thread as well which runs through out the life cycle of application.

  2. Custom Sessions, as application was not targeted to be deployed on IIS and BasicHTTPBinding was used therefore custom session were implemented. Hence a Cleaup thread also runs to clear non-active sessions.

  3. [Specific Table] Cache, There is a specific table in database which used to hit with a high frequency therefore we implemented a custom cache to avoid too many hits to database, this cache initiates at the start of Application.

With consideration of above points please Suggest me Following;

  1. Is this application suitable to be deployed on IIS? (I thought application deployed on IIS, remains alive only in activity and stops when it gets idle, so caching, pooling will be lost and re-initialize)

  2. Is Amazon EC2 is suitable for this; OR I should sign-up for EC2 windows Instance? please brief me on this(I have never used ec2 before nor having much information about it)

  3. Is fail-over clustering is supported?

  4. Is there any option for Demo Account?

  5. What about Windows Azure should i consider that too?

Regards