Re: Jetspeed 1.4 - trouble using jsp instead of velocity template

2004-03-26 Thread Stefano Bianchi
Dear Murphil,

the one I suggested should be the only change in JR.p relative to this
specific issue.

System should then ignore topnav.vm, leftnav.vm, bottomnav.vm when
formatting the portal layout.

You just have to make all changes you need (images, background) in relative
files in [TOMCAT]\webapps\jetspeed\WEB-INF\templates\jsp\navigations\html.

Properties files are long to read and analyse, but they are quite powerful!

Good luck
Stefano


- Original Message - 
From: Marphil [EMAIL PROTECTED]
To: Jetspeed Users List [EMAIL PROTECTED]
Sent: Friday, March 26, 2004 8:56 AM
Subject: Re: Jetspeed 1.4 - trouble using jsp instead of velocity template


 Hi Stefano,

 Do I still need to change the following in JR.p?
 topnav.vm
 leftnav.vm
 bottomnav.vm

 Thank you very much!


 Marphil


 --- Stefano Bianchi [EMAIL PROTECTED]
 wrote:
 
  Dear Marphil,
  have you changed the following line in
  TourbineResources.properties in
  [TOMCAT]\webapps\jetspeed\WEB-INF\conf?
  You have to define which template you want to use,
  but consider (this is
  what I experienced) that if you choose to use jsp,
  portal will be managed
  with a mix of vm and jsp, and not only with jsp
  (there are no controls nor
  controllers implemented in jsp, but I'm still using
  Jetspeed 1.4-b3...)
 
  #
 
 ---
  #
  #  T E M P L A T E  S E R V I C E
  #
  #
 
 ---
 
  # Roughly, the number of templates in each category.
  #
  # Defaults: layout=2, navigation=10, screen=50
 
  services.TemplateService.layout.cache.size=2
  services.TemplateService.navigation.cache.size=10
  services.TemplateService.screen.cache.size=50
  #
  services.TemplateService.default.extension=vm
  --
  -@@@
  services.TemplateService.default.extension=jsp
 
  Then if you want to change your top default just
  modify top_default.jsp in
 
 [TOMCAT]\webapps\jetspeed\WEB-INF\templates\jsp\navigations\html
  and it will
  work (no restart is needed if you change something
  on the fly).
 
  Best regards
  Stefano
 
 
 
  - Original Message - 
  From: Marphil [EMAIL PROTECTED]
  To: Jetspeed Users List
  [EMAIL PROTECTED]
  Sent: Friday, March 26, 2004 8:14 AM
  Subject: Jetspeed 1.4 - trouble using jsp instead of
  velocity template
 
 
   Hi,
  
   Can anybody share how did they managed to use jsp
  on
   their portals?
  
   I tried...
   topnav.vm=top_default.jsp
   but is throwing a JasperException.
  
   Thanks.
  
  
   Marphil
  
   __
   Do you Yahoo!?
   Yahoo! Finance Tax Center - File online. File on
  time.
   http://taxes.yahoo.com/filing.html
  
  
 
 -
   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]
 


 __
 Do you Yahoo!?
 Yahoo! Finance Tax Center - File online. File on time.
 http://taxes.yahoo.com/filing.html

 -
 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]



Please HELP!

2004-03-26 Thread sridhar ramalingam
Hello,
I'm really really new to Jetspeed.
I just downloaded Jetspeed 1.4 and deployed it under Tomcat 4.1.
I looked at the tutorial at
http://www.bluesunrise.com/jetspeed-docs/JetspeedTutorial.htm, is this
the only reading material available?
 
Thanks in advance!
Sridhar
 


Storing Data across multiple requests

2004-03-26 Thread Sprang, Henning (Firma CS)
Hy,
I am currently developing my first of a bunch of portlets on the jetspeed 1.4 platform 
(with the intent to switch to 1.5 as soon as the next beta release will be available).
I've chosen to implement the MVC pattern and want to use jsp as the view technology.

