Tutorial build error

2004-07-24 Thread alex
I got the following error when I tried to build tutorial 1 with the following command 
maven -Dmaven.test.skip=true -Dtutorial=1 jetspeed:deploy

BUILD FAILED
File.. file:/C:/Documents and Settings/alex/.maven/plugins/maven-jetspeed-pl
ugin-1.2/plugin.jelly
Element... taskdef
Line.. 117
Column 105
taskdef class org.apache.jetspeed.util.ant.OverwritePropertiesTask cannot be fou
nd
Total time: 21 seconds
Finished at: Sat Jul 24 11:35:38 EDT 2004

I have the latest Ant (1.6.1), junit (1.8.1), Maven (1.0), and jetspeed 1.5. Anyone 
has a clue?


RE: WG: Sharing attributes between portlet applications

2004-06-25 Thread alex
Yes I see your point. However, for the portlet that needed the tree, it
didn't matter - yet :)
A

-Original Message-
From: Oliver Pfau [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 25, 2004 7:40 AM
To: 'Jetspeed Users List'
Subject: AW: WG: Sharing attributes between portlet applications

With the loss of the context I mean that is it possible in your jsp in
your IFrame to access the objects defined with the defineObjects-Tag ? I
mean renderResponse, renderRequest, portletConfig...
Your jsp in the IFrame don't uses the scheme from the portal... the IFrame
is only a view... 

-Ursprüngliche Nachricht-
Von: alex [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 25. Juni 2004 13:31
An: 'Jetspeed Users List'
Betreff: RE: WG: Sharing attributes between portlet applications


No. I set session variables and each time the buildNormalContext function is
called it repaints itself. I am not sure about your comment that you lose
portal context? Can you expand on this, please?
A

-Original Message-
From: Oliver Pfau [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 25, 2004 7:24 AM
To: 'Jetspeed Users List'
Subject: AW: WG: Sharing attributes between portlet applications

hi...that's interesting... but I decided to avoid the usage of IFrames
because it implies the loss of the portal context...scheme, ect.
how do the IFrame-portlets communicate ? url parameter ?

-Ursprüngliche Nachricht-
Von: alex [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 25. Juni 2004 13:22
An: 'Jetspeed Users List'
Betreff: RE: WG: Sharing attributes between portlet applications


In regards to the treeview question below...I implemented something very
similar by using a "framed" approach: inside an IFramePortlet read a JSP
file which defines the "view". I have one portlet with 3 frames, top left is
the tree, bottom left is command buttons to ease tree navigation and the
right frame is all content. It seems to work fine. For the tree itself I
used Javascript to "paint" the tree...
Hope this helps.
Alex

-Original Message-
From: David Sean Taylor [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 24, 2004 8:22 PM
To: Jetspeed Users List
Subject: Re: WG: Sharing attributes between portlet applications


On Jun 24, 2004, at 7:22 AM, Oliver Pfau wrote:

>> Hi,
>>
>> I have a general JSR-168 question:
>>
>> is it possible to share a attribute between two portlets which are 
>> not in
>> the same portlet application in a JSR-168 portlet ?
>>

The portlet session, application scope, but its limited to per portlet 
application

-- or -- 

PLT 11.1.1:
The portlet-container must not propagate parameters received in an 
action request to subsequent render requests of the portlet.
If a portlet wants to do that, it can use Render URLs or must use the 
setRenderParameter or setRenderParameters method of the ActionResponse
object within the processAction call.

The second approach is limited to strings

>> I want to write two portlets:
>> one displays the TreeNode data structure from javax.swing.tree.* and
>> stores a navigation status (String) in the context (with the 
>> application
>> context it should work), the other portlet retrieves the navigation 
>> status
>> and shows the chosen contents.
>>

This sounds interesting. Is it an HTML-based tree view? With JavaScript?
I am looking for something like this to use in the Jetspeed Portlet 
Application Manager portlets

>> Problem: I plan a generic navigation portlet which can switch its 
>> TreeNode
>> content in run time. I mean one navigation portlet for many content
>> portlets. I don't found a way to realize this communication. I think I
>> have to pack the navigation portlet with each content portlet 
>> together as
>> portlet applicationI am not very happy with this solutionany 
>> ideas
>> ?
I think the render parameters could work

You could also write a jetspeed service to share common data (see the 
PAM portlet application for an example of accessing the Registry 
Service)

--
David Sean Taylor
Bluesunrise Software
[EMAIL PROTECTED]
[office]   +01 707 773-4646
[mobile] +01 707 529 9194



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mai

RE: WG: Sharing attributes between portlet applications

2004-06-25 Thread alex
No. I set session variables and each time the buildNormalContext function is
called it repaints itself. I am not sure about your comment that you lose
portal context? Can you expand on this, please?
A

-Original Message-
From: Oliver Pfau [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 25, 2004 7:24 AM
To: 'Jetspeed Users List'
Subject: AW: WG: Sharing attributes between portlet applications

hi...that's interesting... but I decided to avoid the usage of IFrames
because it implies the loss of the portal context...scheme, ect.
how do the IFrame-portlets communicate ? url parameter ?

-Ursprüngliche Nachricht-
Von: alex [mailto:[EMAIL PROTECTED]
Gesendet: Freitag, 25. Juni 2004 13:22
An: 'Jetspeed Users List'
Betreff: RE: WG: Sharing attributes between portlet applications


In regards to the treeview question below...I implemented something very
similar by using a "framed" approach: inside an IFramePortlet read a JSP
file which defines the "view". I have one portlet with 3 frames, top left is
the tree, bottom left is command buttons to ease tree navigation and the
right frame is all content. It seems to work fine. For the tree itself I
used Javascript to "paint" the tree...
Hope this helps.
Alex

-Original Message-
From: David Sean Taylor [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 24, 2004 8:22 PM
To: Jetspeed Users List
Subject: Re: WG: Sharing attributes between portlet applications


On Jun 24, 2004, at 7:22 AM, Oliver Pfau wrote:

>> Hi,
>>
>> I have a general JSR-168 question:
>>
>> is it possible to share a attribute between two portlets which are 
>> not in
>> the same portlet application in a JSR-168 portlet ?
>>

The portlet session, application scope, but its limited to per portlet 
application

-- or -- 

PLT 11.1.1:
The portlet-container must not propagate parameters received in an 
action request to subsequent render requests of the portlet.
If a portlet wants to do that, it can use Render URLs or must use the 
setRenderParameter or setRenderParameters method of the ActionResponse
object within the processAction call.

The second approach is limited to strings

>> I want to write two portlets:
>> one displays the TreeNode data structure from javax.swing.tree.* and
>> stores a navigation status (String) in the context (with the 
>> application
>> context it should work), the other portlet retrieves the navigation 
>> status
>> and shows the chosen contents.
>>

This sounds interesting. Is it an HTML-based tree view? With JavaScript?
I am looking for something like this to use in the Jetspeed Portlet 
Application Manager portlets

>> Problem: I plan a generic navigation portlet which can switch its 
>> TreeNode
>> content in run time. I mean one navigation portlet for many content
>> portlets. I don't found a way to realize this communication. I think I
>> have to pack the navigation portlet with each content portlet 
>> together as
>> portlet applicationI am not very happy with this solutionany 
>> ideas
>> ?
I think the render parameters could work

You could also write a jetspeed service to share common data (see the 
PAM portlet application for an example of accessing the Registry 
Service)

--
David Sean Taylor
Bluesunrise Software
[EMAIL PROTECTED]
[office]   +01 707 773-4646
[mobile] +01 707 529 9194



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: WG: Sharing attributes between portlet applications

2004-06-25 Thread alex
In regards to the treeview question below...I implemented something very
similar by using a "framed" approach: inside an IFramePortlet read a JSP
file which defines the "view". I have one portlet with 3 frames, top left is
the tree, bottom left is command buttons to ease tree navigation and the
right frame is all content. It seems to work fine. For the tree itself I
used Javascript to "paint" the tree...
Hope this helps.
Alex

-Original Message-
From: David Sean Taylor [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 24, 2004 8:22 PM
To: Jetspeed Users List
Subject: Re: WG: Sharing attributes between portlet applications


On Jun 24, 2004, at 7:22 AM, Oliver Pfau wrote:

>> Hi,
>>
>> I have a general JSR-168 question:
>>
>> is it possible to share a attribute between two portlets which are 
>> not in
>> the same portlet application in a JSR-168 portlet ?
>>

The portlet session, application scope, but its limited to per portlet 
application

-- or -- 

PLT 11.1.1:
The portlet-container must not propagate parameters received in an 
action request to subsequent render requests of the portlet.
If a portlet wants to do that, it can use Render URLs or must use the 
setRenderParameter or setRenderParameters method of the ActionResponse
object within the processAction call.

The second approach is limited to strings

>> I want to write two portlets:
>> one displays the TreeNode data structure from javax.swing.tree.* and
>> stores a navigation status (String) in the context (with the 
>> application
>> context it should work), the other portlet retrieves the navigation 
>> status
>> and shows the chosen contents.
>>

This sounds interesting. Is it an HTML-based tree view? With JavaScript?
I am looking for something like this to use in the Jetspeed Portlet 
Application Manager portlets

>> Problem: I plan a generic navigation portlet which can switch its 
>> TreeNode
>> content in run time. I mean one navigation portlet for many content
>> portlets. I don't found a way to realize this communication. I think I
>> have to pack the navigation portlet with each content portlet 
>> together as
>> portlet applicationI am not very happy with this solutionany 
>> ideas
>> ?
I think the render parameters could work

You could also write a jetspeed service to share common data (see the 
PAM portlet application for an example of accessing the Registry 
Service)

--
David Sean Taylor
Bluesunrise Software
[EMAIL PROTECTED]
[office]   +01 707 773-4646
[mobile] +01 707 529 9194



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Help with the layout

2004-06-21 Thread alex
Carlos, just define a 3-column page. Then add whatever portlets you want to
each column - I don't think you have a problem...
Alex

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 18, 2004 6:47 PM
To: [EMAIL PROTECTED]
Subject: Help with the layout

Hi.
I'm just building the layout of my portal, but one of the requirements is 
that the portal must have 3 columns. The first one is just an index of 
contents (index of portlets), the second one is the content itself (the 
portlet). Until here, with a Menu Pane the problem is solved. But, the 
third column is a "utility column", in wich I must display the weather 
portlet, a scrolling news portlet, and maybe others. I don't know how to 
put this third column of portlets.

In this scenario, What could be the best way to accomplish the required 
layout?? 

Thank you very much!

Regards,
Carlos.

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.706 / Virus Database: 462 - Release Date: 6/14/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Must be a eetter way do this!

2004-06-10 Thread alex
Hans could you be a little more specific, please? Maybe an example or two :)
Alex

-Original Message-
From: Hans Wurst [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 09, 2004 5:35 PM
To: Jetspeed Users List
Subject: AW: Must be a eetter way do this!

Hello!

i've build some controller-classes to solve this problem. you have to scan
the request and react the way you want to.

regards

hans

-Ursprüngliche Nachricht-
Von: alex [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 9. Juni 2004 22:58
An: 'Jetspeed Users List'
Betreff: Must be a eetter way do this!


I would like to have a portlet that "controls" the contents of another
portlet. Imagine a Bookmark portlet (which has of all things - links to
mybookmarks!), when you click on a link on the bookmark portlet I would like
an "iFrame" portlet to display the link. Currently I am using an SINGLE
IFrame with a dual frame setup (FRAMESET cols="200,*" ...).
Is there a way to do this the right(?) way (portal style)...

Thanks for your thoughts.
Alex

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.692 / Virus Database: 453 - Release Date: 5/28/2004



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.692 / Virus Database: 453 - Release Date: 5/28/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.692 / Virus Database: 453 - Release Date: 5/28/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Must be a eetter way do this!

2004-06-09 Thread alex
I would like to have a portlet that "controls" the contents of another
portlet. Imagine a Bookmark portlet (which has of all things - links to
mybookmarks!), when you click on a link on the bookmark portlet I would like
an "iFrame" portlet to display the link. Currently I am using an SINGLE
IFrame with a dual frame setup (FRAMESET cols="200,*" ...). 
Is there a way to do this the right(?) way (portal style)...

Thanks for your thoughts.
Alex 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.692 / Virus Database: 453 - Release Date: 5/28/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Jetspeed 1.5 and Turbine

2004-05-21 Thread alex
Does anyone have any examples of using Turbine (or at least Torque) with
Jetspeed 1.5? Or maybe a how-to?
Alex Irazabal 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Class not found!

2004-05-19 Thread alex
Thanks I will try that - bur where does the "endorsed" come in?
A

-Original Message-
From: Raphaël Luta [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 19, 2004 1:15 PM
To: Jetspeed Users List
Subject: Re: Class not found!

That you probably have a turbine.jar in:
- your CLASSPATH
- your jre/lib/ext directory in your Java installation
- your webapp server "shared" libs (ie in Tomcat 4: 
/shared/lib or /shared/classes)

If you do have any of these, remove them and restart your webapp 
server, that should fix the issue.

Le 19 mai 04, à 19:04, alex a écrit :

> Thanks, but what does "endorsed or jre endorsed" mean?
>
> -Original Message-
> From: Raphaël Luta [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, May 19, 2004 12:36 PM
> To: Jetspeed Users List
> Subject: Re: Class not found!
>
> Le 19 mai 04, à 15:16, alex a écrit :
>
>> Reason:
>> java.lang.ClassNotFoundException:
>>
>>  Requested Action not found: portlets.TutorialStockQuoteAction8
>>  Turbine looked in the following modules.packages path:
>>  [org.apache.jetspeed.modules, org.apache.turbine.modules]
>>
>>
>>
>> I placed the class above at the following path:
>>
>> classes\org\apache\jetspeed\modules\actions\portlets
>>
>> the class is compiled with the following path:
>>
>> package org.apache.jetspeed.modules.actions.portlets;
>>
>> What's the deal?
>
> You probably have a conflict of Turbine jars loaded from different
> classloaders : Make sure you don't have a turbine
> jar somewhere in your webapp server endorsed or worse jre endorsed 
> jars.
>
> --
> Raphaël Luta - [EMAIL PROTECTED]
> Apache Jetspeed - Enterprise Portal in Java
> http://portals.apache.org/
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> ---
> Incoming mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
--
Raphael Luta - [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Class not found!

2004-05-19 Thread alex
Thanks, but what does "endorsed or jre endorsed" mean?

-Original Message-
From: Raphaël Luta [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 19, 2004 12:36 PM
To: Jetspeed Users List
Subject: Re: Class not found!

Le 19 mai 04, à 15:16, alex a écrit :

> Reason:
> java.lang.ClassNotFoundException:
>
>   Requested Action not found: portlets.TutorialStockQuoteAction8
>   Turbine looked in the following modules.packages path:
>   [org.apache.jetspeed.modules, org.apache.turbine.modules]
>
>
>
> I placed the class above at the following path:
>
> classes\org\apache\jetspeed\modules\actions\portlets
>
> the class is compiled with the following path:
>
> package org.apache.jetspeed.modules.actions.portlets;
>
> What's the deal?

You probably have a conflict of Turbine jars loaded from different 
classloaders : Make sure you don't have a turbine
jar somewhere in your webapp server endorsed or worse jre endorsed jars.

--
Raphaël Luta - [EMAIL PROTECTED]
Apache Jetspeed - Enterprise Portal in Java
http://portals.apache.org/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Class not found!

2004-05-19 Thread alex
Reason: 
java.lang.ClassNotFoundException: 

Requested Action not found: portlets.TutorialStockQuoteAction8
Turbine looked in the following modules.packages path: 
[org.apache.jetspeed.modules, org.apache.turbine.modules]

   

I placed the class above at the following path:

classes\org\apache\jetspeed\modules\actions\portlets

the class is compiled with the following path:

package org.apache.jetspeed.modules.actions.portlets;

What's the deal?
Alex Irazabal

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Does anyone know how to send data from one portlet to another?

2004-05-18 Thread alex
I'll try it. JSR 168 is the "real" answer?

-Original Message-
From: Endre Stølsvik [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 18, 2004 12:15 PM
To: Jetspeed Users List
Subject: Re: Does anyone know how to send data from one portlet to another?

On Tue, 18 May 2004, alex wrote:

| This is what I want to do: have a list on a portlet, when the user clicks
on
| an item (maybe an URL) I want to display the resultant output in another
| portlet. Any ideas???

Use session, scoped at the application level. When the action occurs, you
shove the new info into the session, then when the rendering occurs, that
info is available to all portlets.

.. or you can use a shared outside resource, like a database.

Ah.. btw, the first answer goes for JSR 168 Portlets. I have pretty much
no idea of how you do this with the Jetspeed 1 portlets.


-- 
Mvh,
Endre Stølsvik   M[+47 93054050] F[+47 51625182]
Developer @ CoreTrek AS -  http://www.coretrek.com/
CoreTrek corporate portal / EIP -  http://www.corelets.com/


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Does anyone know how to send data from one portlet to another?

2004-05-18 Thread alex
Easy enough...Thanks

-Original Message-
From: Oliver Pfau [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 18, 2004 11:16 AM
To: 'Jetspeed Users List'
Subject: AW: Does anyone know how to send data from one portlet to another?

...I used to store shared attributes in teh PortletContext like this:

set it in portlet 1:this.getPortletContext().setAttribute("myattribute",
strTheAttribute);
retrieve it in portlet 2: String theAttribute =
this.getPortletContext().getAttribute("myattribute");

deploy the portlets a portlet-application should work

Greetings
Oliver


-Ursprüngliche Nachricht-
Von: alex [mailto:[EMAIL PROTECTED]
Gesendet: Dienstag, 18. Mai 2004 16:29
An: 'Jetspeed Users List'
Betreff: Does anyone know how to send data from one portlet to another?


This is what I want to do: have a list on a portlet, when the user clicks on
an item (maybe an URL) I want to display the resultant output in another
portlet. Any ideas???
Alex Irazabal 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Does anyone know how to send data from one portlet to another?

2004-05-18 Thread alex
This is what I want to do: have a list on a portlet, when the user clicks on
an item (maybe an URL) I want to display the resultant output in another
portlet. Any ideas???
Alex Irazabal 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: How do you debug action classes in Jetspeed

2004-05-18 Thread alex
Yes please a step-by-step example would be greatly appreciated.

-Original Message-
From: Jonathan Hawkins [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, May 18, 2004 4:45 AM
To: 'Jetspeed Users List'
Subject: RE: How do you debug action classes in Jetspeed

I have just started using Eclipse, would you mind describing the steps
involved, many thanks.

Jon Hawkins

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 17 May 2004 21:24
To: Jetspeed Users List
Subject: Re: How do you debug action classes in Jetspeed


I use Eclipse and it works perfectly




Michael Rothrock <[EMAIL PROTECTED]> 
17-05-2004 16:19
Por favor, responda a
"Jetspeed Users List" <[EMAIL PROTECTED]>


Para
Jetspeed Users List <[EMAIL PROTECTED]>
cc

Asunto
Re: How do you debug action classes in Jetspeed






This works for me on a Linux box:

/usr/bin/dtomcat4 jpda start

Then I can attach to it with my debugger (IDEA) and set breakpoints, etc.

-- Michael

On 5/14/04 12:02 PM, "alex" <[EMAIL PROTECTED]> wrote:

> I am new to Jetspeed and can't seem to find a way to JIT debug the 
action
> classes. Any ideas would be greatly appreciated...
> Alex
> 
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.671 / Virus Database: 433 - Release Date: 4/28/2004
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




*** 
This email and any files transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they 
are addressed. Any unauthorised distribution or copying is strictly 
prohibited. 
 
Whilst Cedar Software Ltd takes steps to prevent the transmission of 
viruses via e-mail, we can not guarantee that any email or 
attachment is free from computer viruses and you are strongly 
advised to undertake your own anti-virus precautions. 
 
Cedar Software Ltd grants no warranties regarding performance, 
use or quality of any e-mail or attachment and undertakes no 
liability for loss or damage, howsoever caused. 

CedAr is a leading UK supplier of Financial, eProcurement, Performance
Management and, following the recent acquisition of Goldenhill Computer
Systems Ltd, HR and Payroll software. Cedars solutions deliver increased
capabilities and offer a direct and measurable financial return on
investment.  The company has a customer base of more than 500 organisations
in both the public and private sector. 
Particular sector strengths include Airlines, Business Services,
Education, Emergency Services, Financial Services, Government, Health, Local
Authorities, Not for Profit, Retail and Utilities.  For more
information, please visit www.cedar.com 
2003 CedAr Software Ltd. All Rights Reserved. 
Cedar Software Ltd. Incorporation number 3214465
 ***


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.684 / Virus Database: 446 - Release Date: 5/13/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



How do you debug action classes in Jetspeed

2004-05-17 Thread alex
I am new to Jetspeed and can't seem to find a way to JIT debug the action
classes. Any ideas would be greatly appreciated...
Alex

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.671 / Virus Database: 433 - Release Date: 4/28/2004
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Jetspeed 1.5 question

2004-05-12 Thread alex
Thanks Jason. Any suggestions as to where in Tomcat I should put the
Jetspeed-1.5.jar file?
A

-Original Message-
From: Jason Shindler [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 12, 2004 4:16 PM
To: Jetspeed Users List
Subject: RE: Jetspeed 1.5 question

Alex,
Check out my previous post on this topic. Note that I still get the
error sometimes when I attempt to start Tomcat when it's already
started.
Jason

http://www.mail-archive.com/[EMAIL PROTECTED]/msg12082.ht
ml


-Original Message-
From: alex [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, May 12, 2004 4:11 PM
To: 'Jetspeed Users List'
Subject: Jetspeed 1.5 question

Has anyone seen the problem that when the jportal tutorials are built
Tomcat
fails to start the first time EVERYTIME! I have to boot it, bring it
down
and re-boot (tomcat). Here is what the log says...

2004-05-11 14:51:42 StandardWrapperValve[jetspeed]: Servlet.service()
for
servlet jetspeed threw exception
org.apache.turbine.services.InstantiationException: ServiceBroker:
unknown
service PoolService requested
at
org.apache.turbine.services.BaseServiceBroker.getServiceInstance(BaseSer
vice
Broker.java:354)
at
org.apache.turbine.services.BaseServiceBroker.getService(BaseServiceBrok
er.j
ava:296)
at
org.apache.turbine.util.RunDataFactory.putRunData(RunDataFactory.java:22
6)
at org.apache.turbine.Turbine.doGet(Turbine.java:643)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tion
FilterChain.java:284)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erCh
ain.java:204)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
e.ja
va:257)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveCo
ntex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:5
67)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardCon
text
Valve.java:245)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValv
e.ja
va:199)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveCo
ntex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:5
67)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java
:184
)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveCo
ntex
t.java:151)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java
:164
)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveCo
ntex
t.java:149)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:5
67)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.
java
:156)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveCo
ntex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:5
67)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:972)
at
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:206)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:83
3)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processC
onne
ction(Http11Protocol.java:732)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:61
9)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool
.jav
a:688)
at java.lang.Thread.run(Thread.java:536)

2004-05-11 14:52:16 StandardWrapperValve[jetspeed]: Servlet.service()
for
servlet jetspeed threw exception
org.apache.turbine.services.InstantiationException: ServiceBroker:
unknown
service PoolService requested
at
org.apache.turbine.services.BaseServiceBroker.getServiceInstance(BaseSer
vice
Broker.java:354)
at
org.apache.turbine.services.BaseServiceBroker.getService(BaseServiceBrok
er.j
ava:296)
at
org.apache.turbine.util.RunDataFactory.putRunData(RunDataFactory.java:22
6)
at org.apache.turbine.Turbine.doGet(Turbine.java:643)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Applica
tion
FilterChain.java:284)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
erCh
ain.java:204)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValv
e.ja
va:257)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveCo
ntex
t.java:151)
at
org.apache.catalina.core.Standard

