Tagged Questions

2
votes
2answers
373 views

Can I host an ASP.NET application in a CAB WinForms application?

I have a .NET 2.0 WinForms application that was developed using the Composite Application Block and Smart Client Software Factory. I'm considering the development of a module that would contain a ...
2
votes
1answer
335 views

What is the best practice for domain model re-use in composite applications?

We have a composite application built using the Composite UI Application Block (CAB)/Smart Client Software Factory (SCSF). To date, each module in our composite app has used its own set of DTO's, and ...
1
vote
1answer
79 views

CAB: Get service instance without having a reference to WorkItem

Is it possible to get an instance of a service without having a WorkItem context? I have a some classes that need to access some services, and i'm wondering if it's possible to get those services ...
1
vote
2answers
132 views

How to Shift from MVP pattern to SCSF CAB pattern?

I have designed and developed my application in MVP Pattern. I have not used any software factory to achieve this. Now i want to shift to SCSF pattern and CAB structure. I need to know if it can be ...
1
vote
2answers
306 views

CAB/SCSF Command vs Events

What is the difference between the Commands and the Events in CAB? There seem to do the same thing, when is the command intent to be used and the events?
1
vote
0answers
78 views

SCSF Calling services asynchronously

are there any best practices for calling SCSF services asynchronously? Particularly I'm interesting in: Executions of requests in background; Cancellation support; Reporting progress. Currently I ...
1
vote
2answers
164 views

Composite Application Block - Is there a suitable replacement available?

I have two very large WinForm applications built on the now dead Composite Application Block ("CAB") from Microsoft Patterns & Practices. I was an earlier adopter and jumped in first to embrace ...
0
votes
1answer
40 views

Assembly file \\sv-db1\server\bin\file:\\sv-db1\server\bin\shell.exe was not found

We have installed C# 3.5 application in the server. and installed the client app in each client using Map drive. All exes are opening fine from Main.exe in the server. (main.exe developed using ...
0
votes
1answer
79 views

Composite UI Application for asp.net

Do we have Composite UI Application equivalent for asp.net MVC? Can SCSF be used with ASP.NET ?
0
votes
1answer
164 views

SCSF custom Dependency Injection

I'd like to enhance/mimic the dependency injection done by the object builder to include some custom properties the standard way is in mySmartPart.cs [CreateNew] MyPresenter ABC { .... } ...
0
votes
1answer
512 views

SCSF: display view from another view against button click

i am facing one problem in SCSF. I have two workspaces MdiWorkspace DeckWorkspace i have two views in a module Viewer (display in mdiworkspace) Property Viewer (in deckworkspace) in Viewer i ...
0
votes
1answer
677 views

Is it possible to display a modal window in SCSF application at the center of the screen

In SCSF application I would like to display a view as a modal window at the center of the screen. Is it possible to do that? WindowSmartPartInfo doesn't have any option for setting screen postion. ...