In this setting i subclass GenericMVCAction for my action handling and let my
Logic class store the data for the view in the context that I have available
in my Action class and transferred from there to the logic class.

Now, it would be desireable, to have the data in that context available throughout
multiple http requests of my portlet ( it would save me, for example, doing database
requests again and again when i am only paging through multiple pages of the same 
result)
and I assumed, GenericMVCContext would work like that. But I see, it doesn't, because
everything i store in the context on one request is gone with the next one.

Is there a way to make GenericMVCContext persistent throughout mutliple requests?

Thanks,
Henning

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



RE: Please HELP!

2004-03-26 Thread sridhar ramalingam
Hello again!
I'm trying to deploy the example in Tutorial 1.
Here is my build.properties

# testing 12345
#
# typical settings with source
#
#jetspeed_home=/bluesunrise/apache/jakarta-jetspeed
#catalina_home=/bluesunrise/apache/catalina
#portlet_app_name=jportal
#company=com.bluesunrise.jportal
#jetspeed_jar=/bin/jetspeed-1.5-dev.jar
#jetspeed_war=/bin/jetspeed.war
#jetspeed_lib=/lib
#jetspeed_conf=/webapp/WEB-INF/conf/
#
# typical settings without source
#
jetspeed_home=c:/Tomcat41/webapps/jetspeed/WEB-INF
catalina_home=c:/Tomcat41
portlet_app_name=jportal
company=com.bluesunrise.jportal
jetspeed_jar=/lib/jetspeed-1.4.jar
jetspeed_war=C:/Tomcat41/webapps/jetspeed-1.4/jetspeed.war
jetspeed_lib=/lib
jetspeed_conf=/conf




Ant tutorial-1 goes fine, no problems. But, ant deploy gives me this
error...

war_prepare_error:
 [echo]
 [echo] The jetspeed.war is not present! Please check
 [echo] to make sure that you have built the war file
 [echo] after the checking out from CVS.
 [echo]

BUILD FAILED
C:\temp\build.xml:266: Please build Jetspeed from the Jetspeed
installationt: ant war



Please let me know what I'm doing wrong.
Thanks!
Sridhar