Jetspeed 1.5 question

2004-05-12 Thread alex
Has anyone seen the problem that when the jportal tutorials are built Tomcat
fails to start the first time EVERYTIME! I have to boot it, bring it down
and re-boot (tomcat). Here is what the log says...

2004-05-11 14:51:42 StandardWrapperValve[jetspeed]: Servlet.service() for
servlet jetspeed threw exception
org.apache.turbine.services.InstantiationException: ServiceBroker: unknown
service PoolService requested
at
org.apache.turbine.services.BaseServiceBroker.getServiceInstance(BaseService
Broker.java:354)
at
org.apache.turbine.services.BaseServiceBroker.getService(BaseServiceBroker.j
ava:296)
at
org.apache.turbine.util.RunDataFactory.putRunData(RunDataFactory.java:226)
at org.apache.turbine.Turbine.doGet(Turbine.java:643)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:284)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:204)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:257)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContext
Valve.java:245)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:199)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:184
)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:151)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:164
)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:149)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
:156)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:972)
at
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:206)
at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:833)
at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConne
ction(Http11Protocol.java:732)
at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:619)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
a:688)
at java.lang.Thread.run(Thread.java:536)

2004-05-11 14:52:16 StandardWrapperValve[jetspeed]: Servlet.service() for
servlet jetspeed threw exception
org.apache.turbine.services.InstantiationException: ServiceBroker: unknown
service PoolService requested
at
org.apache.turbine.services.BaseServiceBroker.getServiceInstance(BaseService
Broker.java:354)
at
org.apache.turbine.services.BaseServiceBroker.getService(BaseServiceBroker.j
ava:296)
at
org.apache.turbine.util.RunDataFactory.putRunData(RunDataFactory.java:226)
at org.apache.turbine.Turbine.doGet(Turbine.java:643)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:284)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:204)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:257)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContext
Valve.java:245)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
va:199)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:151)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:567)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:184
)
at
org.apache.catalina.core.StandardValveContext.invokeNext(StandardValveContex
t.java:151)
at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.jav

