Re: Integrating Separate Different Wicket Applications Into One

2010-10-12 Thread Nivedan Nadaraj
I implemented/integrated a sub-module(s) into one main web application.
The solution is discussed in the link below. Hope this helps.

http://apache-wicket.1842946.n4.nabble.com/Re-Using-Wicket-to-build-Application-Portal-td2248912.html#a2248912

Cheers


On Tue, Oct 12, 2010 at 11:28 AM, Nivedan Nadaraj wrote:

> Hi
>
> When you say integrate different applications, do u mean each one is a
> sub-application? Do those applications extend the WicketApplication class?
> If they don't then I have had some experience to integrate sub-modules into
> one main application. Let me know if that is what you mean. Otherwise I
> guess some of the experts here would help out.
>
> Cheers
>
>
>
> On Tue, Oct 12, 2010 at 2:06 AM, kugaprakash wrote:
>
>>
>> Hi,
>> Can you please let me know?
>> thanks
>> Kuga
>> --
>> View this message in context:
>> http://apache-wicket.1842946.n4.nabble.com/Integrating-Separate-Different-Wicket-Applications-Into-One-tp1889319p2990281.html
>> Sent from the Users forum mailing list archive at Nabble.com.
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>


Re: Integrating Separate Different Wicket Applications Into One

2010-10-11 Thread Nivedan Nadaraj
Hi

When you say integrate different applications, do u mean each one is a
sub-application? Do those applications extend the WicketApplication class?
If they don't then I have had some experience to integrate sub-modules into
one main application. Let me know if that is what you mean. Otherwise I
guess some of the experts here would help out.

Cheers


On Tue, Oct 12, 2010 at 2:06 AM, kugaprakash wrote:

>
> Hi,
> Can you please let me know?
> thanks
> Kuga
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Integrating-Separate-Different-Wicket-Applications-Into-One-tp1889319p2990281.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Integrating Separate Different Wicket Applications Into One

2010-10-11 Thread kugaprakash

Hi,
Can you please let me know?
thanks
Kuga
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Integrating-Separate-Different-Wicket-Applications-Into-One-tp1889319p2990281.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Integrating Separate Different Wicket Applications Into One

2010-10-08 Thread kugaprakash

Hi,
I am trying to solve similar problem as the Original Post.
Can you please share some details of your ideas that you done?
Much appreciated.
Best Regards

-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Integrating-Separate-Different-Wicket-Applications-Into-One-tp1889319p2968802.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Integrating Separate Different Wicket Applications Into One

2009-10-15 Thread Martijn Dashorst
Why not put all components/pages/etc for each application in an
application jar, and include those in the aggregate application?

You're already deploying a new app so it wouldn't be too much extra effort.

Martijn

On Wed, Oct 14, 2009 at 2:39 PM, Carlo Camerino
 wrote:
> Hi,
>
> I was wondering what are the most efficient ways to separate different
> applications into one application?
> We have this use case in which we need to integrate two different
> wicket applications and make them appear as  if they are running in
> one platform only.
> I tried using portlets but it introduced a lot of coding
> complications. I tried running it using Jetspeed 2 and found out that
> several components are having problems.
> Most of the problem seems to come from the fact that we are using the
> indicatingajaxbutton. I have this issue in which I cannot easily
> transfer page from one page to another. I don't really know if
> portlets are the way to go because the applications by themselves are
> rich in functionality. I just need to be able to access them all in
> one page.
> I know that it seems to be some sort of portal but i think 'd have to
> take portlets out for the mean time due to the strict timeline and
> it's actually the first time we tried using portlets in our company.
>
> I'm thinking of using iframes for each application instead which will
> lead me to a grand total of three different applications running with
> only one entry point...
> Is this the proper way of doing it? My issue will be with regards to
> the httpsessions i'd have to have a total of three unlike in the
> portlets...
>
> My idea is I have a main application which serves as my entry point.
> In that application I lay out the available functionalities via menu
> links. When I click on a menu link,
> I will place redirect my iframe to point to that page enabling me to
> do that transaction? My main issue would be I think the httpsession
> expiry. If the user spends a lot of time using the application, the
> outside session could expire if the links outside are not clicked.
>
> What are other possible solutions that I could use for this one? As of
> now I could think of two ways using portlets and the other one using
> iframes.. As of now we are  considering one application  and just
> provide remoting for accessing business objects.
>
> Is there anyway of getting html coming from another application and
> showing it into my application?
> For example, i have three applications 1 ,2 and 3,
> 3 is my main application but I get the html coming from 1 and 2,
> without using iframes. Somewhat like WSRP (Web Service for Remote
> Porlets). Or i just need to get the servlet response from the third
> aplication/
>
> I'm not sure if it's possible. Would appreciate your insights on this one..
>
> Thanks
> Carlo
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>



