AW: It is possible to refresh Portlets ?

2002-11-28 Thread Heine, Christian (Extern)
Hi David,

thx for the help. Strutz TreeView looks nice, but in my organisation we
don't want to implements another ad-on to Jetspeed. This forced me to make
my own TreeView...

I understand the Actions of Turbine, but the Problem is, that i don't have
any Button to execute the action. In ECS (equals in Velocity) i have an
image like a folder which must trigger the action. This image is placed by
an IMG-Tag, where i can't add any action on the way like on buttons, because
i only have a href Attribute. 

I knows that the developer of Jetspeed uses in a special way that i can't
review the href-Attribute to link to the Action like $Action.link (U can see
it in the menu-tab.vm of the control). The Problem i have, is that i don't
know how this link is used as a reference to a real JAVA-Action-Object...

Christian




-Ursprüngliche Nachricht-
Von: David Sean Taylor [mailto:[EMAIL PROTECTED]]
Gesendet am: Mittwoch, 27. November 2002 19:17
An: Jetspeed Users List
Betreff: RE: It is possible to refresh Portlets ?



 -Original Message-
 From: Heine, Christian (Extern) [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, November 27, 2002 3:58 AM
 To: 'Jetspeed Users List'
 Subject: It is possible to refresh Portlets ?


 Hi all,

 i try to develop an portlet which is usable like the windows explorer. For
 that i create an AbstractPortlet and using the ECS to define the
 layout. The
 problem i have is, that i am forced to use actions on the Elements (the
 folder images).

Dont recommend using ECS, try JSP or Velocity


 To realize that actions i can't use real JAVA-Actions like the
 MouseListener
 because they are ignored by the Turbine-Engine. Now i have tried to use
 JAVA-Skript elements like onMouseOver to realize some actions. My
 idea is to
 force jetspeed by this action to refresh the page, analyses the parameters
 and repaint the table by using the parameters.

 The refresh works, but only my portlet is not refreshed and i got the
 following exception message where my portlet is:

 org.apache.turbine.util.TurbineException: Error rendering
 Velocity template:
 /controls/html/jetspeed.vm: Invocation of method 'getContent' in class
 org.apache.jetspeed.portal.security.portlets.CacheableStatefulPort
 letWrapper
 threw exception class java.util.NoSuchElementException : null

 Where is my failure? Knows anybody a solution or a better way to realize
 actions (perhaps execute real java actions)? In every action i
 must read out
 some parameters and repaint the explorer-Portlet by checking
 these params...

I believe Struts has a tree view control.
This looks cool, not sure if its part of Jakarta Struts or add-on

http://struts.application-servers.com/tags/treeview.html

Do you know about Turbine actions in Jetspeed?
http://jakarta.apache.org/turbine/turbine-2/howto/action-event-howto.html
http://jakarta.apache.org/turbine/turbine-2/fsd.html



--
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: JetSpeed on WebSphere

2002-11-28 Thread Aliyar, Nishar
Heei ,
Well you don't need any special thinks, open the admin console of the websphere 
and browse your .war file fill the name for context root, thats all, try out
and let me know.

Greetings
Nishar.

-Original Message-
From: Sakar Kawle [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 28, 2002 3:51 AM
To: [EMAIL PROTECTED]
Subject: JetSpeed on WebSphere



Are there any pointers/docs/url's that can help us to install JetSpeed 
on WebSphere. I tried searching for information... but found none. We 
have Jetspeed running all out-of-the-box on Tomcat but we want to run 
this on WebSphere. 

I found messages that indicate to me that people have tried this 
successfully. Currently I do not know what are all the components needed to 
get this running successfully on WebSphere.

Thanks in Advance,

Sakar




-
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now

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




AW: It is possible to refresh Portlets ?

2002-11-28 Thread Jürgen Hoffmann
Hi Christian,

To refer to actions in hrefs use:

a
href=$jslink.setTemplate(your,template.vm).addPathInfo(action,Acti
onClassName)img src=yourpic.png border=0/a

This will result that the doPerform Method of the ActionClass will be
called. If you want to call a certain method, the best bet would be to
supply the method in a parameter and the call this method from
doPerform. The Event Driven Submission (eventSubmit_doMymethod) will
only work in submit buttons.

Hope that helps

Kind regards
 
Jürgen Hoffmann
ByteACTION GmbH
 
cert. Perl Programmer
cert. Linux System Administrator
cert. Java Programmer 


-Ursprüngliche Nachricht-
Von: Heine, Christian (Extern) [mailto:[EMAIL PROTECTED]] 
Gesendet: Donnerstag, 28. November 2002 09:37
An: 'Jetspeed Users List'
Betreff: AW: It is possible to refresh Portlets ?


Hi David,

thx for the help. Strutz TreeView looks nice, but in my organisation we
don't want to implements another ad-on to Jetspeed. This forced me to
make my own TreeView...

I understand the Actions of Turbine, but the Problem is, that i don't
have any Button to execute the action. In ECS (equals in Velocity) i
have an image like a folder which must trigger the action. This image is
placed by an IMG-Tag, where i can't add any action on the way like on
buttons, because i only have a href Attribute. 

I knows that the developer of Jetspeed uses in a special way that i
can't review the href-Attribute to link to the Action like $Action.link
(U can see it in the menu-tab.vm of the control). The Problem i have, is
that i don't know how this link is used as a reference to a real
JAVA-Action-Object...

Christian




-Ursprüngliche Nachricht-
Von: David Sean Taylor [mailto:[EMAIL PROTECTED]]
Gesendet am: Mittwoch, 27. November 2002 19:17
An: Jetspeed Users List
Betreff: RE: It is possible to refresh Portlets ?



 -Original Message-
 From: Heine, Christian (Extern) [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, November 27, 2002 3:58 AM
 To: 'Jetspeed Users List'
 Subject: It is possible to refresh Portlets ?


 Hi all,

 i try to develop an portlet which is usable like the windows explorer.

 For that i create an AbstractPortlet and using the ECS to define the 
 layout. The problem i have is, that i am forced to use actions on the 
 Elements (the folder images).

Dont recommend using ECS, try JSP or Velocity


 To realize that actions i can't use real JAVA-Actions like the 
 MouseListener because they are ignored by the Turbine-Engine. Now i 
 have tried to use JAVA-Skript elements like onMouseOver to realize 
 some actions. My idea is to
 force jetspeed by this action to refresh the page, analyses the
parameters
 and repaint the table by using the parameters.

 The refresh works, but only my portlet is not refreshed and i got the 
 following exception message where my portlet is:

 org.apache.turbine.util.TurbineException: Error rendering Velocity 
 template:
 /controls/html/jetspeed.vm: Invocation of method 'getContent' in class

 org.apache.jetspeed.portal.security.portlets.CacheableStatefulPort
 letWrapper
 threw exception class java.util.NoSuchElementException : null

 Where is my failure? Knows anybody a solution or a better way to 
 realize actions (perhaps execute real java actions)? In every action i

 must read out some parameters and repaint the explorer-Portlet by 
 checking these params...

I believe Struts has a tree view control.
This looks cool, not sure if its part of Jakarta Struts or add-on

http://struts.application-servers.com/tags/treeview.html

Do you know about Turbine actions in Jetspeed?
http://jakarta.apache.org/turbine/turbine-2/howto/action-event-howto.htm
l
http://jakarta.apache.org/turbine/turbine-2/fsd.html



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




AW: It is possible to refresh Portlets ?

2002-11-28 Thread Heine, Christian (Extern)
Hi Jürgen,

thx 4 u're help, it's looke like u protected me from sleepless nights. I
will follow u're instruction to realize the explorer-Portlet.

Best greetings
Christian

--
gedas deutschland GmbH
Mgt.  Infrastr. Solutions
Alessandro Volta Straße 11, D-38440 Wolfsburg
mailto:[EMAIL PROTECTED]
http://www.gedas.com 
--









-Ursprüngliche Nachricht-
Von: Jürgen Hoffmann [mailto:[EMAIL PROTECTED]]
Gesendet am: Donnerstag, 28. November 2002 11:16
An: 'Jetspeed Users List'
Betreff: AW: It is possible to refresh Portlets ?

Hi Christian,

Sorry I have to correct myself. You CAN instruct which method is to be
called if you do the following:

a
href=$jslink.setTemplate(your,template.vm).addPathInfo(action,Acti
onClassName).addPathInfo(eventSubmit_doMymethodname,placeholder)
img src=yourpic.png border=0/a

This will call the method doMethodname in the class ActionClassName.

Sorry for the double post.

Kind regards
 
Jürgen Hoffmann
ByteACTION GmbH
 
cert. Perl Programmer
cert. Linux System Administrator
cert. Java Programmer 


-Ursprüngliche Nachricht-
Von: Jürgen Hoffmann [mailto:[EMAIL PROTECTED]] 
Gesendet: Donnerstag, 28. November 2002 11:10
An: 'Jetspeed Users List'
Betreff: AW: It is possible to refresh Portlets ?


Hi Christian,

To refer to actions in hrefs use:

a
href=$jslink.setTemplate(your,template.vm).addPathInfo(action,Acti
onClassName)img src=yourpic.png border=0/a

This will result that the doPerform Method of the ActionClass will be
called. If you want to call a certain method, the best bet would be to
supply the method in a parameter and the call this method from
doPerform. The Event Driven Submission (eventSubmit_doMymethod) will
only work in submit buttons.

Hope that helps

Kind regards
 
Jürgen Hoffmann
ByteACTION GmbH
 
cert. Perl Programmer
cert. Linux System Administrator
cert. Java Programmer 


-Ursprüngliche Nachricht-
Von: Heine, Christian (Extern) [mailto:[EMAIL PROTECTED]] 
Gesendet: Donnerstag, 28. November 2002 09:37
An: 'Jetspeed Users List'
Betreff: AW: It is possible to refresh Portlets ?


Hi David,

thx for the help. Strutz TreeView looks nice, but in my organisation we
don't want to implements another ad-on to Jetspeed. This forced me to
make my own TreeView...

I understand the Actions of Turbine, but the Problem is, that i don't
have any Button to execute the action. In ECS (equals in Velocity) i
have an image like a folder which must trigger the action. This image is
placed by an IMG-Tag, where i can't add any action on the way like on
buttons, because i only have a href Attribute. 

I knows that the developer of Jetspeed uses in a special way that i
can't review the href-Attribute to link to the Action like $Action.link
(U can see it in the menu-tab.vm of the control). The Problem i have, is
that i don't know how this link is used as a reference to a real
JAVA-Action-Object...

Christian




-Ursprüngliche Nachricht-
Von: David Sean Taylor [mailto:[EMAIL PROTECTED]]
Gesendet am: Mittwoch, 27. November 2002 19:17
An: Jetspeed Users List
Betreff: RE: It is possible to refresh Portlets ?



 -Original Message-
 From: Heine, Christian (Extern) [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, November 27, 2002 3:58 AM
 To: 'Jetspeed Users List'
 Subject: It is possible to refresh Portlets ?


 Hi all,

 i try to develop an portlet which is usable like the windows explorer.

 For that i create an AbstractPortlet and using the ECS to define the
 layout. The problem i have is, that i am forced to use actions on the 
 Elements (the folder images).

Dont recommend using ECS, try JSP or Velocity


 To realize that actions i can't use real JAVA-Actions like the
 MouseListener because they are ignored by the Turbine-Engine. Now i 
 have tried to use JAVA-Skript elements like onMouseOver to realize 
 some actions. My idea is to
 force jetspeed by this action to refresh the page, analyses the
parameters
 and repaint the table by using the parameters.

 The refresh works, but only my portlet is not refreshed and i got the
 following exception message where my portlet is:

 org.apache.turbine.util.TurbineException: Error rendering Velocity
 template:
 /controls/html/jetspeed.vm: Invocation of method 'getContent' in class

 org.apache.jetspeed.portal.security.portlets.CacheableStatefulPort
 letWrapper
 threw exception class java.util.NoSuchElementException : null

 Where is my failure? Knows anybody a solution or a better way to
 realize actions (perhaps execute real java actions)? In every action i

 must read out some parameters and repaint the explorer-Portlet by
 checking these params...

I believe Struts has a tree view control.
This looks cool, not sure if its part of Jakarta Struts or add-on

http://struts.application-servers.com/tags/treeview.html

Do you know about Turbine actions in Jetspeed?

Problems with JetSpeed on JBoss

2002-11-28 Thread Fabiano Cruz \(Cilix Software\)
Hi aLL,

I´m running JetSpeed 1.4b1 with MySQL on JBoss 3.0.3 ... everything works fine, but 
when JBoss started, 
I´m not seeing this msg:

10:13:18,069 INFO  [Server] JBoss (MX MicroKernel) [3.0.3 Date:200209301503] Sta
rted in 0m:18s:984ms

This message appears in the console and after this nothing more it appears (no error, 
info etc):

10:18:48,897 INFO  [Engine] ContextConfig[/jetspeed]: Added certificates - requ
est attribute Valve
10:18:52,194 INFO  [EmbeddedCatalinaService41] Using Java2 parent classloader de
legation: true
10:18:52,210 INFO  [Engine] StandardManager[/jetspeed]: Seeding random number ge
nerator class java.security.SecureRandom
10:18:52,210 INFO  [Engine] StandardManager[/jetspeed]: Seeding of random number
 generator has been completed

Please help me out.

Thanks
Fabiano Cruz


Joining mailing list

2002-11-28 Thread Renuka
Hello
 I would like to join inthe  mailing list.

Regards
Renuka




RE: New User Please Help me

2002-11-28 Thread Martin Kisimov
if you get the yahoo part right give me a shout, because we have been trying
to get this right for a while with moderate success but nothing to speak of
as of yet.

Main problems are URL rewriting and session management.

This obviously depends on the type of portlet you use. A standard JSP
portlet will probably load the Yahoo front page without a problem, but then
you are faced with URL rewriting, this mainly says that you will have to
scan the content and attempt to find all links and forms and any JavaScript
related links or forms. Rewrite those and it should be all good ;) not a
small task. Recently a WebBrowserPortlet was contributed to the apache site
just scan the mailing list it includes the jar and a small howto. I am not
sure if yahoo uses rewrites in their session management but if they simply
use cookies then these are normally blocked by the portlet...just some food
for thought
Hope it helps, I am a newbe here as well so I hope I did not get it all
wrong...


-Original Message-
From: Sangam Dash [mailto:[EMAIL PROTECTED]]
Sent: 28 November 2002 12:27
To: Jetspeed Users List
Subject: New User Please Help me


Hi

I have just started using jetsped i could able to add my website pages as
default portlets but now i need something more...

1.Once somebody logs in i need to show yahoo as a portlet so that the user
can login to yahoo but the page should run inside the portlet or when he
maximizes the portlet he can see his yahoo mails or yahoo personal folders
inside the same portlet or same window.
Is it possible ?
Please tell me how to start for that?

2. Is it possible that i can change the content of any portlet dynamically?
I mean the user can add some website URL and when he comes again to see it
the URLs show up in the portlet space.
Please help me out
thanks
sangam dash


--
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: It is possible to refresh Portlets ?

2002-11-28 Thread Massimiliano Dessi
In fact  the tag META HTTP-EQUIV=..
reload the entire page not a single portlet.

- Original Message -
From: David Sean Taylor [EMAIL PROTECTED]
To: Jetspeed Users List [EMAIL PROTECTED]
Sent: Wednesday, November 27, 2002 7:36 PM
Subject: RE: It is possible to refresh Portlets ?




  -Original Message-
  From: Massimiliano Dessi [mailto:[EMAIL PROTECTED]]
  Sent: Wednesday, November 27, 2002 7:53 AM
  To: Jetspeed Users List
  Subject: Re: It is possible to refresh Portlets ?
 
 
  I put the string  META HTTP-EQUIV=\REFRESH\ CONTENT=0,01 
  in a get content of a portlet ,one time to force the refresh the
  page,(content = specify the second after reload a page)
  and remove in the the next  call to the portlet.
  Use a flag to verify if the string has been put in the portlet
  one time, to
  remove it at the second call.
  Is' not a elegance method but it's the only that i found.
 

 You cannot have this setting per portlet.
 See the JR.p for page setting:

 #
 # HTTP Page header  #
 #
 # http.lifetime is the lifetime of the page as set in the
 # HTTP Headers
 #  -1 = Do not set cache related headers (Jetspeed 1.3a1 behavior)
 #   0 = set the following http headers
 #   Cache-Control = no-cache
 #   Last-Modified = (current time)
 #   Pragma= no-cache
 #   Expires   = 0
 #   n where n is the number of seconds:
 #   Cache-Control = max-age: n where n is the number of seconds
 #   Last-Modified = (current time)
 #   Expires   = (current time + n seconds)
 http.lifetime=0



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




UIX portlet

2002-11-28 Thread Pierre Henry
hi all.

I am trying to integrate UIX content (UIX = User Interface XML, a user
interface layout tool from Oracle) in a Portlet.

I have no clue of how to do this. Does anybody know how to start ? Has
anybody worked with Jetspeed and UIX ?

Any help greatly appreciated !

Pierre



RE: Joining mailing list

2002-11-28 Thread Pierre Henry
--- Administrative commands for the jetspeed-user list ---

I can handle administrative requests automatically. Please
do not send them to the list address! Instead, send
your message to the correct command address:

To subscribe to the list, send a message to:
   [EMAIL PROTECTED]

To remove your address from the list, send a message to:
   [EMAIL PROTECTED]

Send mail to the following for info and FAQ for this list:
   [EMAIL PROTECTED]
   [EMAIL PROTECTED]

Similar addresses exist for the digest list:
   [EMAIL PROTECTED]
   [EMAIL PROTECTED]

To get messages 123 through 145 (a maximum of 100 per request), mail:
   [EMAIL PROTECTED]

To get an index with subject and author for messages 123-456 , mail:
   [EMAIL PROTECTED]

They are always returned as sets of 100, max 2000 per request,
so you'll actually get 100-499.

To receive all messages with the same subject as message 12345,
send an empty message to:
   [EMAIL PROTECTED]

The messages do not really need to be empty, but I will ignore
their content. Only the ADDRESS you send to is important.

You can start a subscription for an alternate address,
for example [EMAIL PROTECTED], just add a hyphen and your
address (with '=' instead of '@') after the command word:
[EMAIL PROTECTED]

To stop subscription for this address, mail:
[EMAIL PROTECTED]

In both cases, I'll send a confirmation message to that address. When
you receive it, simply reply to it to complete your subscription.

If despite following these instructions, you do not get the
desired results, please contact my owner at
[EMAIL PROTECTED] Please be patient, my owner is a
lot slower than I am ;-)

 -Original Message-
 From: Renuka [mailto:[EMAIL PROTECTED]]
 Sent: jeudi, 28. novembre 2002 07:10
 To: [EMAIL PROTECTED]
 Subject: Joining mailing list
 
 
 Hello
  I would like to join inthe  mailing list.
 
 Regards
 Renuka
 
 



Re: Joining mailing list

2002-11-28 Thread Jan Agermose
Im acutally tring to unsubscribe... cannot make it work. Could some please
unsubscribe [EMAIL PROTECTED]?

Jan Agermose


- Original Message -
From: Pierre Henry [EMAIL PROTECTED]
To: Jetspeed Users List [EMAIL PROTECTED]
Sent: Thursday, November 28, 2002 1:56 PM
Subject: RE: Joining mailing list


 --- Administrative commands for the jetspeed-user list ---

 I can handle administrative requests automatically. Please
 do not send them to the list address! Instead, send
 your message to the correct command address:

 To subscribe to the list, send a message to:
[EMAIL PROTECTED]

 To remove your address from the list, send a message to:
[EMAIL PROTECTED]

 Send mail to the following for info and FAQ for this list:
[EMAIL PROTECTED]
[EMAIL PROTECTED]

 Similar addresses exist for the digest list:
[EMAIL PROTECTED]
[EMAIL PROTECTED]

 To get messages 123 through 145 (a maximum of 100 per request), mail:
[EMAIL PROTECTED]

 To get an index with subject and author for messages 123-456 , mail:
[EMAIL PROTECTED]

 They are always returned as sets of 100, max 2000 per request,
 so you'll actually get 100-499.

 To receive all messages with the same subject as message 12345,
 send an empty message to:
[EMAIL PROTECTED]

 The messages do not really need to be empty, but I will ignore
 their content. Only the ADDRESS you send to is important.

 You can start a subscription for an alternate address,
 for example [EMAIL PROTECTED], just add a hyphen and your
 address (with '=' instead of '@') after the command word:
 [EMAIL PROTECTED]

 To stop subscription for this address, mail:
 [EMAIL PROTECTED]

 In both cases, I'll send a confirmation message to that address. When
 you receive it, simply reply to it to complete your subscription.

 If despite following these instructions, you do not get the
 desired results, please contact my owner at
 [EMAIL PROTECTED] Please be patient, my owner is a
 lot slower than I am ;-)

  -Original Message-
  From: Renuka [mailto:[EMAIL PROTECTED]]
  Sent: jeudi, 28. novembre 2002 07:10
  To: [EMAIL PROTECTED]
  Subject: Joining mailing list
 
 
  Hello
   I would like to join inthe  mailing list.
 
  Regards
  Renuka
 
 



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




RE: Joining mailing list

2002-11-28 Thread Aurelien Pernoud
Did you receive and reply to the unsubscribe confirmation ticket ?

 -Message d'origine-
 De : Jan Agermose [mailto:[EMAIL PROTECTED]]
 Envoyé : jeudi 28 novembre 2002 14:03
 À : Jetspeed Users List
 Objet : Re: Joining mailing list


 Im acutally tring to unsubscribe... cannot make it work.
 Could some please
 unsubscribe [EMAIL PROTECTED]?

 Jan Agermose


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




Re: Joining mailing list

2002-11-28 Thread Jan Agermose
the email adress [EMAIL PROTECTED] is not the same as the one im actually
using [EMAIL PROTECTED] - I tried unsubscribing using the unsubscribe address
that has post=agermose.dk encoded into it. I did get a confirmation ticket,
and I did reply on it...

Jan


- Original Message -
From: Aurelien Pernoud [EMAIL PROTECTED]
To: 'Jetspeed Users List' [EMAIL PROTECTED]
Sent: Thursday, November 28, 2002 2:27 PM
Subject: RE: Joining mailing list


 Did you receive and reply to the unsubscribe confirmation ticket ?

  -Message d'origine-
  De : Jan Agermose [mailto:[EMAIL PROTECTED]]
  Envoyé : jeudi 28 novembre 2002 14:03
  À : Jetspeed Users List
  Objet : Re: Joining mailing list
 
 
  Im acutally tring to unsubscribe... cannot make it work.
  Could some please
  unsubscribe [EMAIL PROTECTED]?
 
  Jan Agermose


 --
 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: UIX portlet

2002-11-28 Thread Santiago Gala
 hi all.
 
 I am trying to integrate UIX content (UIX = User Interface XML, a user
 interface layout tool from Oracle) in a Portlet.
 
 I have no clue of how to do this. Does anybody know how to start ? Has
 anybody worked with Jetspeed and UIX ?
 

You will have to implement a set of velocity templates, which take over the task of 
building the fragments for controllers, controls, portlets, etc., in terms of this 
device, which should be specified as a media type.


~~
Santiago Gala

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




Getting crazy with MySQL... Again!

2002-11-28 Thread BARDE, CEDRIC
Hi all,

I still cannot use Jetspeed with MySQL... I have tried to connect to my
database via MySQLCC and it works properly with a user I have defined. I am
using the same user in Torque.props but I get this exception when hitting
http://localhost:8080/jetspeed :

Horrible Exception: org.apache.jetspeed.om.profile.ProfileException:
java.lang.RuntimeException: Could not get profile from DB at
org.apache.jetspeed.services.profiler.JetspeedProfilerService.fallbackProfil
e(JetspeedProfilerService.java:414) at
org.apache.jetspeed.services.profiler.JetspeedProfilerService.getProfile(Jet
speedProfilerService.java:287) at
org.apache.jetspeed.services.profiler.JetspeedProfilerService.getProfile(Jet
speedProfilerService.java:440) at
org.apache.jetspeed.services.Profiler.getProfile(Profiler.java:123) at
org.apache.jetspeed.modules.actions.JetspeedAccessController.doPerform(Jetsp
eedAccessController.java:99) at
org.apache.turbine.modules.Action.perform(Action.java:87) at
org.apache.turbine.modules.ActionLoader.exec(ActionLoader.java:122) at
org.apache.turbine.Turbine.doGet(Turbine.java:476) at
javax.servlet.http.HttpServlet.service(HttpServlet.java) at
javax.servlet.http.HttpServlet.service(HttpServlet.java) at
org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
at org.apache.tomcat.core.Handler.invoke(Handler.java:322) at
org.apache.tomcat.core.Handler.service(Handler.java:235) at
org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485) at
org.apache.tomcat.facade.RequestDispatcherImpl.doForward(RequestDispatcherIm
pl.java:272) at
org.apache.tomcat.facade.RequestDispatcherImpl.forward(RequestDispatcherImpl
.java:174) at
org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:423)
at index_1._jspService(index_1.java:51) at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119) at
javax.servlet.http.HttpServlet.service(HttpServlet.java) at
org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
at org.apache.tomcat.core.Handler.invoke(Handler.java:322) at
org.apache.tomcat.core.Handler.service(Handler.java:235) at
org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485) at
org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:91
7) at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
at
org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10I
nterceptor.java:176) at
org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
at
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.jav
a:516) at java.lang.Thread.run(Thread.java:479) 