It would be nice to have a page without the menu-bar on the left so I can print it out without things getting chopped off on the right.

2003-11-14 Thread Alex Cheung

.alex

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Forcing role based profile after login

2003-11-09 Thread Alex Kadyshevich
Hi all,

I thought it would be a matter of configuration, but I am struggling to
figure out how to do it without Jetspeed generating user profile 
based on role profile.

I have a role with layout defined in a psml file.

I create a new user and assign it this single role.  When new user
logs in, Jetspeed dynamically creates user profile by cloning role profile 
with generated by Jetspeed new unique portlet IDs for all portlets
and panes based on items defined in profile of the role assigned to the user 
at creation time.

If the setting 
automatic.logout.save = true|false
is set to true, at logout time this cloned user profile is save as 
psml file for this user.  In case it is set to false, user profile
is not save and is dynamically generated next time user logs in.

If for the logged in user I specify a browser link referencing a pane 
that is a link for the profile of the role, Jetspeed generates page based
on the role profile with all links on the page using role profile
IDs for panes and portlets that I define.  I would like this to happen
right after user logged in.

I went through source code in JetspeedProfilerService class and it appears 
to be that user profile is cloned from role profile with re-generation
of unique IDs.  It looks like it is the only way to support rolemerge
feature, but in my case I am going to use single role per user without
a need for user to customize layout.

