rdelgado
Posts: 8
|
| Posted: 10/18/2006, 1:11 PM |
|
Greetings,
I'd like to add some bells and wistles to a legacy ccs asp web app. Unfortunately most of the technology I'm looking to integrate is more cost effective on the unix side of the house...
Any suggestions on how to best package an app spread across to server platforms...
Example:
Say I want to add web blog hosting (using WordPress on a unix server) to my legacy ccs asp app. I'd like to avoid confusion and make the redirect as seamless as possible maybe even transparent.
Can subdomains reside on seperate servers? (is this possible)
mydomain.com (on ms/IIS)
blog.mydomain.com (on unix)
I guess I could use multiple domains?
mydomain.com (on ms/IIS)
mydomainBlog.com (on unix)
ccs Login considerations across server?
Could I easily point the new ccs unix apps to our msSQL database connections if and when possible?
If converting the legacy code to a unix platform was an option, I would, but I just don't have time and resources to do so...
Thanks in advance...
|
 |
 |
Benjamin Krajmalnik
|
| Posted: 10/18/2006, 8:20 PM |
|
Domains can of course span multiple servers which are not heterogenous.
One of my apps runs on a FreeBSD server/PHP. I have a script which works as
an agent (runing on multiple windows boxes) which retrieves data from MSSQL,
creates an XML envelope, and posts it to the FreeBSD server. In one
instance, the data contains the locatino of a log file. Using SMB, when you
click on the log file, I retrieve it from the Windows box and feed it
through the FreeBSD box (running php5/PostgreSQL).
Your main issue is going to be one of accomplisghing a single sign-on. YOu
could have the ecndary feed in an iframe, or by any of many other means.
This is already one of design choice.
"rdelgado" <rdelgado@forum.codecharge> wrote in message
news:245368a67cddac@news.codecharge.com...
> Greetings,
> I'd like to add some bells and wistles to a legacy ccs asp web app.
> Unfortunately most of the technology I'm looking to integrate is more cost
> effective on the unix side of the house...
>
> Any suggestions on how to best package an app spread across to server
> platforms...
>
> Example:
>
> Say I want to add web blog hosting (using WordPress on a unix server) to
> my
> legacy ccs asp app. I'd like to avoid confusion and make the redirect as
> seamless as possible maybe even transparent.
>
> Can subdomains reside on seperate servers? (is this possible)
>
> mydomain.com (on ms/IIS)
> blog.mydomain.com (on unix)
>
> I guess I could use multiple domains?
>
> mydomain.com (on ms/IIS)
> mydomainBlog.com (on unix)
>
> ccs Login considerations across server?
>
> Could I easily point the new ccs unix apps to our msSQL database
> connections
> if and when possible?
>
> If converting the legacy code to a unix platform was an option, I would,
> but I
> just don't have time and resources to do so...
>
> Thanks in advance...
>
>
>
>
>
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|