Tagged Questions
The Microsoft Web Client Software Factory is a framework that allows creating ASP.NET applications as a set of loosely-coupled modules. It provides a Model-View-Presenter framework and a dependency injection system based on Microsoft Unity to dynamically wire pages, presenters and other services together. It is produced by the Patterns and Practices group of Microsoft.
11
votes
7answers
5k views
ASP.NET MVC vs. Web client software factory (WCSF)
I have recently been doing a bit of investigation into the different types of Model View architectures, and need to decide which one to pursue for future in-house development. As I'm currently working ...
5
votes
1answer
393 views
Is WCSF for me?
I have a 3-man .NET web shop. Over the years we've developed a number of tools for content management, blogging, e-commerce, social network, and so on. We've never really modularized the software, ...
4
votes
2answers
2k views
How do I integrate the ASP .Net Model View Presenter (MVP) pattern and static page methods marked as [WebMethod]?
In an asp.net application, I would like to combine the use of the Webclient Software Factory (WCSF), and its associated Model View Presenter pattern (MVP), with Page Method, that is static methods on ...
3
votes
2answers
532 views
How should comments for interface and class methods be different
I ran into this dilemma when working on an ASP.net web application using Web Client Software Factory(WCSF) in C#, and the same could apply to other platform and languages. My situation is like this:
...
2
votes
3answers
526 views
IoC comparisions [closed]
Which IoC to consider while developing ASP.NET Web application project and what are the advantages of different IoC?
ObjectBuilder
Unity
Spring.NET
2
votes
4answers
1k views
Is .NET WCSF the way to go?
We are in the process of building a web site which would display news headlines and news. It would be a public site to start with but going forward might include portal functionalities like ...
2
votes
4answers
228 views
How can I make a framework for quickly building similar, but different, sites?
I have the need to build lots of sites that are very similar, but not exactly the same, using ASP.NET 2.0.
I'm trying to find the best way to make generating these sites quick and easy.
The sites ...
1
vote
2answers
98 views
How does one fix the “'System.Security.Permissions.SecurityAction.RequestMinimum' is obsolete” compilation error?
I received the following compilation warning as a error while upgrading some ASP.NET code from .NET 3.5:
'System.Security.Permissions.SecurityAction.RequestMinimum' is obsolete.
The attribute has bee ...
1
vote
2answers
390 views
ASP.NET MVC with Composite Web Client application block
I am new to ASP.NET MVC, I want to develop an asp.net page/Shell , the shell will host multiple UI/components.I discovered 'Webclient software factory' .I wanted to know if asp.net MVC is supported by ...
1
vote
2answers
430 views
WCSF vs MEF, What's Best For Me?
I'm working on a large web application that includes many modules (CRM, Inventory, Administration, etc.) What I want to accomplish is to be able develop each of these modules independently (the UI, ...
1
vote
0answers
79 views
Dynamic pages and controls with Asp .NET
We are starting with the design of an ASP .NET Web UI using WCSF as the UI FW. We are evaluating some FW which will allow us to build dynamic pages, dynamic as in, deciding at runtime what user ...
1
vote
4answers
301 views
Not getting user input from TextBox
I'm starting to loose my nerves on some completely banal thing: I don't get user input from a TextBox :S
I do something like this (code behind aspx):
protected void Page_Load(object sender, ...
1
vote
1answer
539 views
Why use WCSF(Web Client Software Factory) for building asp.net web applications?
WCSF is a software factory recommended from microsoft for developing web based applications. I feel that some thought is required on below before commiting to a software foctory:
What is it?
What ...
1
vote
3answers
269 views
What is the Controller for in WCSF?
I am still trying to get my brain wrapped around MVP. What should I use the controller class for? Is that where I access data resources?
1
vote
1answer
98 views
Why is there an option to create a separate class library for interfaces with business modules?
In wcsf, it is possible to make a business module with a separate class library just for interfaces, if I tick the relevant box/boxes.
What is the point in having a separate class library just for ...
1
vote
1answer
291 views
WCSF Random assembly manifest definition does not match assembly ref in .NET 2.0
I'm running WCSF Feb 2008 along with Enterprise Library 3.1 and noticed that randomly I get the "fun"
Could not load file or assembly Microsoft.Practices.EnterpriseLibrary.Common, Version=3.1.0.0, ...
0
votes
0answers
11 views
WCSF - configuration registration for type mappings?
It appears from WCSF 2010 documentation that the config file schema only provisions for services (singletons) so that only [ServiceDependency] decorations may be satisfied via configuration
...
0
votes
1answer
59 views
“Web Client Software Factory 2010” no longer maintained?
I have just learnt that there is a library "Web Client Software Factory 2010" for ASP.Net development. It seems to be useful for modular ASP.Net Development.
When I am directed by this link to this ...
0
votes
0answers
25 views
showing validation results from ServerSideValidationExtender as summary
I am trying to show validation results from AjaxControlToolkit.WCSFExtensions.ServerSideValidationExtender in an inbuilt summary control i.e asp:validationsummary control. The control is behaving very ...
0
votes
2answers
97 views
Guidelines and design decisions with .NET and WCSF
We have started migration of a .NET thick client application to web. The scope of the work
is restricted to migrating the winforms UI to web UI. The biz logic components will be reused as-is after ...
0
votes
2answers
376 views
Creating a Data Access Layer when using Web Client Software Factory 2010
I am exploring WCSF and wondering how is the data access layer created? Some of the articles I have found are two years old and talk about using Web Service Factory. I am using VS 2010 and .Net 4.0. I ...
0
votes
2answers
108 views
Suggestions/Recommendations for a Web Application with Sub-Apps
I’m starting to think about and develop an architecture for a big web application, and I wanted to get suggestions and/or recommendations on which technologies and/or frameworks to use.
The ...
0
votes
2answers
449 views
WCSF reading materials
Please suggests good articles which helps in grasping concepts of wcsf architecture, usage with a possible demonstration.
Regards,
Justin Samuel.
0
votes
1answer
139 views
Achieving unit testability of Presenter while using CSLA Framework with WCSF
The WCSF uses Model View Presenter (MVP) pattern for organizing/structuring the source code for a website. When MVP pattern is used correctly, it provides seperation of concerns, unit testability of ...
0
votes
1answer
81 views
Automatic model binding in asp.net
I've been using asp.net mvc and I like the facility given by UpdateModel & TryUpdateModel. Now I'm developing an application using the Web Client Software Factory. Are there any model binders I ...
0
votes
1answer
157 views
Modifying Web Client Software Factory generation templates to use web application project
By default the WCSF uses the web site model but I would like to change it to use the web application model. How can I achieve this?
0
votes
3answers
579 views
Web Client Software Factory Unit Testing Big Fail
it is me again...too much question, I know, but in this I'm kind of a newbie...
Well, I have a problem creating test for a project that is built using Microsoft's Web Client Software Factory: I get a ...
0
votes
2answers
457 views
Can the Presenter of Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) shared and how?
Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) both use MVP pattern.
M-Model can be shared.
V-View has to be different as both are on different platform(Desktop/Web).
I ...
0
votes
1answer
500 views
How do I create a custom validator in VAB that tests two properties at once?
In my database, I have a composite unique key constraint (CustomerId, Name) on a entity. I want to test if the unique constraint is upheld before submitting changes to the database. The user can ...
0
votes
2answers
276 views
How to create a custom template for WCSF (.NET 2.0)?
I'm new to the WCSF and can't seem to find anything related to "building a custom template" for creating the views/presenters/code-behinds/etc with your own flavor ...
Can anyone point me in the ...