Does somebody know if it is possible to achieve role based profile
usage at login time and avoid Jetspeed cloning user profile from 
role profile and operating on dynamically generated user profile 
after login?

Any advise will be greatly appreciated.

My settings in JetspeedResources.properties that were changed 
from defaults:

# Profiler Fallback options
# use Role-based PSML fallback
services.Profiler.rolefallback=true
...
# Profiler Role-based merge fallback options
# When rolefallback is true and rolemerge is true, new user's profile will 
# be an aggregate of psml from each role the user is part of.
services.Profiler.rolemerge=false
# When a new user is created, this account's psml is cloned to the new account psml
# Setting this account to nothing configures role-based psml as the default method for 
new users
services.Profiler.newuser.template=
...


Thank you,
Alex Kadyshevich







-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Difference between Struts and Jetspeed

2003-06-25 Thread Alex McLintock
At 18:58 25/06/03 +0530, you wrote:
Thanks for the reply. I wanted to know more inside information between 
Struts and Jetspeed.
According to my understanding both of them have lots in common such as
1. Following the MVC principle,
2. Ability to write the UI in different technology,
3. Ability to use layouts,
4. Ability to use actions, etc.,
1)
OK, MVC is over rated :-)
With Jetspeed you are not really writing one web app - you are writing 
dozens! Each portlet could be considered a mini web application.
I'd say that you could implement each individual portlet with its own MVC 
sub-structure.
Have a look at the Portlet API to understand more about that.

