You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Omar Adobati <om...@gmail.com> on 2005/01/24 11:08:36 UTC

sharing webapplication

Hi to everybody,

  I need an idea. suppose I have some webapp that i need to share
among some other webapplication. For example, suppose I have three
customer website each that need the access to a reserved area. Suppose
thet I want to use just on login webapp shared among all my customers;
suppose I need that every login page need to by skinned as the rest of
the website.

The main issue I want to obtain is to manage just one shared webapp
fot all customers to better menaging upgrades, bug fixing and so on. I
think that skin the website is not a problem... I shoud use XML +
XSL(T) to skin... the matter is how to share.

What are the best way to do this? 

(sorry bad english)

-- 
Adobati Omar

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: sharing webapplication

Posted by Omar Adobati <om...@gmail.com>.
This seems to be a nice way to try out...
I'll say you if this should work as I hope.

I'm waiting for other suggestions too



On Mon, 24 Jan 2005 11:45:20 -0500, Parsons Technical Services
<pa...@earthlink.net> wrote:
> Way out on a limb here. (Assuming) If you are having three customers then
> you have three URLs. If this is true, maybe you could use the alias and
> setup something like this:
> 
> secure.companya.com
> secure.companyb.com
> secure.companyc.com
> 
> where all three are pointed to the same app. I have NOT done this and am not
> sure it will work.
> 
> But the way the documentation reads it should. From there have the
> secure.company...... added to the dns on each domain to point to the server.
> 
> Doug
> 
> 
> ----- Original Message -----
> From: "Omar Adobati" <om...@gmail.com>
> To: <to...@jakarta.apache.org>
> Sent: Monday, January 24, 2005 10:48 AM
> Subject: Re: sharing webapplication
> 
> > nobody can help me too?
> >
> >
> >
> > On Mon, 24 Jan 2005 11:08:36 +0100, Omar Adobati <om...@gmail.com>
> > wrote:
> >> Hi to everybody,
> >>
> >>  I need an idea. suppose I have some webapp that i need to share
> >> among some other webapplication. For example, suppose I have three
> >> customer website each that need the access to a reserved area. Suppose
> >> thet I want to use just on login webapp shared among all my customers;
> >> suppose I need that every login page need to by skinned as the rest of
> >> the website.
> >>
> >> The main issue I want to obtain is to manage just one shared webapp
> >> fot all customers to better menaging upgrades, bug fixing and so on. I
> >> think that skin the website is not a problem... I shoud use XML +
> >> XSL(T) to skin... the matter is how to share.
> >>
> >> What are the best way to do this?
> >>
> >> (sorry bad english)
> >>
> >> --
> >> Adobati Omar
> >>
> >
> >
> > --
> > Adobati Omar
> > omar.adobati@gmail.it
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
> > For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
> >
> >
> >
> 
> 


-- 
Adobati Omar
omar.adobati@gmail.it

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: sharing webapplication

Posted by Parsons Technical Services <pa...@earthlink.net>.
Way out on a limb here. (Assuming) If you are having three customers then 
you have three URLs. If this is true, maybe you could use the alias and 
setup something like this:

secure.companya.com
secure.companyb.com
secure.companyc.com

where all three are pointed to the same app. I have NOT done this and am not 
sure it will work.

But the way the documentation reads it should. From there have the 
secure.company...... added to the dns on each domain to point to the server.


Doug


----- Original Message ----- 
From: "Omar Adobati" <om...@gmail.com>
To: <to...@jakarta.apache.org>
Sent: Monday, January 24, 2005 10:48 AM
Subject: Re: sharing webapplication


> nobody can help me too?
>
>
>
> On Mon, 24 Jan 2005 11:08:36 +0100, Omar Adobati <om...@gmail.com> 
> wrote:
>> Hi to everybody,
>>
>>  I need an idea. suppose I have some webapp that i need to share
>> among some other webapplication. For example, suppose I have three
>> customer website each that need the access to a reserved area. Suppose
>> thet I want to use just on login webapp shared among all my customers;
>> suppose I need that every login page need to by skinned as the rest of
>> the website.
>>
>> The main issue I want to obtain is to manage just one shared webapp
>> fot all customers to better menaging upgrades, bug fixing and so on. I
>> think that skin the website is not a problem... I shoud use XML +
>> XSL(T) to skin... the matter is how to share.
>>
>> What are the best way to do this?
>>
>> (sorry bad english)
>>
>> --
>> Adobati Omar
>>
>
>
> -- 
> Adobati Omar
> omar.adobati@gmail.it
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
>
>
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: sharing webapplication

Posted by Dakota Jack <da...@gmail.com>.
You can have the various application URLs point to the same webserver
app, as Parsons pointed out.  However, why don't you want them to
share, except the "skin", everything on the website?  As long as the
"skin" is different, they won't know they are sharing anything.

Jack


On Mon, 24 Jan 2005 16:48:37 +0100, Omar Adobati <om...@gmail.com> wrote:
> nobody can help me too?
> 
> 
> On Mon, 24 Jan 2005 11:08:36 +0100, Omar Adobati <om...@gmail.com> wrote:
> > Hi to everybody,
> >
> >  I need an idea. suppose I have some webapp that i need to share
> > among some other webapplication. For example, suppose I have three
> > customer website each that need the access to a reserved area. Suppose
> > thet I want to use just on login webapp shared among all my customers;
> > suppose I need that every login page need to by skinned as the rest of
> > the website.
> >
> > The main issue I want to obtain is to manage just one shared webapp
> > fot all customers to better menaging upgrades, bug fixing and so on. I
> > think that skin the website is not a problem... I shoud use XML +
> > XSL(T) to skin... the matter is how to share.
> >
> > What are the best way to do this?
> >
> > (sorry bad english)
> >
> > --
> > Adobati Omar
> >
> 
> -- 
> Adobati Omar
> omar.adobati@gmail.it
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
> For additional commands, e-mail: tomcat-user-help@jakarta.apache.org
> 
> 


-- 
------------------------------

"You can lead a horse to water but you cannot make it float on its back."

~Dakota Jack~

"You can't wake a person who is pretending to be asleep."

~Native Proverb~

"Each man is good in His sight. It is not necessary for eagles to be crows."

~Hunkesni (Sitting Bull), Hunkpapa Sioux~

-----------------------------------------------

"This message may contain confidential and/or privileged information.
If you are not the addressee or authorized to receive this for the
addressee, you must not use, copy, disclose, or take any action based
on this message or any information herein. If you have received this
message in error, please advise the sender immediately by reply e-mail
and delete this message. Thank you for your cooperation."

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org


Re: sharing webapplication

Posted by Omar Adobati <om...@gmail.com>.
nobody can help me too?



On Mon, 24 Jan 2005 11:08:36 +0100, Omar Adobati <om...@gmail.com> wrote:
> Hi to everybody,
> 
>  I need an idea. suppose I have some webapp that i need to share
> among some other webapplication. For example, suppose I have three
> customer website each that need the access to a reserved area. Suppose
> thet I want to use just on login webapp shared among all my customers;
> suppose I need that every login page need to by skinned as the rest of
> the website.
> 
> The main issue I want to obtain is to manage just one shared webapp
> fot all customers to better menaging upgrades, bug fixing and so on. I
> think that skin the website is not a problem... I shoud use XML +
> XSL(T) to skin... the matter is how to share.
> 
> What are the best way to do this?
> 
> (sorry bad english)
> 
> --
> Adobati Omar
> 


-- 
Adobati Omar
omar.adobati@gmail.it

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-user-help@jakarta.apache.org