-- 
Become a Wicket expert, learn from the best: http://wicketinaction.com
Apache Wicket 1.4 increases type safety for web applications
Get it now: http://www.apache.org/dyn/closer.cgi/wicket/1.4.0

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Integrating Separate Different Wicket Applications Into One

2009-10-15 Thread nino martinez wael
Heres something.. :Pax Wicket Applications

Pax Wicket Service supports many Pax Wicket applications being deployed
simultaneously onto the same instance of Pax Wicket Service. For each Pax
Wicket application, a separate Servlet will be created and mounted on to a
configurable mount point in the URL space. However, care must be taken to
ensure that all ContainmentIDs are registered under unique names.
http://wiki.ops4j.org/display/ops4j/Pax+Wicket

2009/10/15 nino martinez wael 

> what about osgi? http://www.ops4j.org/projects/pax/wicket/ ..?
>
> 2009/10/14 
>
> perhaps have a look on www.devproof.org.
>> it is a portal like wicket application, which hosts different modules
>> (JARs).
>>
>>
>> Quoting Carlo Camerino :
>>
>>  Hi,
>>>
>>> I was wondering what are the most efficient ways to separate different
>>> applications into one application?
>>> We have this use case in which we need to integrate two different
>>> wicket applications and make them appear as  if they are running in
>>> one platform only.
>>> I tried using portlets but it introduced a lot of coding
>>> complications. I tried running it using Jetspeed 2 and found out that
>>> several components are having problems.
>>> Most of the problem seems to come from the fact that we are using the
>>> indicatingajaxbutton. I have this issue in which I cannot easily
>>> transfer page from one page to another. I don't really know if
>>> portlets are the way to go because the applications by themselves are
>>> rich in functionality. I just need to be able to access them all in
>>> one page.
>>> I know that it seems to be some sort of portal but i think 'd have to
>>> take portlets out for the mean time due to the strict timeline and
>>> it's actually the first time we tried using portlets in our company.
>>>
>>> I'm thinking of using iframes for each application instead which will
>>> lead me to a grand total of three different applications running with
>>> only one entry point...
>>> Is this the proper way of doing it? My issue will be with regards to
>>> the httpsessions i'd have to have a total of three unlike in the
>>> portlets...
>>>
>>> My idea is I have a main application which serves as my entry point.
>>> In that application I lay out the available functionalities via menu
>>> links. When I click on a menu link,
>>> I will place redirect my iframe to point to that page enabling me to
>>> do that transaction? My main issue would be I think the httpsession
>>> expiry. If the user spends a lot of time using the application, the
>>> outside session could expire if the links outside are not clicked.
>>>
>>> What are other possible solutions that I could use for this one? As of
>>> now I could think of two ways using portlets and the other one using
>>> iframes.. As of now we are  considering one application  and just
>>> provide remoting for accessing business objects.
>>>
>>> Is there anyway of getting html coming from another application and
>>> showing it into my application?
>>> For example, i have three applications 1 ,2 and 3,
>>> 3 is my main application but I get the html coming from 1 and 2,
>>> without using iframes. Somewhat like WSRP (Web Service for Remote
>>> Porlets). Or i just need to get the servlet response from the third
>>> aplication/
>>>
>>> I'm not sure if it's possible. Would appreciate your insights on this
>>> one..
>>>
>>> Thanks
>>> Carlo
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>>> For additional commands, e-mail: users-h...@wicket.apache.org
>>>
>>>
>>>
>>
>>
>> 
>> This message was sent using IMP, the Internet Messaging Program.
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>


Re: Integrating Separate Different Wicket Applications Into One

2009-10-15 Thread nino martinez wael
what about osgi? http://www.ops4j.org/projects/pax/wicket/ ..?

2009/10/14 