2) UI in different technology. H. See the portlet API. It is kind of 
Java specific, but so long as your servlet complies
with the API you should be able to write your portlets in Velocity, or 
Struts, or whatever.

3) What layouts? Jetspeed comes with a few layouts of its own - and this is 
ok. Struts comes with no layouts that
I know of.

4) Actions: well we are starting to get silly. We are comparing apples 
to oranges here. Not sure what you mean by an action
in Jetspeed terms.

Jetspeed uses Turbine - which performs a similar set of things that Struts 
does.

Perhaps you are trying to compare Turbine and Struts?

(Incidently - you don't have to write your portlets with Turbine even 
though Jetspeed was written using it).

You can download Jetspeed and quite quickly get a working web application 
framework. You can;t do that with Struts - even with
Ted Husted's cool Struts skeletons.

Alex



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Difference between Struts and Jetspeed

2003-06-25 Thread Alex McLintock
At 17:22 25/06/03 +0530, Anandkumar Ayyachamy wrote:
   Could any of you detail the difference between Struts and Jetspeed.



Is that a serious question? Why do you expect them to have any similarity 
at all?


OK. I've calmed down now.

Struts is a set of JSP tags and tools which help you build web 
applications. (Ok ok so you can use
Velocity as a templating system if you try hard)

Jetspeed is quite extensive portal software which lets you create a portal 
quite quickly.
From out of the box it has various useful features for sucking in data 
feeds and presenting
them to the user with the minimum amount of fuss and recoding.

