RE: RSS feeds

2003-07-14 Thread Hugh Brien
Create a new XREG file called myfeeds.xreg and add the following. You can add as many as you like. Then drop it in the WEB-INF/conf directory. My RSS Feed Portlets List of most useful Administrative portlets. org.apache.jetspeed.portal.portle

RE: Difference between Struts and Jetspeed

2003-06-25 Thread Hugh Brien
Since Jetspeed is built on Turbine, it's Turbine that is similar to Struts. Jetspeed is a portal application implemented using Turbine. Check out the Turbines services and the additional Jetspeed services. The services provide the core APIs. Turbine using Velocity is the View/Controller What is

RE: Jetspeed Best Practices

2003-04-01 Thread Hugh Brien
What is a good date to check out the latest Jetspeed source tree. r, Hugh - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Problem with 1.42b installation of Jetspeed

2002-10-30 Thread Hugh Brien
Try the following URL if you want that war file. http://www.hughbrien.com/jetspeed/downloads/ This is a slow connection someone may want to post it somewhere else. r Hugh -Original Message- From: Hugh Brien [mailto:hpbrien@;comcast.net] Sent: Tuesday, October 29, 2002 10:53 PM To

RE: Reconfiguring Jetspeed

2002-10-29 Thread Hugh Brien
These setting are in the properties files under WEB-INF/classes/org/apache/jetspeed/modules/localization. -Original Message- From: D. S. Johnson [mailto:dspectra@;insightbb.com] Sent: Tuesday, October 29, 2002 9:19 PM To: [EMAIL PROTECTED] Subject: Reconfiguring Jetspeed I have been loo

RE: How to link a portlet on a JSP page

2002-10-29 Thread Hugh Brien
You might be able to build jsp tag that builds on the $JSLINK rg.apache.jetspeed.util.template.JetspeedTemplateLink class. -Original Message- From: Mark Orciuch [mailto:mark_orciuch@;ngsltd.com] Sent: Tuesday, October 29, 2002 5:57 PM To: Jetspeed Users List Subject: RE: How to link a port

RE: Url invalid

2002-10-29 Thread Hugh Brien
I have seen that issue before. Try deleting all entryies from the WEB-INF/cache directory before you start your app server -Original Message- From: Raffaele Ragni [mailto:raffaele.ragni@;cone.it] Sent: Tuesday, October 29, 2002 12:50 PM To: Jetspeed Users List Subject: Url invalid Hi, i

RE: RE: Registry-CastorRegistryService

2002-10-29 Thread Hugh Brien
Check out the test classes under the following package: org.apache.jetspeed.services.registry This may point you in the right direction. r, Hugh -Original Message- From: Alfer, Daniel [mailto:daniel.alfer@;volkswagen.de] Sent: Tuesday, October 29, 2002 8:39 AM To: '[EMAIL PROTECTED]' S

RE: portlet <-> actionclass relation

2002-10-29 Thread Hugh Brien
Start with the HelloWorld portlet and work from there. Start with a simple MyOwnPortlet with a template called myownportlet.vm. Create a new .xreg file called my-own-portlets.xreg. Copy the HelloVelocity entry in demo-portlets.xreg to the my-own-portlets.xreg. Change the name and description

RE: Question and Error

2002-10-29 Thread Hugh Brien
If you want to give $objects to template developers to use. They also have request, session or application context available. We use in our application for extended user attributes. For doing custom reports we have a request scoped pull that takes a SQL statement from a properties file and pass

RE: CMS

2002-10-29 Thread Hugh Brien
I have been using Jetspeed and other frameworks for a while. Jetspeed is partioned nicely so you use the parts you want and leave the ones you don't. The guts of Jetspeed is made up of Services so you could use them in Swing if wanted, or you could use Jetspeed Security for provisioning your web s

RE: Problem with 1.42b installation of Jetspeed

2002-10-29 Thread Hugh Brien
I have had good luck building the source from the following cvs tag: PRE-JAKARTA-UPDATE-2002-10-15 After that the developers started upgrading Torque and Fulcrum. If someone want a copy of the jar I will upload it to my website. http:/www.hughbrien.com/jetspeed/downloads/jetspeed-1.4b2-dev.war I