> perhaps have a look on www.devproof.org.
> it is a portal like wicket application, which hosts different modules
> (JARs).
>
>
> Quoting Carlo Camerino :
>
>  Hi,
>>
>> I was wondering what are the most efficient ways to separate different
>> applications into one application?
>> We have this use case in which we need to integrate two different
>> wicket applications and make them appear as  if they are running in
>> one platform only.
>> I tried using portlets but it introduced a lot of coding
>> complications. I tried running it using Jetspeed 2 and found out that
>> several components are having problems.
>> Most of the problem seems to come from the fact that we are using the
>> indicatingajaxbutton. I have this issue in which I cannot easily
>> transfer page from one page to another. I don't really know if
>> portlets are the way to go because the applications by themselves are
>> rich in functionality. I just need to be able to access them all in
>> one page.
>> I know that it seems to be some sort of portal but i think 'd have to
>> take portlets out for the mean time due to the strict timeline and
>> it's actually the first time we tried using portlets in our company.
>>
>> I'm thinking of using iframes for each application instead which will
>> lead me to a grand total of three different applications running with
>> only one entry point...
>> Is this the proper way of doing it? My issue will be with regards to
>> the httpsessions i'd have to have a total of three unlike in the
>> portlets...
>>
>> My idea is I have a main application which serves as my entry point.
>> In that application I lay out the available functionalities via menu
>> links. When I click on a menu link,
>> I will place redirect my iframe to point to that page enabling me to
>> do that transaction? My main issue would be I think the httpsession
>> expiry. If the user spends a lot of time using the application, the
>> outside session could expire if the links outside are not clicked.
>>
>> What are other possible solutions that I could use for this one? As of
>> now I could think of two ways using portlets and the other one using
>> iframes.. As of now we are  considering one application  and just
>> provide remoting for accessing business objects.
>>
>> Is there anyway of getting html coming from another application and
>> showing it into my application?
>> For example, i have three applications 1 ,2 and 3,
>> 3 is my main application but I get the html coming from 1 and 2,
>> without using iframes. Somewhat like WSRP (Web Service for Remote
>> Porlets). Or i just need to get the servlet response from the third
>> aplication/
>>
>> I'm not sure if it's possible. Would appreciate your insights on this
>> one..
>>
>> Thanks
>> Carlo
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>>
>
>
> 
> This message was sent using IMP, the Internet Messaging Program.
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread ralf . eichinger
in my former company I implemented a framework that integrates  
different webapplications into one.
I made a integration-application which takes a template with  
placeholders for the foreign parts, gets the contents from the  
different servers, parses all content (within 100 ms), changes every  
link, css, everything to target everything to the  
integration-application-framework, which handles every action/link, etc.


It worked like a charme...


Quoting Carlo Camerino :


thanks,

will take a look...

however, have you encountered instances in which you want to have
distributed web applications and still be able to shared httpsession?
The distributed web application however are different applications and
are not of the same kind unlike that of clustering

one function will go to this application server, another function will
go to this application server.

On Wed, Oct 14, 2009 at 11:28 PM,   wrote:

perhaps have a look on www.devproof.org.
it is a portal like wicket application, which hosts different modules
(JARs).

Quoting Carlo Camerino :


Hi,

I was wondering what are the most efficient ways to separate different
applications into one application?
We have this use case in which we need to integrate two different
wicket applications and make them appear as  if they are running in
one platform only.
I tried using portlets but it introduced a lot of coding
complications. I tried running it using Jetspeed 2 and found out that
several components are having problems.
Most of the problem seems to come from the fact that we are using the
indicatingajaxbutton. I have this issue in which I cannot easily
transfer page from one page to another. I don't really know if
portlets are the way to go because the applications by themselves are
rich in functionality. I just need to be able to access them all in
one page.
I know that it seems to be some sort of portal but i think 'd have to
take portlets out for the mean time due to the strict timeline and
it's actually the first time we tried using portlets in our company.

I'm thinking of using iframes for each application instead which will
lead me to a grand total of three different applications running with
only one entry point...
Is this the proper way of doing it? My issue will be with regards to
the httpsessions i'd have to have a total of three unlike in the
portlets...

My idea is I have a main application which serves as my entry point.
In that application I lay out the available functionalities via menu
links. When I click on a menu link,
I will place redirect my iframe to point to that page enabling me to
do that transaction? My main issue would be I think the httpsession
expiry. If the user spends a lot of time using the application, the
outside session could expire if the links outside are not clicked.

What are other possible solutions that I could use for this one? As of
now I could think of two ways using portlets and the other one using
iframes.. As of now we are  considering one application  and just
provide remoting for accessing business objects.

Is there anyway of getting html coming from another application and
showing it into my application?
For example, i have three applications 1 ,2 and 3,
3 is my main application but I get the html coming from 1 and 2,
without using iframes. Somewhat like WSRP (Web Service for Remote
Porlets). Or i just need to get the servlet response from the third
aplication/

I'm not sure if it's possible. Would appreciate your insights on this
one..

Thanks
Carlo

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org







This message was sent using IMP, the Internet Messaging Program.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org







This message was sent using IMP, the Internet Messaging Program.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread Carlo Camerino
thanks,

will take a look...

however, have you encountered instances in which you want to have
distributed web applications and still be able to shared httpsession?
The distributed web application however are different applications and
are not of the same kind unlike that of clustering

one function will go to this application server, another function will
go to this application server.

