Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > .NET General

Vista - Global vars in different build scenarios.

Reply
 
Old 10-07-2008   #1 (permalink)
Adrian


 
 

Global vars in different build scenarios.

We have a solution where one project contains a set of business rules. We
use the rules in a web application and they're integrated into the main web
project. Any global varaibles for the user are stored on the web session,
and that all works fine.

Now the fun part, we now have to be able to call these business rules from
an old powerbuilder app, where a web server isn't available, so have to use
a com interface layer to call the business rules. The problem is that we
need the com class to initialise some variables and make them available to
the rules class. I know there's not a session object, but how do you go
about coding for the two very different scenarios that the business object
will be living in?

Cheers
Adrian



My System SpecsSystem Spec
Old 10-08-2008   #2 (permalink)
Jeroen Mostert


 
 

Re: Global vars in different build scenarios.

Adrian wrote:
Quote:

> We have a solution where one project contains a set of business rules. We
> use the rules in a web application and they're integrated into the main web
> project. Any global varaibles for the user are stored on the web session,
> and that all works fine.
>
> Now the fun part, we now have to be able to call these business rules from
> an old powerbuilder app, where a web server isn't available, so have to use
> a com interface layer to call the business rules. The problem is that we
> need the com class to initialise some variables and make them available to
> the rules class. I know there's not a session object, but how do you go
> about coding for the two very different scenarios that the business object
> will be living in?
>
I don't know exactly who said it, but it's a truism that there's no problem
in computing that can't be solved by adding an extra layer.

Create a new assembly and within it define a UserGlobals class to hold the
globals you need. Give it a static factory method to return the globals for
a particular user. The business object should use that method only to get at
the globals, and the only thing that's different is the way you
create/initialize these instances. You can check HttpContext.Current to see
if you're running in the context of a website (you can reference System.Web
from any .NET assembly, it doesn't need to be a website project). If so,
retrieve settings from the session, if not, get them some other way.

--
J.
My System SpecsSystem Spec
Old 10-08-2008   #3 (permalink)
Adrian


 
 

Re: Global vars in different build scenarios.

Aha ok thanks Jeroen

"Jeroen Mostert" <jmostert@xxxxxx> wrote in message
news:48ecf63d$0$189$e4fe514c@xxxxxx
Quote:

> Adrian wrote:
Quote:

>> We have a solution where one project contains a set of business rules.
>> We use the rules in a web application and they're integrated into the
>> main web project. Any global varaibles for the user are stored on the
>> web session, and that all works fine.
>>
>> Now the fun part, we now have to be able to call these business rules
>> from an old powerbuilder app, where a web server isn't available, so have
>> to use a com interface layer to call the business rules. The problem is
>> that we need the com class to initialise some variables and make them
>> available to the rules class. I know there's not a session object, but
>> how do you go about coding for the two very different scenarios that the
>> business object will be living in?
>>
> I don't know exactly who said it, but it's a truism that there's no
> problem in computing that can't be solved by adding an extra layer.
>
> Create a new assembly and within it define a UserGlobals class to hold the
> globals you need. Give it a static factory method to return the globals
> for a particular user. The business object should use that method only to
> get at the globals, and the only thing that's different is the way you
> create/initialize these instances. You can check HttpContext.Current to
> see if you're running in the context of a website (you can reference
> System.Web from any .NET assembly, it doesn't need to be a website
> project). If so, retrieve settings from the session, if not, get them some
> other way.
>
> --
> J.

My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
By trying to setup System Vars for JAVA in vista I deleted the Software
Set ENV vars prior to external exe - Override NotifyBeginApplicati PowerShell
powergadget administrator scenarios PowerShell
Global Telecommunications Providers to Build Innovative Business IP Phones on Microsoft’s Unified Communications Platform Vista News


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46