For instance it has the concept portlets which are like the boxes you can 
add or remove from
a complex website such as calendar, news headlines, latest headlines from 
my slashdot and so on.

If you are not just doing a simple site with simple data feeds you may wish 
to implement
your own portlet. This is a bit like implementing a servlet - but with a 
stricter API to conform to.

You could implement a portlet with Struts if you really wanted. Or plain 
JSP, or servlet code or something else.

I hope that helps.

Alex McLintock



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Frame inside Portlet...

2002-10-08 Thread Bates, Alex


Thanks for the help!  Your syntax worked.  The final version I ended up
using is the following (setting the width to 100%):



Jetspeed Framed
Navigate SomeSite within an IFRAME

http://jakarta.apache.org/jetspeed"; hidden="false"
cachedOnName="true" cachedOnValue="true"/>




frames


-Original Message-
From: Mark Orciuch [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, October 08, 2002 9:53 AM
To: Jetspeed Users List
Subject: RE: Frame inside Portlet...

Alex,

Try setting the parameters as in the following example:



Jetspeed Framed
Navigate SomeSite within an IFRAME

http://jakarta.apache.org/jetspeed"; hidden="false"
cachedOnName="true" cachedOnValue="true"/>




frames


Hope this helps.

Best regards,

Mark C. Orciuch
Next Generation Solutions, Ltd.
e-Mail: [EMAIL PROTECTED]
web: http://www.ngsltd.com

> -Original Message-
> From: Bates, Alex [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 08, 2002 11:33 AM
> To: Jetspeed Users List
> Subject: RE: Frame inside Portlet...
>
>
>
> Thanks for the tip.  But I can't seem to get it to work - I tried a couple
> versions of setting these parameters and can't produce any effect:
>
> Version 1:
> org.apache.jetspeed.portal.portlets.IFramePortlet
>  
>
> version 2:
> org.apache.jetspeed.portal.portlets.IFramePortlet
>  
>
> Am I doing something wrong?
>
> Alex
>
>
> -Original Message-
> From: Mark Orciuch [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 08, 2002 8:28 AM
> To: Jetspeed Users List
> Subject: RE: Frame inside Portlet...
>
> You can control it with "width" and "height" parameters. See javadoc for
> IFramePortlet.
>
> Best regards,
>
> Mark C. Orciuch
> Next Generation Solutions, Ltd.
> e-Mail: [EMAIL PROTECTED]
> web: http://www.ngsltd.com
>
>
> > -Original Message-
> > From: Bates, Alex [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, October 08, 2002 10:24 AM
> > To: [EMAIL PROTECTED]
> > Subject: Frame inside Portlet...
> >
> >
> > I figured out how to have a given link (cool!) in a portlet as a frame.
> >
> >
> >
> > And to hit 'customize' button for a portlet and change/update
> the link to
> > another link (also cool!)
> >
> >
> >
> > Q: this crams link into tiny frame (i.e. width of frame is only
> > 1/2 width of
> > portlet it resides in).  how to EXPAND the size of this frame so that it
> > fills the whole portlet?
> >
> >
> >
> > Alex
> >
> >
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
>
> --
> To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>


--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: Frame inside Portlet...

2002-10-08 Thread Bates, Alex


Thanks for the tip.  But I can't seem to get it to work - I tried a couple
versions of setting these parameters and can't produce any effect:

Version 1:
org.apache.jetspeed.portal.portlets.IFramePortlet
  

version 2:
org.apache.jetspeed.portal.portlets.IFramePortlet
  

Am I doing something wrong?

Alex


-Original Message-
From: Mark Orciuch [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, October 08, 2002 8:28 AM
To: Jetspeed Users List
Subject: RE: Frame inside Portlet...

You can control it with "width" and "height" parameters. See javadoc for
IFramePortlet.

Best regards,

Mark C. Orciuch
Next Generation Solutions, Ltd.
e-Mail: [EMAIL PROTECTED]
web: http://www.ngsltd.com


> -Original Message-
> From: Bates, Alex [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, October 08, 2002 10:24 AM
> To: [EMAIL PROTECTED]
> Subject: Frame inside Portlet...
>
>
> I figured out how to have a given link (cool!) in a portlet as a frame.
>
>
>
> And to hit 'customize' button for a portlet and change/update the link to
> another link (also cool!)
>
>
>
> Q: this crams link into tiny frame (i.e. width of frame is only
> 1/2 width of
> portlet it resides in).  how to EXPAND the size of this frame so that it
> fills the whole portlet?
>
>
>
> Alex
>
>


--
To unsubscribe, e-mail:
<mailto:[EMAIL PROTECTED]>
For additional commands, e-mail:
<mailto:[EMAIL PROTECTED]>

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Frame inside Portlet...

2002-10-08 Thread Bates, Alex

I figured out how to have a given link (cool!) in a portlet as a frame.

 

And to hit 'customize' button for a portlet and change/update the link to
another link (also cool!)

 

Q: this crams link into tiny frame (i.e. width of frame is only 1/2 width of
portlet it resides in).  how to EXPAND the size of this frame so that it
fills the whole portlet?

 

Alex




RSS cache for other portals?

2002-10-08 Thread Alex McLintock

Jetspeed has within it a useful mechanism for fetching and caching RSS files.

I've noticed that this might be useful for other applications such as a 
portal application written with Cocoon. (No don't laugh why aren't they 
using Jetspeed you cry).

Anyway if we assume that people have need of rss files and don't want to 
implement their own caching mechanism is it possible to use Jetspeed to 
serve these RSS files which it caches?

Presumably the "official" way is to have jetspeed running in the same JVM 
as your application and use the java API for retrieving rss files from the 
cache, but that isn't always possible. It would be easier if Jetspeed could 
serve the rss files in the cache

Any suggestions?

Alex




Openweb Analysts Ltd, London.
Software For Complex Websites http://www.OWAL.co.uk/
Open Source Software Companies please register here 
http://www.OWAL.co.uk/oss_support/


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: How to start

2002-09-26 Thread Alex McLintock


>   What I can use as a starting point to make my jetspeed portal ?
>   The problem is the sample who comes with jetspeed has many features
>so I am felling lost.


Just take one of the portlets most close to what you want and start to 
modify that one.

Eg the Velocity portlet if you are a velocity programmer, the JSP portlet 
if you prefer JSPs. (There is one isn't there).

You can ignore all the other portlet types you don't need.

Alex



Openweb Analysts Ltd, London.
Software For Complex Websites http://www.OWAL.co.uk/
Open Source Software Companies please register here 
http://www.OWAL.co.uk/oss_support/


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




JDK1.3 needed?

2002-09-17 Thread Alex McLintock

Hi folks,

I have a broken Jetspeed 1.3a1 The RSSPortlets are not displaying 
anything. I am getting


[Tue Sep 17 15:58:27 GMT+01:00 2002] --  ERROR  -- RSSPortlet:  Couldn't 
parse out XML document -> http://news.d
iversebooks.com/awards.rdf
 Exception: 
org.apache.jetspeed.services.urlmanager.URLNotAvailableException: The 
following URL is not available because it is considered invalid: 
http://news.diversebooks.com/awards.rdf
 Stack Trace follows:
 org.apache.jetspeed.services.urlmanager.URLNotAvailableException: 
The following URL is not available bec
ause it is considered invalid: http://news.diversebooks.com/awards.rdf
 at 
org.apache.jetspeed.services.urlmanager.URLFetcher.fetch(URLFetcher.java:109)


Any suggestions for figuring out why it says "considered invalid" ?

==

Linux RedHat 7.1, Tomcat 4.something,

==

However I am more interested in starting from scratch with a Jetspeed 1.4b1 
instance. I have gotten this working with my 4.13 Tomcat installation.
What I am confused about is that the website says that JDK1.3 or higher is 
needed, and I am using 1.2.2. Is that a problem?


Alex McLintock





Openweb Analysts Ltd, London.
Software For Complex Websites http://www.OWAL.co.uk/
Open Source Software Companies please register here 
http://www.OWAL.co.uk/oss_support/


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: why do not the authors of Jetspeed write the detail document about Jetspeed?

2002-06-28 Thread Alex McLintock

Maybe it is because software engineers have such bad command of the English 
language?

Alex


At 09:31 28/06/02, you wrote:
>Why?so lack of documents:)
>
>does it take much time?the author have no time? should we pay the money for
>this?
>
>OpenSource software!too cheap to get,but too hard to learn.






Openweb Analysts Ltd, London: Software For Complex Websites 
http://www.OWAL.co.uk/
Free Consultancy for London Companies thinking of Open Source Software.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




RE: Error Occured - Configuring Jetspeed with JSP

2002-06-24 Thread Alex McLintock

At 13:14 24/06/02, John Trollinger wrote:
>JSP is very poorly supported in jetspeed... it seems like they are
>trying to make jetspeed an extension to velocity instead of making a
>portal server.


I think it would be fairer to say that many of the Jetspeed developers 
don't like JSP and therefore don't develop portlets with it, and therefore 
JSP support has fallen behind Velocity.


Alex




Openweb Analysts Ltd, London: Software For Complex Websites 
http://www.OWAL.co.uk/
Free Consultancy for London Companies thinking of Open Source Software.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Jetspeed Sites ?

2002-06-18 Thread Alex McLintock


Is there a list of live sites which use Jetspeed. There is the small list 
on the jetspeed
website but that seems to be a bit out of date and quite small.

Thanks

Alex




Openweb Analysts Ltd, London: Software For Complex Websites 
http://www.OWAL.co.uk/
Free Consultancy for London Companies thinking of Open Source Software.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Status of 1.3a2 release

2001-12-22 Thread Alex McLintock

Hi folks,

I am returning to Jetspeed after around six months away and happily I 
discover there is a "release":
"1.3a2"   Or is this still a release candidate?

I am trying to install it on a Win98 box with 128Mb (just don't ask - I'll 
put it on a proper OS soon).

I have most of it working but the BadURLManagerDemon is throwing a NPE on 
startup. Is it doing so
for everyone else too or is it just me? (I'll post the stack trace if 
anyone is interested).

Also I am confused as to whether the local.ocs feed is used anywhere. Is it?

I can add JetspeedContent in the admin menus but whenever I try adding the 
jetspeedcontent portlet
it is reported as "unavailable" and does not appear.

I have some RSS portlets working and some not - but there seems to be no 
rhyme or reason to it.
I can't see any errors in the jetspeed log Any hints? I don't *think* 
it is a bad url

Oversights:
Some items in the admin menus assume that it is installed in a directory 
called "jetspeed".


Thanks again people for some fine software.

Alex


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Current Status

2001-11-21 Thread Alex McLintock

Hi folks,

I've been lurking on this list for some time and have a very old 1.3 
installation on my
site somewhere - but it hasn't been updated much

I can't see a more recent release though since May 2001, is there one?

And if I grab the latest CVS source can it parse the rss files as generated
by the slashcode software used by Slashdot?


Thanks.

Alex


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>




Re: Portal

2001-06-21 Thread Alex McLintock

At 17:10 19/06/01, you wrote:
>How to  add a FAQ style Q&A module to the portal

Don't ya just love these verbose emails.

What are you trying to do?

OK Here's some info which may be useful.

Some time ago Jon threw together some nice and simple code which
worked as Apache's main FAQ software. This is Jyve. It was based on
Tubine (as it was some time ago). There are a few people who really liked
this software, but sadly for a time its development lagged behind Turbine.

Now more recently some nice people are trying to to take the basic
design of Jyve and convert it to use Velocity and the latest version of
Turbine.

This might also have an portlet interface, but that isn't a priority for
the developers. The portlet interface might only need to be
read only though - to make things simpler.


Of higher priority is perhaps making a stand alone WAR for easy
installation - perhaps using hypersonic SQL like jetspeed.

I personally am a great fan of Jyve - but the proof of the pudding
is the code I can contribute and I doubt I will have enough spare time
before August - I am too busy with my computing and SF book reviews
website http://news.DiverseBooks.com

Alex


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]