On Wed, Oct 14, 2009 at 11:28 PM,   wrote:
> perhaps have a look on www.devproof.org.
> it is a portal like wicket application, which hosts different modules
> (JARs).
>
> Quoting Carlo Camerino :
>
>> Hi,
>>
>> I was wondering what are the most efficient ways to separate different
>> applications into one application?
>> We have this use case in which we need to integrate two different
>> wicket applications and make them appear as  if they are running in
>> one platform only.
>> I tried using portlets but it introduced a lot of coding
>> complications. I tried running it using Jetspeed 2 and found out that
>> several components are having problems.
>> Most of the problem seems to come from the fact that we are using the
>> indicatingajaxbutton. I have this issue in which I cannot easily
>> transfer page from one page to another. I don't really know if
>> portlets are the way to go because the applications by themselves are
>> rich in functionality. I just need to be able to access them all in
>> one page.
>> I know that it seems to be some sort of portal but i think 'd have to
>> take portlets out for the mean time due to the strict timeline and
>> it's actually the first time we tried using portlets in our company.
>>
>> I'm thinking of using iframes for each application instead which will
>> lead me to a grand total of three different applications running with
>> only one entry point...
>> Is this the proper way of doing it? My issue will be with regards to
>> the httpsessions i'd have to have a total of three unlike in the
>> portlets...
>>
>> My idea is I have a main application which serves as my entry point.
>> In that application I lay out the available functionalities via menu
>> links. When I click on a menu link,
>> I will place redirect my iframe to point to that page enabling me to
>> do that transaction? My main issue would be I think the httpsession
>> expiry. If the user spends a lot of time using the application, the
>> outside session could expire if the links outside are not clicked.
>>
>> What are other possible solutions that I could use for this one? As of
>> now I could think of two ways using portlets and the other one using
>> iframes.. As of now we are  considering one application  and just
>> provide remoting for accessing business objects.
>>
>> Is there anyway of getting html coming from another application and
>> showing it into my application?
>> For example, i have three applications 1 ,2 and 3,
>> 3 is my main application but I get the html coming from 1 and 2,
>> without using iframes. Somewhat like WSRP (Web Service for Remote
>> Porlets). Or i just need to get the servlet response from the third
>> aplication/
>>
>> I'm not sure if it's possible. Would appreciate your insights on this
>> one..
>>
>> Thanks
>> Carlo
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
>> For additional commands, e-mail: users-h...@wicket.apache.org
>>
>>
>
>
>
> 
> This message was sent using IMP, the Internet Messaging Program.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Integrating Separate Different Wicket Applications Into One

2009-10-14 Thread ralf . eichinger

perhaps have a look on www.devproof.org.
it is a portal like wicket application, which hosts different modules (JARs).

Quoting Carlo Camerino :


Hi,

I was wondering what are the most efficient ways to separate different
applications into one application?
We have this use case in which we need to integrate two different
wicket applications and make them appear as  if they are running in
one platform only.
I tried using portlets but it introduced a lot of coding
complications. I tried running it using Jetspeed 2 and found out that
several components are having problems.
Most of the problem seems to come from the fact that we are using the
indicatingajaxbutton. I have this issue in which I cannot easily
transfer page from one page to another. I don't really know if
portlets are the way to go because the applications by themselves are
rich in functionality. I just need to be able to access them all in
one page.
I know that it seems to be some sort of portal but i think 'd have to
take portlets out for the mean time due to the strict timeline and
it's actually the first time we tried using portlets in our company.

I'm thinking of using iframes for each application instead which will
lead me to a grand total of three different applications running with
only one entry point...
Is this the proper way of doing it? My issue will be with regards to
the httpsessions i'd have to have a total of three unlike in the
portlets...

My idea is I have a main application which serves as my entry point.
In that application I lay out the available functionalities via menu
links. When I click on a menu link,
I will place redirect my iframe to point to that page enabling me to
do that transaction? My main issue would be I think the httpsession
expiry. If the user spends a lot of time using the application, the
outside session could expire if the links outside are not clicked.

What are other possible solutions that I could use for this one? As of
now I could think of two ways using portlets and the other one using
iframes.. As of now we are  considering one application  and just
provide remoting for accessing business objects.

Is there anyway of getting html coming from another application and
showing it into my application?
For example, i have three applications 1 ,2 and 3,
3 is my main application but I get the html coming from 1 and 2,
without using iframes. Somewhat like WSRP (Web Service for Remote
Porlets). Or i just need to get the servlet response from the third
aplication/

I'm not sure if it's possible. Would appreciate your insights on this one..

Thanks
Carlo

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org







This message was sent using IMP, the Internet Messaging Program.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org