RE: chart portlet on jetspeed

2004-08-19 Thread Shen, Ching
Moabi
I have problem to write an action portlet for DatasetProducer too 
Do you mind share a sample action java code for action too, such as premiumGraph?
Thank you very much!

-Original Message-
From: Moabi Nyokong [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 18, 2004 2:12 AM
To: 'Jetspeed Users List'
Subject: RE: chart portlet on jetspeed


We use cewolf over here...same thing applies. Create data for the chart in
an action, pick up this data in a JSPPortlet with cewolf taglibs added...

This is what one of my graph pages looks like:

!-- JSPPortlet page --

%@ taglib uri='/templates/jsp/tld/template.tld' prefix='jetspeed' %
//Jetspeed taglib
%@ taglib uri='/templates/jsp/tld/cewolf-1.1.tld' prefix='cewolf' %
//Cewolf taglib
jsp:useBean id=premiumGraph  scope=session class=PremiumGraphBean/
//PremiumGraph implements a cewolf DatasetProducer, and holds a 2D Integer
array created from java.sql.ResultSet
 
cewolf:chart id=line title=%= premiumGraph.getHeading()%
type=Pie xaxislabel=Time
  yaxislabel=Premium showlegend=false
cewolf:data
cewolf:producer id=premiumGraph/ //Names the object
holding graph
/cewolf:data
/cewolf:chart

cewolf:img chartid=line renderer=cewolf width=800 height=300
cewolf:map id=premiumGraph/ //Prompts the graph object for data.
/cewolf:img

!--// JSPPortlet page --

-Original Message-
From: Devinder Sachdeva [mailto:[EMAIL PROTECTED] 
Sent: Tuesday 17 August 2004 11:56 PM
To: Jetspeed Users List
Subject: RE: chart portlet on jetspeed

Just create portlet as steps mentioned in the JetSpeed .
 I'm not aware how  does cewolf and jfreechart work but for easycharts  add
the following lines in the JSP or VM portlet .
There are a quite bit good examples in the easychart .

applet code=com.objectplanet.chart.ext.TimeLineChartApplet
CODEBASE=.
archive=/chart.ext.jar width=700 height=350

param name=chartTitle value=2004 Monthly Revenues param
name=seriesCount value=3






Shen, Ching [EMAIL PROTECTED]
08/17/2004 05:47 PM
Please respond to Jetspeed Users List

 
To: Jetspeed Users List [EMAIL PROTECTED]
cc: 
Subject:RE: chart portlet on jetspeed


There are also other chart packages, such as  cewolf and jfreechart.
The problem is I need a  portlet sample which can embeded chart capability
since I don't know what it should looks like.
Any samples you can share?

-Original Message-
From: Devinder Sachdeva [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 17, 2004 3:00 PM
To: Jetspeed Users List
Subject: Re: chart portlet on jetspeed


Ching-
Create a Portlet (VM) or JSP include applet as applet
code=com.objectplanet.chart.ext.TimeLineChartApplet
CODEBASE=.
archive=/chart.ext.jar width=700 height=350

param name=chartTitle value=2004 Monthly Revenues param
name=seriesCount value=3 ..


We used http://www.objectplanet.com/EasyCharts/
Keep EasyChart jar in classpath .It works fine.

Thanks
Devinder




Shen, Ching [EMAIL PROTECTED]
08/17/2004 03:51 PM
Please respond to Jetspeed Users List

 
To: [EMAIL PROTECTED]
cc: 
Subject:chart portlet on jetspeed


Does anybody have a portlet for chart,  from 2 columns,  with at least 1
column data , whether from a file or from database?
I am new in jetspeed and is looking for an example Any suggestion/comments
will be greatly appreciated.


Thank you!

Ching Shen



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


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

-
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: chart portlet on jetspeed

2004-08-18 Thread Shen, Ching
Thank you and this is exactly what I am looking for.

-Original Message-
From: Moabi Nyokong [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 18, 2004 2:12 AM
To: 'Jetspeed Users List'
Subject: RE: chart portlet on jetspeed


We use cewolf over here...same thing applies. Create data for the chart in
an action, pick up this data in a JSPPortlet with cewolf taglibs added...

This is what one of my graph pages looks like:

!-- JSPPortlet page --

%@ taglib uri='/templates/jsp/tld/template.tld' prefix='jetspeed' %
//Jetspeed taglib
%@ taglib uri='/templates/jsp/tld/cewolf-1.1.tld' prefix='cewolf' %
//Cewolf taglib
jsp:useBean id=premiumGraph  scope=session class=PremiumGraphBean/
//PremiumGraph implements a cewolf DatasetProducer, and holds a 2D Integer
array created from java.sql.ResultSet
 
cewolf:chart id=line title=%= premiumGraph.getHeading()%
type=Pie xaxislabel=Time
  yaxislabel=Premium showlegend=false
cewolf:data
cewolf:producer id=premiumGraph/ //Names the object
holding graph
/cewolf:data
/cewolf:chart

cewolf:img chartid=line renderer=cewolf width=800 height=300
cewolf:map id=premiumGraph/ //Prompts the graph object for data.
/cewolf:img

!--// JSPPortlet page --

-Original Message-
From: Devinder Sachdeva [mailto:[EMAIL PROTECTED] 
Sent: Tuesday 17 August 2004 11:56 PM
To: Jetspeed Users List
Subject: RE: chart portlet on jetspeed

Just create portlet as steps mentioned in the JetSpeed .
 I'm not aware how  does cewolf and jfreechart work but for easycharts  add
the following lines in the JSP or VM portlet .
There are a quite bit good examples in the easychart .

applet code=com.objectplanet.chart.ext.TimeLineChartApplet
CODEBASE=.
archive=/chart.ext.jar width=700 height=350

param name=chartTitle value=2004 Monthly Revenues param
name=seriesCount value=3






Shen, Ching [EMAIL PROTECTED]
08/17/2004 05:47 PM
Please respond to Jetspeed Users List

 
To: Jetspeed Users List [EMAIL PROTECTED]
cc: 
Subject:RE: chart portlet on jetspeed


There are also other chart packages, such as  cewolf and jfreechart.
The problem is I need a  portlet sample which can embeded chart capability
since I don't know what it should looks like.
Any samples you can share?

-Original Message-
From: Devinder Sachdeva [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 17, 2004 3:00 PM
To: Jetspeed Users List
Subject: Re: chart portlet on jetspeed


Ching-
Create a Portlet (VM) or JSP include applet as applet
code=com.objectplanet.chart.ext.TimeLineChartApplet
CODEBASE=.
archive=/chart.ext.jar width=700 height=350

param name=chartTitle value=2004 Monthly Revenues param
name=seriesCount value=3 ..


We used http://www.objectplanet.com/EasyCharts/
Keep EasyChart jar in classpath .It works fine.

Thanks
Devinder




Shen, Ching [EMAIL PROTECTED]
08/17/2004 03:51 PM
Please respond to Jetspeed Users List

 
To: [EMAIL PROTECTED]
cc: 
Subject:chart portlet on jetspeed


Does anybody have a portlet for chart,  from 2 columns,  with at least 1
column data , whether from a file or from database?
I am new in jetspeed and is looking for an example Any suggestion/comments
will be greatly appreciated.


Thank you!

Ching Shen



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


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

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



chart portlet on jetspeed

2004-08-17 Thread Shen, Ching
Does anybody have a portlet for chart,  from 2 columns,  with at least 1 column data , 
whether from a file or from database?
I am new in jetspeed and is looking for an example
Any suggestion/comments will be greatly appreciated.


Thank you!

Ching Shen



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



RE: chart portlet on jetspeed

2004-08-17 Thread Shen, Ching
There are also other chart packages, such as  cewolf and jfreechart.
The problem is I need a  portlet sample which can embeded chart capability since I 
don't know what it should looks like.
Any samples you can share?

-Original Message-
From: Devinder Sachdeva [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 17, 2004 3:00 PM
To: Jetspeed Users List
Subject: Re: chart portlet on jetspeed


Ching-
Create a Portlet (VM) or JSP include applet as
applet code=com.objectplanet.chart.ext.TimeLineChartApplet
CODEBASE=.
archive=/chart.ext.jar width=700 height=350

param name=chartTitle value=2004 Monthly Revenues
param name=seriesCount value=3
.. 

We used http://www.objectplanet.com/EasyCharts/ 
Keep EasyChart jar in classpath .It works fine.

Thanks
Devinder




Shen, Ching [EMAIL PROTECTED]
08/17/2004 03:51 PM
Please respond to Jetspeed Users List

 
To: [EMAIL PROTECTED]
cc: 
Subject:chart portlet on jetspeed


Does anybody have a portlet for chart,  from 2 columns,  with at least 1 
column data , whether from a file or from database?
I am new in jetspeed and is looking for an example
Any suggestion/comments will be greatly appreciated.


Thank you!

Ching Shen



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


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



library struts-1.2.1.jar missing

2004-08-10 Thread Shen, Ching
Hi,
Am I the only person has problem to build jetspeed 2?
When I am trying to build, I get following errors:
Attempting to download struts-1.2.1.jar.
WARNING: Failed to download struts-1.2.1.jar.
 
BUILD FAILED
File.. /root/jakarta-jetspeed-2/maven.xml
Element... maven:reactor
Line.. 151
Column 40
The build cannot continue because of the following unsatisfied dependency:
 
struts-1.2.1.jar

I checked ibiblio site, and the library is not there!  Where can  get this version of 
status? 
I would appreciate any guideline

Thank you!

Ching Shen



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



RE: library struts-1.2.1.jar missing

2004-08-10 Thread Shen, Ching
Ate:
After add-in http://cvs.apache.org/repository/ into build.properties , the build is 
successful
Thank you for the tip.

-Original Message-
From: Ate Douma [mailto:[EMAIL PROTECTED]
Sent: Tuesday, August 10, 2004 1:11 PM
To: Jetspeed Users List
Subject: Re: library struts-1.2.1.jar missing




Shen, Ching wrote:

 Hi,
 Am I the only person has problem to build jetspeed 2?
 When I am trying to build, I get following errors:
 Attempting to download struts-1.2.1.jar.
 WARNING: Failed to download struts-1.2.1.jar.
  
 BUILD FAILED
 File.. /root/jakarta-jetspeed-2/maven.xml
 Element... maven:reactor
 Line.. 151
 Column 40
 The build cannot continue because of the following unsatisfied dependency:
  
 struts-1.2.1.jar
 
 I checked ibiblio site, and the library is not there!  Where can  get this version 
 of status? 
 I would appreciate any guideline
Its in http://cvs.apache.org/repository/
Make sure your own build.properties (in your user home) doesn't override the 
maven.repo.remote property as specified in the project.properties in the J2 
source tree.

 
 Thank you!
 
 Ching Shen
 
 
 
 -
 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]


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



RE: jetspeed 1 and wap

2004-08-06 Thread Shen, Ching
Danny:
Thanks for point out the bug. At least now I know it is not my setup procedure.
Since I am new in WAP device, I would really appreciate it if you can share your 
working wml/default.jsp,wml/default.vm files and other related scripts which allow 
user login 
Thank you very much

-Original Message-
From: Danny [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 04, 2004 2:59 AM
To: 'Jetspeed Users List'
Subject: AW: jetspeed 1 and wap


I figured out, that the wml/default.jsp for jsp layout doesn't
support login.
I copied over the wml/default.vm and some related scripts and fixed it.

 -Ursprüngliche Nachricht-
 Von: Shen, Ching [mailto:[EMAIL PROTECTED]
 Gesendet: Dienstag, 3. August 2004 18:31
 An: [EMAIL PROTECTED]
 Betreff: jetspeed 1 and wap


 I am trying to setup my jetspeed apps (ops) for WAP users who using
 blackberry devices.
 User can access directly to wml file OK,
 http://linuxdv01:8080/ops/wml/weather.wml

 But if they use http://linuxdv01:8080/ops/,
 they view user  anon whole default HTML page, instead only login
 portion.
 Problem1: with WML enable only, user can't login
 Problem: with HTML/WML enable , user can login, but get html
 view for user turbine instead wml view
 What I did wrong or missing?
 Please help. Any suggestion will be greatly appreciated



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


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



RE: jetspeed 1 and wap

2004-08-06 Thread Shen, Ching
Raphael:
Thanks for the help.
I checked the file and see there has no place mentioned blackburry browser
blackburry browser claim 
Protocol  
WAP 1.1 , HTTP/IPPP 
Gateways
WAP 1.1 - any WAP-compliant gateway, without proprietary extensions (must 
support WTP-level segmentation and reassembly)
HTTP/IPPP - Blackberry Enterprise Server with Mobile Data Service extensions 

Description
WAP - push applications are not supported
- supports WAP 1.1 features, including WML 1.3, WMLScript 1.2, and WTLS
   
HTTP - supports HTTP over SSL/TLS
 - supports secure access to corporate intranets, including push 
applications and custom plug-ins for data parsing and conversion
Since I am new in WAP , I would really appreciate it if you can let me know whether 
their browser meet one of jetspeed 1 client category. Does upgrade to jetspeed 2 will 
help?

-Original Message-
From: Raphaël Luta [mailto:[EMAIL PROTECTED]
Sent: Thursday, August 05, 2004 5:43 AM
To: Jetspeed Users List
Subject: Re: jetspeed 1 and wap


Shen, Ching wrote:
 I am trying to setup my jetspeed apps (ops) for WAP users who using 
 blackberry devices.
 User can access directly to wml file OK,
 http://linuxdv01:8080/ops/wml/weather.wml
 
 But if they use http://linuxdv01:8080/ops/, 
 they view user  anon whole default HTML page, instead only login 
 portion.
 Problem1: with WML enable only, user can't login
 Problem: with HTML/WML enable , user can login, but get html view for user turbine 
 instead wml view
 What I did wrong or missing?
 Please help. Any suggestion will be greatly appreciated
 
 

Make sure the client you use for testing is recognized as a WML
compatible device in WEB-INF/conf/clients.xreg

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

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



jetspeed 1 and wap

2004-08-03 Thread Shen, Ching
I am trying to setup my jetspeed apps (ops) for WAP users who using 
blackberry devices.
User can access directly to wml file OK,
http://linuxdv01:8080/ops/wml/weather.wml

But if they use http://linuxdv01:8080/ops/, 
they view user  anon whole default HTML page, instead only login 
portion.
Problem1: with WML enable only, user can't login
Problem: with HTML/WML enable , user can login, but get html view for user turbine 
instead wml view
What I did wrong or missing?
Please help. Any suggestion will be greatly appreciated



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