RE: Registry-CastorRegistryService

2002-10-24 Thread Hugh Brien
Try this: Enumeration registryEntrys = org.apache.jetspeed.services.Registry.getNames(); while (registryEntrys.hasMoreElements()) { String regEntry = (String)registryEntrys.nextElement(); System.out.pr

RE: RE: Changing the templates

2002-10-23 Thread Hugh Brien
1. First check out the following files and directories: /template/screen/Home.vm /template/layout /template/navigation Also take a look at Turbine : http://jakarta.apache.org/turbine/turbine-2/howto/velocity-site-howto.html http://jakarta.apache.org/turbine/turbine-2/howto/pullmodel-howto.html

RE: JSP portlets not working?

2002-10-22 Thread Hugh Brien
at may have impacted this feature although I suspect it's most likely Turbine related. > -Message d'origine- > De : Hugh Brien [mailto:hugh.brien@;novuscg.com] > Envoyé : mardi 22 octobre 2002 16:37 > À : Jetspeed Users List > Objet : RE: JSP portlets not working? >

RE: Next Stable Release?

2002-10-22 Thread Hugh Brien
All security it Jetspeed is optional. The entire security system is replacable by modifying the JetspeedSecurity.properties file. r, Hugh -Original Message- From: Werner Punz [mailto:w.punz@;labor-c.net] Sent: Tuesday, October 22, 2002 5:25 AM To: Jetspeed Users List Subject: AW: Next

RE: JSP portlets not working?

2002-10-22 Thread Hugh Brien
I am having the same problem. No one has responded from the mailing list concerning this issue. I am going to try to figure it out today. I checked the mailing list but no luck. r, Hugh -Original Message- From: [EMAIL PROTECTED] [mailto:harald@;ommang.com] Sent: Tuesday, October 22

RE: portlet action class questions

2002-10-22 Thread Hugh Brien
1. Create an action class that extends VelocityPortletAction. 2. Override buildNormalContext(). 3. Add the action to one of the state "modules" packages 4. You will need specify the action in the XREG file where your portlet definition 5. Check out the HelloWorld velocity portlet. It would lo

RE: Jetspeed New User

2002-10-20 Thread Hugh Brien
Hi I'm a new Jetspeed user and I want to ask some questions hope not to be replied before 1) Where/When is ECS used to render the portlets ? ECS is used in the under the covers of Jetspeed for returning content. You don't need a detailed knowledge of ECS any more unless you want to generate HTML

JSP Porlet

2002-10-18 Thread Hugh Brien
I know this question has been asked before but I was wondering the status of JSP Portlet. I have the latest src built. I am using JDK 1.4.1 and Tomcat 4.1.1X. I checked the mail archive to see if I could solve the problem, I even ran in thru the debugger in Eclipse. Can anyone shed some light o

RE: configuration files (xreg) destroyed after shutdown

2002-10-18 Thread Hugh Brien
I believe that is correct. When you shutdown it writes the xreg files out to disk, however: the following may also be true: User starts Jetspeed. User makes changes to xreg files Registry runs is filewatcher, sees the change, and loads the changes. If the server is shutdown at this point it

RE: ADD/REMOVE tab/entry TO ALL users PSML at once

2002-10-18 Thread Hugh Brien
We are working on this right now. We are going to try the following: 1. We have defined a default Group for each user and save that value in the session. We have an business rule that determines default group. 2. We plan on adding functionality that will append the Group's portlets the Portlet

RE: WebPagePortlet for https

2002-10-18 Thread Hugh Brien
The server to which you are connecting has a certificate that was signed by a Trusted Third Party. When your client code, ie Jetspeed, attempts to connect to the server and complete the SSL protocol, it fails because the JDK does not have a copy of the Trusted Third Party Certificate in its Ce

RE: Portlet based file system, calendar and discussion forum

2002-10-16 Thread Hugh Brien
I am looking at this also. I am going to add it to my test source tree, built it and see how it works. I will report back with info. r, Hugh -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 12:52 PM To: [EMAIL PROTECTED] Subject: R

RE: Questions from a novice

2002-10-16 Thread Hugh Brien
- From: Danh Hoai [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 12:45 PM To: Hugh Brien Subject: Re: Questions from a novice thanks for your help. You refer to: "Create a new portlet that extends AbstractPortlet and do whatever you want. This is where you can link to

RE: sql script error

2002-10-16 Thread Hugh Brien
In case you did not get this working, an additional field was added to the schema between 1.4b1 and present time. if you check out the source you can build it. TURBINE_USER was the only one that changed. Here it is. CREATE TABLE TURBINE_USER ( USER_ID int(11) NOT NULL auto_increment,

RE: Jetspeed - Accessing Emails/Schedules through IMAP4 or POP3

2002-10-16 Thread Hugh Brien
Check out http://www.geocities.com/SunsetStrip/Studio/4994/pop3.html These are light weight classes that may get you started. I did have a couple of issues with authentication though. r, Hugh -Original Message- From: Patrick Krug [mailto:[EMAIL PROTECTED]] Sent: Monday, October 14, 2

RE: Questions from a novice

2002-10-16 Thread Hugh Brien
-Original Message- From: Danh Hoai [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 6:38 PM To: [EMAIL PROTECTED] Subject: Questions from a novice General questions: 1. Trying to understand this URL in the databasetest example: http://localhost:8080/jetspeed/portal/user/t

RE: thanks for the memories-- see ya

2002-10-15 Thread Hugh Brien
I have been successfully using Jetspeed in production for over a year. I have only been doing Java full time for 1.5 years and I it's the best cross platform language out there. Also Jetspeed is awesome and just keeps getting better. We just finished upgrading our existing portal from Jetspeed

Re: Installation probs with iPlanet6 and jetspeed

2002-09-02 Thread Hugh Brien
Based on the exception unknown service PoolService requested, Stack: > org.apache.turbine.services.InstantiationException: ServiceBroker: > unknown service PoolService requested Your turbine.jar is not being found in the classpath for the servlet engine r, Hugh - Original Message - From

Re: JSP inside the Portlet

2002-09-02 Thread Hugh Brien
Here is another way to put a JSP in a portlet. If none of the other options work for you. import org.apache.jetspeed.portal.portlets.AbstractPortlet; import org.apache.turbine.util.*; import org.apache.jetspeed.util.servlet.*; import org.apache.ecs.ConcreteElement; import org.apache.ecs.StringEle

Re: How to hide panes according to user roles?

2002-08-30 Thread Hugh Brien
Don't use portlets for the initial screen. Use the Turbine Login screen. It's not a portlet is a regular Turbine screen. If you want to make the portal not available until an account is created just modify the layout/default.vm. r, Hugh From: "Wessels, H" <[EMAIL PROTECTED]> To: <[EMAIL PROTEC

RE: Status on Tomcat 4.x

2002-08-26 Thread Hugh Brien
you need activation.jar -Original Message- From: Matthew Baird [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 11:20 AM To: Jetspeed Developers List; [EMAIL PROTECTED] Subject: Status on Tomcat 4.x Out of the box Jetspeed is failing on Tomcat 4.x I've tried the

RE: not able to send confirmation emails using jetspeed...

2002-08-21 Thread Hugh Brien
It may have something to with your James SMTP server not being trusted by Hotmail. Have you tried to send mail directly to James with a mail client configured to do so. You may run into the same problem if try testing this with your own mail client. r, Hugh -Original Message- From: pra

RE: Server Farming with Jetspeed...

2002-08-13 Thread Hugh Brien
You could try this, although I don't know how well it will work. Since all the data is comming from the same database, try "load balancing the session" using the following database session storage plug-in. org.apache.catalina.session.JDBCStore http://jakarta.apache.org/tomcat/tomcat-4.0-doc/ca

RE: Properties file

2002-07-31 Thread Hugh Brien
mple code that shows how to access the values of my properties file? Thanks, Joe Hugh Brien wrote: >Create your own properties file and include it >in TR.properties. For example > >include = MyProps.properties > >Any properties put in there can be found using >the ResourceS

RE: Properties file

2002-07-30 Thread Hugh Brien
Create your own properties file and include it in TR.properties. For example include = MyProps.properties Any properties put in there can be found using the ResourceService -Original Message- From: Joe Sulewski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 4:53 PM To: Jet

RE: how to deploy into jetspeed

2002-07-29 Thread Hugh Brien
Here are a couple of ideas. Download the version of Jetspeed your customer is using and put it into CVS. We manually decompress the war file and import it into CVS. For examle I would import war contents as "test-portal" Check out the newly create CVS module. This becomes your testing web

Re: Can jetspeed be used for real time apps?

2002-07-27 Thread Hugh Brien
Portlets can be as simple or as complex as you want. It depends on who is notifying who and whether or not you need to safe state. For something like this I would create a Turbine/Fulcrum service that the portlet could check on a routine basis to determine the state of the EJB r, Hugh - Or

Re: Site policy issues

2002-07-26 Thread Hugh Brien
Actually you would store user specific data in either the Users's session or the User's OBJECTDATA field. Now that I think about it, however, now that security is changed this functionality may have changed. I am refering to User.setTemp("id", object) User.setPerm("id", object) These methods sh

Re: new project, examining jetspeed

2002-07-26 Thread Hugh Brien
The team I work with has built entire applications in a single portlet. For example, employee time entry, employee expense entry, reporting, document management, we have even included hooks into Jakarta Slide. We are also working on a generic Torque object manager framework, although the work on

RE: PSML error with integrated tomcat + JBoss

2002-07-22 Thread Hugh Brien
This usually means that the PSML document is not available for the user specificied. PSML documents can be stored in the file system or in the database. We have been storing them in the database for 3 months now with good effects. r, Hugh -Original Message- From: "Dannemann, Björn" [

Re: Updating Jetspeed versions

2002-07-17 Thread Hugh Brien
equired. Cheers, Scott Rowan - Original Message - From: "Hugh Brien" <[EMAIL PROTECTED]> To: "Jetspeed Users List" <[EMAIL PROTECTED]> Sent: Wednesday, July 17, 2002 1:57 PM Subject: Re: Updating Jetspeed versions > We have upgraded twice. This is what we do:

Re: Updating Jetspeed versions

2002-07-16 Thread Hugh Brien
We have upgraded twice. This is what we do: - Create a baseline version of the new Jetspeed version and load it into CVS. For example Jetspeed_1.3A2. We build the WAR file ourselves. The WAR decompressed is what we put into CVS. - Check that out. Configure it to point to your existing databas

RE: compare bea ps and Jetspeed open portal

2002-05-10 Thread Hugh Brien
Jetspeed is FREE and you get the source code. -Original Message- From: Kiss Attila [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 28, 2002 2:52 AM To: Jetspeed Users List Subject: compare bea ps and Jetspeed open portal Could tell me someone what are the differences between Bea PS and Je

RE: simple XML/XSL example

2002-05-06 Thread Hugh Brien
I am running Jetspeed 1.3A2 and got it to work with the following: Test XSL XSL Demo Portlet http://localhost:8080/novus-portal/static/test.xml Here is the XML and XSL respectively: H

Re: Jetspeed and Adding new portlets

2002-04-01 Thread Hugh Brien
The simplest way to publish portlets is to create your own xreg file and put it in the config directory. Use an existing xreg as an example. Depending on the type of portlet you are creating will dictate what your xreg file will look like. Also Jetspeed will periodically check the ./conf direct

Re: How to change language in Jetspeed?

2002-04-01 Thread Hugh Brien
Here is a bit of code that may point you in the right direction try { User jetspeedUser = JetspeedSecurity.getUser(user); this.runData.setUser(jetspeedUser); jetspeedUser.setTemp("locale", this.getRunData().getLocale()); } catch

RE: user rights management and user creation

2002-03-19 Thread Hugh Brien
eUser(user); throw e; } } -Original Message- From: Paul Spencer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 19, 2002 11:35 AM To: Jetspeed Users List Subject: Re: user rights management and user creation David or Santiago can you respond to this? Paul Spencer

RE: user rights management and user creation

2002-03-19 Thread Hugh Brien
One issue on this, correct me if I am wrong: Jetspeed assigns you to the Jetspeed group when create a user via an entry in the USER_GROUP_ROLE table. All permission checks and I believe role checks are based on this. A user must have a user role and belong to Jetspeed group in order to Customiz

RE: Page Expired problem when click "back" after login

2002-03-18 Thread Hugh Brien
We are having this problem also. -Original Message- From: Irene Huang [mailto:[EMAIL PROTECTED]] Sent: Monday, March 18, 2002 2:01 PM To: Jetspeed user Subject: Page Expired problem when click "back" after login Hello, After I login jetpeed and click "Back", I got "Warning: Page has E

RE: basic questions (if FAQs, my apologies)

2002-03-18 Thread Hugh Brien
Here is the best I can do right now: Folks, I found Jetspeed when searching for a tool to help my team with portal development. Jetspeed has blown me away, but I have some questions: -- Is there any timetable for when Jetspeed might be at "beta" stability? I want it for a production system i

RE: Jetspeed and SSO (Single Sine On)

2002-03-18 Thread Hugh Brien
One quick solution would be to login into your Portal and retrieve the User from RunData. Write the userid and a password hash to a cookie that would be limited to your domain. You will be able to then authenticate with any other system in your domain. r, Hugh -Original Message- From

RE: Locale Question

2002-03-14 Thread Hugh Brien
You need to change the settings in your Browser to another language. r, Hugh -Original Message- From: Yellow Man [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 12:52 AM To: [EMAIL PROTECTED] Subject: Locale Question I want to use a different language for Jetspeed, e.g. French.

RE: How to upgrade Jetspeed?

2002-03-06 Thread Hugh Brien
We recently upgraded from A1 to A2 and it went well. Initially we checked out the A1 source from the Jakarta CVS tree and built it. When we built it we also generated the jetspeed.war. We un-packed the jetspeed.war and put it in our CVS tree. We also created a jetspeed.jar file that containe

Jetspeed Version

2002-02-27 Thread Hugh Brien
I have seen several developers referring to Jetspeed version "1.3a3dev" Where is this version if it exists? I don't see a tag or branch in the CVS tree. If the team released a zip file called "1.3a3dev" why don't we/they create a tag in the CVS tree to match it. That way there is no ambiguit

Re: Finding native-language definitions

2002-02-05 Thread Hugh Brien
It may be a problem with the multi-threaded nature of the servlet engine and the loading of the DLL. I think that you could run into this problem if the JVM attempts to load the DLL twice. You may want to try putting a static class wrapper with static synchronized methods around your calls to th

Re: Query

2002-02-05 Thread Hugh Brien
This is localization problem in Turbine. You need to add the following your TurbineResource.properties file under the PULL SERVICE. tool.request.l10n=org.apache.turbine.services.localization.LocalizationTool All of the PULL Service tools are passed into your templates by default so you have acce

Re: LDAP ???

2002-01-20 Thread Hugh Brien
I have not used the LDAP implementation yet but I plan on it in the near future.We are confident we will be able to get it working. Let me know if you still need help with this feature. r, Hugh - Original Message - From: <[EMAIL PROTECTED]> To: "Jetspeed Users List" <[EMAIL PROTECTED

Follow UpRE: Simple Question

2001-12-06 Thread Hugh Brien
I want to have the same PSML file for several users but have one as the "ADMIN". Would I need to modify the Profiler in this case or would I be looking somewhere else. r, Hugh -Original Message- From: Rob Wynden [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 3:54 PM To: 'Je

RE: Industry use of Jetspeed

2001-12-06 Thread Hugh Brien
I work for a SAN consulting firm in Northern Virginia, USA. We are using Jetspeed and Turbine as building blocks for all of development. We are currently building a storage portal for AOL's internal use to assist them in managing their SAN knowledge base. Also check out http://www.collab.net/cu