And I still don't have a clue on what to do...

Thanx a lot in advance for your help!
Ced

__
Cédric BARDE
Disneyland Resort Paris - Information Services
Bâtiment Robin Hood - BP 100
7 Marne-La-Vallée
Tél : 01 64 74 65 49
Fax : 01 64 74 65 65
Email : [EMAIL PROTECTED]


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




RE: Getting crazy with MySQL... Again!

2002-11-28 Thread David Sean Taylor


 -Original Message-
 From: BARDE, CEDRIC [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, November 28, 2002 9:29 AM
 To: 'Jetspeed Users'
 Subject: Getting crazy with MySQL... Again!


 Hi all,

 I still cannot use Jetspeed with MySQL... I have tried to connect to my
 database via MySQLCC and it works properly with a user I have
 defined. I am
 using the same user in Torque.props but I get this exception when hitting
 http://localhost:8080/jetspeed :

 Horrible Exception: org.apache.jetspeed.om.profile.ProfileException:
 java.lang.RuntimeException: Could not get profile from DB at
 org.apache.jetspeed.services.profiler.JetspeedProfilerService.fall
 backProfil
 e(JetspeedProfilerService.java:414) at
 org.apache.jetspeed.services.profiler.JetspeedProfilerService.getP
 rofile(Jet

You failed to mention that you switched over to the DBPSML feature.
Was that your intention?

Also, maybe try to take it one step at a time.
Can you connect to MySQL with Jetspeed?
Assuming that you have the source code, try running the db unit test (ant
unittest-security)

There is a document describing how to configure DBPSML:

http://jakarta.apache.org/jetspeed/site/psml_db.html

Which version of Jetspeed are you using now?



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




Login Portlet

2002-11-28 Thread Harmaldeep Atwal
Hey Everyone,
  I would like to disable the login.  In JetspeedResources.properties,
it says that I will need a login portlet if get rid of it from the top
navigation bar.  Is there one available anywhere or do I have to write
one of my own?

Also, can I get rid of the login completely?

Thanks,
harm.


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