-Original Message-
From: sridhar ramalingam [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 26, 2004 12:41 AM
To: [EMAIL PROTECTED]
Subject: Please HELP!


Hello,
I'm really really new to Jetspeed.
I just downloaded Jetspeed 1.4 and deployed it under Tomcat 4.1. I
looked at the tutorial at
http://www.bluesunrise.com/jetspeed-docs/JetspeedTutorial.htm, is this
the only reading material available?
 
Thanks in advance!
Sridhar
 

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



Re: Please HELP!

2004-03-26 Thread Vi
Don't build the examples, just read the tutorial. What you need is to 
understand, what to edit to achieve what you
want. The examples won't give you more than you can read from tutorial.

sridhar ramalingam wrote:

Hello again!
I'm trying to deploy the example in Tutorial 1.
Here is my build.properties
# testing 12345
#
# typical settings with source
#
#jetspeed_home=/bluesunrise/apache/jakarta-jetspeed
#catalina_home=/bluesunrise/apache/catalina
#portlet_app_name=jportal
#company=com.bluesunrise.jportal
#jetspeed_jar=/bin/jetspeed-1.5-dev.jar
#jetspeed_war=/bin/jetspeed.war
#jetspeed_lib=/lib
#jetspeed_conf=/webapp/WEB-INF/conf/
#
# typical settings without source
#
jetspeed_home=c:/Tomcat41/webapps/jetspeed/WEB-INF
catalina_home=c:/Tomcat41
portlet_app_name=jportal
company=com.bluesunrise.jportal
jetspeed_jar=/lib/jetspeed-1.4.jar
jetspeed_war=C:/Tomcat41/webapps/jetspeed-1.4/jetspeed.war
jetspeed_lib=/lib
jetspeed_conf=/conf


Ant tutorial-1 goes fine, no problems. But, ant deploy gives me this
error...
war_prepare_error:
[echo]
[echo] The jetspeed.war is not present! Please check
[echo] to make sure that you have built the war file
[echo] after the checking out from CVS.
[echo]
BUILD FAILED
C:\temp\build.xml:266: Please build Jetspeed from the Jetspeed
installationt: ant war


Please let me know what I'm doing wrong.
Thanks!
Sridhar
-Original Message-
From: sridhar ramalingam [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 26, 2004 12:41 AM
To: [EMAIL PROTECTED]
Subject: Please HELP!

Hello,
I'm really really new to Jetspeed.
I just downloaded Jetspeed 1.4 and deployed it under Tomcat 4.1. I
looked at the tutorial at
http://www.bluesunrise.com/jetspeed-docs/JetspeedTutorial.htm, is this
the only reading material available?
Thanks in advance!
Sridhar
-
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]


download jetspeed 2

2004-03-26 Thread Paulo R Ribeiro
Where can I download jetspeed 2? Is it worth trying
for now? Have anyone got it working?

Paulo

__

Yahoo! Mail - O melhor e-mail do Brasil! Abra sua conta agora:
http://br.yahoo.com/info/mail.html

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



Re: Please HELP!

2004-03-26 Thread Massimiliano Dessi
The english translation of articles on Mokabyte.it

http://www.jugsardegna.org/vqwiki/jsp/Wiki?PortletJava1En

http://www.jugsardegna.org/vqwiki/jsp/Wiki?PortletJava2En


- Original Message - 
From: sridhar ramalingam [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, March 26, 2004 9:40 AM
Subject: Please HELP!


 Hello,
 I'm really really new to Jetspeed.
 I just downloaded Jetspeed 1.4 and deployed it under Tomcat 4.1.
 I looked at the tutorial at
 http://www.bluesunrise.com/jetspeed-docs/JetspeedTutorial.htm, is this
 the only reading material available?
  
 Thanks in advance!
 Sridhar
  
 

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



Re: Please HELP!

2004-03-26 Thread Massimiliano Dessi
The english translation of articles on Mokabyte.it

http://www.jugsardegna.org/vqwiki/jsp/Wiki?PortletJava1En

http://www.jugsardegna.org/vqwiki/jsp/Wiki?PortletJava2En



- Original Message - 
From: sridhar ramalingam [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, March 26, 2004 9:40 AM
Subject: Please HELP!


 Hello,
 I'm really really new to Jetspeed.
 I just downloaded Jetspeed 1.4 and deployed it under Tomcat 4.1.
 I looked at the tutorial at
 http://www.bluesunrise.com/jetspeed-docs/JetspeedTutorial.htm, is this
 the only reading material available?
  
 Thanks in advance!
 Sridhar
  
 

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



compiling the tutorial problem

2004-03-26 Thread Nehemia Litterat

Hi All

Is anybody can tell me why I am getting this error

I am using ECLIPSE as editor and I am running ANT with it
JAVA_HOME  do point to the JDK
 The ERROR 
[javac] BUILD FAILED: file:E:/work/work/Installation/JETSPEED/jportal/build.xml:135: 
Unable to find a javac compiler;

com.sun.tools.javac.Main is not on the classpath.

Perhaps JAVA_HOME does not point to the JDK



this is my property file

jetspeed_home=C:/Program Files/Apache Group/Tomcat 4.1/webapps/jetspeed/WEB-INF

catalina_home=C:/Program Files/Apache Group/Tomcat 4.1

portlet_app_name=jportal

company=xxx

jetspeed_jar=/lib/jetspeed-1.4.jar

jetspeed_war=C:/Program Files/Apache Group/Tomcat 4.1/webapps/jetspeed

jetspeed_lib=/WEB-INF/lib

jetspeed_conf=/WEB-INF/conf/


Thanks
   Nehemia Litterat
   064700685

-
Do you Yahoo!?
Yahoo! Finance Tax Center - File online. File on time.

RE: download jetspeed 2

2004-03-26 Thread Weaver, Scott
Hi Paulo,

You can check it out from the apache CVS, module name: jakarta-jetspeed-2.


Regards,
** 
| Scott T Weaver |
| [EMAIL PROTECTED]| 
| Apache Jetspeed Portal Project |
| Apache Pluto Portlet Container |
**

 -Original Message-
 From: Paulo R Ribeiro [mailto:[EMAIL PROTECTED]
 Sent: Friday, March 26, 2004 5:52 AM
 To: [EMAIL PROTECTED]
 Subject: download jetspeed 2
 
 Where can I download jetspeed 2? Is it worth trying
 for now? Have anyone got it working?
 
 Paulo
 
 __
 
 Yahoo! Mail - O melhor e-mail do Brasil! Abra sua conta agora:
 http://br.yahoo.com/info/mail.html
 
 -
 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]



RE: Storing Data across multiple requests

2004-03-26 Thread Jeremy Ford
Take a look at the class PortletSessionState.  With it you can do something 
like

PortletSessionState.setAttribute(portlet, rundata, name, value);

and then in another request

Object val = PortletSessionState.getAttribute(portlet, rundata, name');

There are other helper methods as well.  Also, PortletConfigState is another 
helpful class when using the GenericMVC portlet.

Jeremy Ford
[EMAIL PROTECTED]

From: Sprang, Henning (Firma CS) [EMAIL PROTECTED]
Reply-To: Jetspeed Users List [EMAIL PROTECTED]
To: Jetspeed Users List (E-Mail) [EMAIL PROTECTED]
Subject: Storing Data across multiple requests
Date: Fri, 26 Mar 2004 10:11:45 +0100
Hy,
I am currently developing my first of a bunch of portlets on the jetspeed 
1.4 platform
(with the intent to switch to 1.5 as soon as the next beta release will be 
available).
I've chosen to implement the MVC pattern and want to use jsp as the view 
technology.

In this setting i subclass GenericMVCAction for my action handling and let 
my
Logic class store the data for the view in the context that I have 
available
in my Action class and transferred from there to the logic class.

Now, it would be desireable, to have the data in that context available 
throughout
multiple http requests of my portlet ( it would save me, for example, doing 
database
requests again and again when i am only paging through multiple pages of 
the same result)
and I assumed, GenericMVCContext would work like that. But I see, it 
doesn't, because
everything i store in the context on one request is gone with the next one.

Is there a way to make GenericMVCContext persistent throughout mutliple 
requests?

Thanks,
Henning
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
_
Find a broadband plan that fits. Great local deals on high-speed Internet 
access. 
https://broadband.msn.com/?pgmarket=en-us/go/onm00200360ave/direct/01/

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


Portlet communication question

2004-03-26 Thread Oliver Pfau
Hi,

I have question concerning the JSR 168 standard. I want to convert a struts
application in an portlet. The struct application uses a frameset. Theres a
mask for several entries and one to view the results (scolling is needed). I
thought about two possibilities:

1. split the struts-app in 2 several portlet (how can I realize the
communication mechanism ? Events between portlets aren't defined in JSR 168)
2. can I aggregate the two portlets in another portlet with scrolling
mechanism ?

thanks in advance...

Greetings,
Oliver Pfau


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



$$$make real money$$$...turn 6$ to 60,000$

2004-03-26 Thread theeb
   EXCELLENT CASH INCOME

I started out with $6. Now, I am making thousands.
I found this on a bulletin board and decided to try it. A little
while back, I was browsing through newsgroups, just like you are now,
and came across an article similar to this that said you could make
thousands of dollars within weeks with only an initial investment of
$6.00! So I thought, Yeah right, this must be a scam, but
like most of us, I was curious, so I kept reading. Anyway, it said
that you send $1.00 to each of the 6 names and addresses stated in the
article. You then place your own name and address in the bottom of
the list at #6, and post the article in at least 200 newsgroups.
(There are thousands) No catch, that was it. So after thinking it
over, and talking to a few people first, I thought about trying it. I
figured: what have I got to lose except 6 stamps and $6.00,
right? Then I invested the measly $6.00. Well GUESS WHAT!?...
within 7 days, I started getting money in the mail! I was shocked! I
figured it would end soon, but the money just kept coming in. In my
first week, I made about $25.00. By the end of the second week I had
made a total of over $1,000.00! In the third week I had over
$10,000.00 and it's still growing. This is now my fourth week and I
have made a total of just over $42,000.00 and it's still coming in
rapidly. It's certainly worth $6.00, and 6 stamps, I have spent more
than that on the lottery!! Let me tell you how this works and most
importantly, WHY it works... Also, make sure you print a copy of this
article NOW, so you can get the information off of it as you need it.
I promise you that if you follow the directions exactly, that you
will start making more money than you thought possible by doing
something so easy!

Suggestion: Read this entire message carefully! (print it out or
download it.) Follow the simple directions and watch the money come
in!

It's easy. It's legal. And your investment is only $6.00 (Plus
postage)

IMPORTANT: This is not a rip-off; it is not indecent; it is not
illegal; and it is 99% no risk - it really works!

If all of the following instructions are adhered to, you will receive
extraordinary dividends.

PLEASE NOTE:
Follow these directions EXACTLY, and $50,000.00 or more can be
yours in 20 to 60 days. This program remains successful because of
the honesty and integrity of the participants. Please continue its
success by carefully adhering to the instructions.
You will now become part of the Mail Order business. In this business
your product is not solid and tangible, it's a service. You are in
the business of developing Mailing Lists. Many large corporations are
happy to pay big bucks for quality lists. However, the money made
from the mailing lists is secondary to the income which is made from
people like you and me asking to be included in that list.

Here are the 4 easy steps to success:

STEP 1:
Get 6 separate pieces of paper and write down your name and address
followed by the words PLEASE ADD ME TO YOUR MAILING LIST on each
of them. Now get 6 US $1.00 bills and place ONE inside EACH of the
6 pieces of paper so the bill will not be visible through the envelope
(to prevent thievery). Next, place one paper in each of the 6 envelopes
and seal them. You should now have 6 sealed envelopes, each with a piece of
paper stating the above phrase, your name and address, and a $1.00
bill. What you are doing is creating a service. THIS IS ABSOLUTELY
LEGAL! You are requesting a legitimate service and you are paying for
it! Like most of us I was a little skeptical and a little worried
about the legal aspects of it all. So I checked it out with the U.S.
Post Office (1-800-725-2161) and they confirmed that it is indeed
legal. Mail the 6 envelopes to the following addresses:

1) Jay foresman
1925 Elmeda
Muskogee Ok, 74403

2) John Visser
11140 Streets Ridge
RR#2 Oxford, NS Canada, B0M 1P0

3) C. Warren
721 W. 1500 S.
Provo, UT 84601

4) justin s
12 bense ct
Washington, NJ 07882

5) Rueben Hernandez
709 3rd ave apt B
Bradley Beach, NJ 07720

6)Salameh basheer
  9331
Sakhnin, Israel 20173


STEP 2:
Now take the #1 name off the list that you see above, move
the other names up (6 becomes 5, 5 becomes 4, etc...) and add YOUR
Name as number 6 on the list.

STEP 3:
Change anything you need to, but try to keep this article as
close to original as possible. Now, post your amended article to at
least 200 newsgroups. (I think there are close to 24,000 groups) All
you need is 200, but remember, the more you post, the more money you
make! You won't get very much unless you post like crazy.

This is perfectly legal! If you have any doubts, refer to Title 18
Sec. 1302  1341 of the Postal lottery laws.
Keep a copy of these steps for yourself and, whenever you need money,
you can use it again, and again.

PLEASE REMEMBER that this program remains successful because of the
honesty and integrity of the participants and by their carefully
adhering to the directions. Look at