[JBoss-user] [JBoss Portal] - Re: ORA-00972: identifier is too long using Oracle to instal

2006-07-10 Thread bdaw
yep it's fixed. just use sources from cvs head:

cvs co jboss-portal-2.4

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3956730#3956730

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3956730


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Doc/Info on HOW JPortal is Implemented?

2006-07-10 Thread bdaw
Ad. 2) I'm not sure if I understand your question well. You can simply use  and 
access most of portlet objects from JSP. 
You can also pass your objects to jsp within a session or using 
RenderRequest.setAttribute (set object in portlet and get in jsp/servlet).

Ad. 3) You can do such thing if you extend JBossPortlet (instead of 
GenericPortlet). You pass method name which should be invoked in action phase 
as request parameter - default param name is op but it can be changed by 
overwriting .getDefaultOperation() method

Generally some more advenced stuff can be used when you extend JBossPortlet 
instead of GenericPortlet.

Look at ForumsPortlet class in forums module in portal sources. 
You can easily pass things into jsp using custom taglib.

 For example you do:

1) in portlet you fill DelegateContext object with your data - which have 
nested structure
2) you dispatch with passing DelegateContext to JSP like:

req.setAttribute(PortalJsp.CTX_REQUEST, delegateContextObject);
PortletRequestDispatcher rd = getPortletContext()
  .getRequestDispatcher(yourJSPFile.jsp);

3) In your JSP you can use a set of tags to get data from DelegateContext 
object like:

n:if/
n:include/
n:iterate/

all of those are implemented in org.jboss.portal.core.servlet.jsp.taglib.* 
package

If you want to investigate it more just analize ForumsPortlet doView() method. 
RolePortlet and UserPortlet uses this stuff as well






View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3956758#3956758

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3956758


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Doc/Info on HOW JPortal is Implemented?

2006-07-10 Thread bdaw
but remember that JBossPortlet stuff extends the spec so you always lose 
portability of your portlet. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3956763#3956763

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3956763


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Jboss 2.4 and portlet-instances.xml

2006-06-22 Thread bdaw
In 2.4 descriptor changed. Because of WSRP implementation which forced some 
architectural changes portlet-instances.xml was introduced. 
But there is still suppor for legacy 2.2 descriptors and that's why you receive 
the warning.

So you need to follow what is written on the console:

1) in myportal-object.xml comment out this part:


  | deployment
  |  if-existsoverwrite/if-exists 
  |  instance
  |   instance-nameCentralControllerInstance/instance-name 
  |   component-refmyportal.CentralController/component-ref 
  |  /instance
  | /deployment
  | 

2) create portal-instances.xml and put it there with some minor tag name 
changes (exacly how the console message is pointing):


  | ?xml version=1.0 encoding=utf-8 standalone=yes?
  |  deployments
  |deployment
  | instance
  |  instance-idCentralControllerInstance/instance-id
  |  portlet-refCentralController/portlet-ref
  | /instance
  |/deployment
  |  /deployments 
  | 



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3952578#3952578

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3952578

All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Portal 2.2 to 2.4 migration

2006-06-20 Thread bdaw
There is inial version of portal migration tool accessible in the cvs. Please 
try it out.

Basic steps to use it are described here: 
http://wiki.jboss.org/wiki/Wiki.jsp?page=Migration_To_Portal_2_4

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3951997#3951997

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3951997


___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: validation error moving a portlet on the default site

2006-05-30 Thread bdaw
just the field name with new portlet instance name is checked to not be empty. 
This is known bug waiting for correction:
http://jira.jboss.com/jira/browse/JBPORTAL-879

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3947693#3947693

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3947693


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal Webinar - May 24th 1PM EST

2006-05-29 Thread bdaw
Hi

All webinars are recorded and made available after few days. I think you can 
watch portal one already.

http://jboss.com/services/online_education

cheers

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3947282#3947282

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3947282


---
All the advantages of Linux Managed Hosting--Without the Cost and Risk!
Fully trained technicians. The highest number of Red Hat certifications in
the hosting industry. Fanatical Support. Click to learn more
http://sel.as-us.falkag.net/sel?cmd=lnkkid=107521bid=248729dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: forums portlet watch forums sending email

2006-04-28 Thread bdaw
please look at comments in this isse: 
http://jira.jboss.com/jira/browse/JBPORTAL-334

You can also setup it in the running portal using jmx-console and 
portal:service=Module,type=Mail service

it's rather hard to test it on windows machine as you need SMTP server

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3940084#3940084

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3940084


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Configure portal2.2.1RC1 for chinese word (big5 or UTF8

2006-04-19 Thread bdaw
http://wiki.jboss.org/wiki/Wiki.jsp?page=UTF8InPortlet

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3938116#3938116

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3938116


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: forums portlet error...

2006-03-21 Thread bdaw
Forums in 2.0 was quite buggy. You should try 2.0.1 or 2.0.2RC1

http://labs.jboss.com/portal/jbossportal/download/index.html

or obtain newest sources for 2.0 branch with:

anonymous wrote : cvs co -r JBoss_Portal_Branch_2_0 jboss-portal-2.0

If you upgrade forums version from 2.0 be aware of migration issues:

http://docs.jboss.com/jbportal/v2.2/user-guide/en/html/changelog.html#d0e998

So remember to backup your data first.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3931529#3931529

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3931529


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: CVS

2006-03-10 Thread bdaw
2.4 is currently under development so this can change quite rapidly ;)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3929464#3929464

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3929464


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: CVS

2006-03-10 Thread bdaw
if there are new modules added into repo simple 'cvs update' isn't enough. So 
time to time after greater changes fresh checkout is needed.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3929470#3929470

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3929470


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: ERROR OF SUBMIT POLL IN FORUM PORTLET

2006-02-23 Thread bdaw
It has been resolved.

Try code from cvs:
cvs co -r JBoss_Portal_Branch_2_2 jboss-portal-2.2



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3925941#3925941

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3925941


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal + JBoss AS 4.0.3SP1 question regarding MySQ

2006-02-10 Thread bdaw
Did you check docs for the information you are looking for?

http://docs.jboss.com/jbportal/v2.2/user-guide/en/html/installation.html
http://www.jboss.com/products/jbossportal/docs

There is a migration tool under developement but already usable:
http://wiki.jboss.org/wiki/Wiki.jsp?page=MigrationFromPortal20ToPortal22
Any feedback on this will be valuable.

Forums Portlet DB schema should be the same in 2.0 and 2.2 so migration doesn't 
cover it. You should simply move forums tables (jbp_forums_*) into 2.2 
database. Just remember to backup your DB before playing with this.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3922809#3922809

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3922809


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: [color=green]Can we assign forum administistive role by

2006-02-10 Thread bdaw
Did you look at this wiki page?: 
http://wiki.jboss.org/wiki/Wiki.jsp?page=ForumsPortletInPortal22DevelopementStatus

Forums security is simplified in 2.2 as security api needs some extensions. You 
can create different user roles in portal and simply link them with appropriate 
portlet role in forums portlet.xml as described in wiki.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3922884#3922884

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3922884


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Question about Changing the context path

2006-02-10 Thread bdaw
anonymous wrote : 3.2. Changing the context path
  | 
  | Now you can rebuild JBoss portal and redeploy it for the context path 
changes to take effect

You need to rebuild so...

[EMAIL PROTECTED] wrote : 
  | But I couldn't find such: local.properties . and what's the $PORTAL_HOME? 

$PORTAL_HOME is directory with portal sources.

You will find local.properties-example  in $PORTAL_HOME/build/etc
so just copy/rename it to
$PORTAL_HOME/build/local.properties
then edit and rebuild


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3922921#3922921

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3922921


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Question about Changing the context path

2006-02-10 Thread bdaw
So you're almost there ;)

In docs you have:
anonymous wrote : 
  | First, build the sources and deploy them, go to jboss-portal-2.0/build  and 
type sh build.sh  deploy, you should read BUILD SUCCESSFUL  at the end of the 
operation. This operation should have copired the jboss-portal.sar to your 
$JBOSS_HOME/server/default/deploy directory.
  | Warning
  | 
  | Make sure that JBOSS_HOME is still defined in the environment or it will 
not work. 

In xp in build directory type:
build deploy and with JBOSS_HOME set properly you will have portal sar copied.

Read The Manual.



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3922996#3922996

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3922996


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Using Forums 2.0 beta

2006-02-10 Thread bdaw
What do you mean by forums 2.0?

Nukes isn't developed any more. 
There is only Forums Portlet (for JBoss Portal 2.0 or 2.2)

Look here:
http://www.jboss.com/products/jbossportal


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3923024#3923024

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3923024


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: DispatchedHttpServletRequest and related jstl fmt proble

2006-02-08 Thread bdaw
l.forni wrote : 
  | PS: I have setup an enviroment of JBP 2.2.1RC2 + eclipse to develop and 
debug portlet. May i write a tutorial? (if someone is interested)
  | 

The best place for this would be portal wiki : 
http://www.jboss.com/wiki/Wiki.jsp?page=JBossPortal
or you can update existing one:
http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingEclipse

And Yes - many people are interested in this ;)

Cheers

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3922231#3922231

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3922231


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: portal forum:still have charset problem.

2006-02-01 Thread bdaw
Thanks for pointing this out. This issue will be tracked and I will post here 
when the solution will be available in cvs.


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3920887#3920887

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3920887


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Adding a Forum or Post

2006-01-20 Thread bdaw
if you are logged in as admin there is Admin Panel link on top of portlet. 
For some additional info about forums in jbp2.2 look into wiki

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3918730#3918730

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3918730


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: This forum and the release of portal-forum does not supp

2006-01-20 Thread bdaw
look into cvs 2.2 branch. Bug in topic posting is corrected there.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3918731#3918731

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3918731


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: How to use struts or other mvc with JBoss portal 2.2?

2006-01-11 Thread bdaw
Some samples in www.portletswap.com:

http://labs.jboss.com/portal/index.html?ctrl:id=page.default.downloadsproject=portletswapcategory=.portlets.framework

In portal you can look at Management Portlet in jbp2.2 as it is JSF 
(myfaces+facelets) based.

Look at:
portal-src/core/src/main/org/jboss/potal/core/portlet/management - for classes 
and
portal-src/core/src/resources/portal-core-war/ - for descriptors and jsp





View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3916846#3916846

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3916846


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Getting Started !!

2006-01-11 Thread bdaw
Which version of portal?

Portlets at portal swap may have not been ported to portal 2.2 yet. They will 
be soon.
Watch this tasks:
http://jira.jboss.com/jira/browse/SWAP-3
http://jira.jboss.com/jira/browse/SWAP-4

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3917005#3917005

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3917005


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Forums Portlet - Problems with portlet initializat

2006-01-01 Thread bdaw
yep. people were taking some rest recently :)

Some specific features are missing in portal 2.2 API so Forums Portlet for 2.2 
will be released a little bit later.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3915097#3915097

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3915097


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Management Portlet Issue

2005-12-13 Thread bdaw
I created a jira issue for this. Thanks for reporting.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912460#3912460

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912460


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: wiki portlet attachments

2005-12-12 Thread bdaw
If you are trying JBoss Wiki portlet this will be the best place to look help.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912194#3912194

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912194


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Migration from Portal 2.0

2005-12-12 Thread bdaw
There is a simple tool for migrating database content from Portal 2.0 to Portal 
2.2

It is still under developement but already functional.

I added a Wiki Page describing how to use it so you can test.




View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3912214#3912214

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3912214


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Can't view topics in forums (nullpointer)

2005-12-06 Thread bdaw
hmm... I wonder if it's yet another mysql5 issue. Could you test if there are 
same issues with mysql4.1?

If there aren't the best advise for now could be not to use mysql5 with 
portal...

According to your stack trace it's happening on:

(SimpleDateFormat)sdf.format(poster.getRegistrationDate())

poster is a portal user so it's rather strange...



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910993#3910993

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910993


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: uploading a .ppt file using admin CMS

2005-12-06 Thread bdaw
Hi. The possible issue could be to weak sql column type for stroring blobs in 
schema created by hibernate.

Look at slide_version_content table and content column.
If you are using mysql and it's BLOB type it will store data up to 64K only.
Try altering column type with:

ALTER TABLE slide_version_content CHANGE content content longblob

(this is mysql specific command)

Could you try this and tell us if this was the issue?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910996#3910996

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910996


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Bug in Hibernate Slide storage on 2.0.1RC3?

2005-12-06 Thread bdaw
as I replied to: http://www.jboss.com/index.html?module=bbop=viewtopict=73336

The possible issue could be to weak sql column type for stroring blobs in 
schema created by hibernate.

Look at slide_version_content table and content column.
If you are using mysql and it's BLOB type it will store data up to 64K only.
Try altering column type with:

ALTER TABLE slide_version_content CHANGE content content longblob

(this is mysql specific command)

Could you try this and tell us if this was the issue?


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3910998#3910998

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3910998


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal + EJB 3.0? is it possible?

2005-11-30 Thread bdaw
JBP2.0 and EJB is used by JBoss Labs - in JBoss Forge and JBoss Wiki

Look at:
http://labs.jboss.com/portal/index.html?ctrl:id=page.default.infoproject=jbosslabs
http://labs.jboss.com/portal/index.html?ctrl:id=window.default.WikiPortletWindowctrl:type=actionpage=WhatIsJBossForge
http://labs.jboss.com/portal/index.html?ctrl:id=page.default.infoproject=jbosswiki

You can find working example in this projects.
And I think that you need portal 2.0.1RC3 (it should work on jboss as 4.0.3sp1) 
for ejb3

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3909797#3909797

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3909797


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Does jboss-portal 2.0 support LDAP?

2005-11-21 Thread bdaw
Hi

anonymous wrote : Unsupported major.minor version 49.0

This is in most cases when you run classes compiled under jdk1.5 using jdk1.4. 
Try running portal using jre1.5.

Remamber that Portal has javac.source and javac.target set to 1.4 in in 
ant. 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3908120#3908120

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3908120


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Installation : Newbie question

2005-11-16 Thread bdaw
http://docs.jboss.com/jbportal/v2.0Final/user-guide/en/html/installation.html#d0e479

errors should be on first portal run when it checks that tables don't exist and 
creats them. You can find all info in docs.

http://docs.jboss.com/jbportal/v2.0Final/user-guide/en/html/installation.html

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3907399#3907399

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3907399


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Refreshing/reloading a portlet

2005-11-15 Thread bdaw
You can learn about communicating between portlets features in 2.2 from webinar 
record:

http://www.jboss.com/services/online_education
webinar: JBoss Portal - What's new and improved



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3907256#3907256

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3907256


---
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628alloc_id=16845op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Problem with deletion operation in portal forums

2005-10-28 Thread bdaw
Your problem is related probably to this:

http://jira.jboss.com/jira/browse/JBPORTAL-335

a great number of forum bugs was resolved since 2.0 final:

http://www.jboss.com/index.html?module=bbop=viewtopict=71559

Please try 2.0.1 RC3 version.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3903973#3903973

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3903973


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: portlets upload file problem

2005-10-27 Thread bdaw
When you have multipart form data your params will not be in params map 
directly but in  multipart content along with file data. Use apache commons lib 
for this and try code below:


import org.apache.commons.fileupload.disk.DiskFileItemFactory;
  | import org.apache.commons.fileupload.portlet.PortletFileUpload;
  | import org.apache.commons.fileupload.FileItem;
  | import org.apache.commons.fileupload.FileUploadException;

  | DiskFileItemFactory factory = new DiskFileItemFactory();
  | PortletFileUpload upload = new PortletFileUpload(factory);
  | 
  | 
  |  for (Iterator i = upload.parseRequest(req).iterator(); i.hasNext();)
  |  {
  | FileItem item = (FileItem)i.next();
  | //for normal fields put them into request params map
  | if (item.isFormField())
  | {
  |req.getParameterMap().put(item.getFieldName(), new 
String[]{item.getString()});
  | }
  | else
  | {
  |if (item.getSize() != 0)
  |{
  |  /**here you can access file uploaded using:
  |   *item.getName()
  |   *item.getContentType()
  |   *item.get()
  |   *item.getName()
  |   *item.getSize()
  |   */
  | 
  |}
  | }
  |  }

I hope this will help you.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3903894#3903894

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3903894


---
This SF.Net email is sponsored by the JBoss Inc.
Get Certified Today * Register for a JBoss Training Course
Free Certification Exam for All Training Attendees Through End of 2005
Visit http://www.jboss.com/services/certification for more information
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.0.1RC1 released

2005-08-31 Thread bdaw
sorry about your loss...

Portal forums are not very stable product yet and we are working hard to change 
it. Port from nukes is still not finished and there were some important (and 
critical) updates since 2.0 

http://jboss.org/index.html?module=bbop=viewtopict=67674

The one wich caused schema change was probably change of message text sql type 
from varchar(255) to text (jbp_text in jbp_forums_posts). In prev. forums 
version you cannot post messages longer than 255 chars...

In fact that should be mentioned so sorry for your problems.

Forums in 2.0.1 had a great number of bug fixes 
(http://jira.jboss.com/jira/browse/JBPORTAL?report=com.atlassian.jira.plugin.system.project:roadmap-panel),
 so they are much more usable now.

There are still not perfect things in db schema so probably there'll be 
update related to this in month period. This might cause similar problem with 
data but I will post about this before commiting.

Newest (under developement) forums sources you can always get with:

cvs co -r JBoss_Portal_Branch_2_0 jboss-portal-2.0

View the original post : 
http://locahost:8080/index.html?module=bbop=viewtopicp=3892417#3892417

Reply to the post : 
http://locahost:8080/index.html?module=bbop=postingmode=replyp=3892417


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Problems in installing Jboss portal 2.0

2005-08-19 Thread bdaw
This looks similar...

http://www.jboss.org/index.html?module=bbop=viewtopict=67039

Try to copy portal-ds.xml instead of portal-mysql-ds.xml into deploy dir.


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3890802#3890802

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3890802


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Preview Bug

2005-08-10 Thread bdaw
http://www.jboss.com/index.html?module=bbop=viewtopict=65399

cvs co -r JBoss_Portal_Branch_2_0 jboss-portal-2.0

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3889315#3889315

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3889315


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Preview Bug

2005-08-09 Thread bdaw
http://jira.jboss.com/jira/browse/JBPORTAL-344

solved and in CVS

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3889145#3889145

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3889145


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - forums portlet updates...

2005-08-09 Thread bdaw
some important updates in forums portlet:

http://www.jboss.com/index.html?module=bbop=viewtopict=67674

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3889151#3889151

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3889151


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Preview Bug

2005-08-09 Thread bdaw
Could you provide a jira issue on this please? With a test case to reproduce 
this error.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3888976#3888976

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3888976


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Nukes User] - Re: Which JBoss versions...

2005-08-06 Thread bdaw
Hi. Look at this thread

http://www.jboss.com/index.html?module=bbop=viewtopict=66495

In jboss 4.0.2 two things are wrong for nukes. 

-You need to move files from /lib/endorsed into /lib as they are needed during 
compilation.
-I think that there is some differences in classes in /lib/jboss-jmx.jar 
between 4.0.2 and 3.2.3

Try jboss AS 3.2.3 - nukes from cvs head should deploy there for sure (just set 
JBOSS_HOME, provide proper JavaCC.zip and follow the instructions in wiki - 
carefully - there are some minor differences).

Please let me know if you'll be able to deploy on 4.0.2...

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3888764#3888764

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3888764


---
SF.Net email is Sponsored by the Better Software Conference  EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Unable to start JBoss Portal, jboss.jca:service=DataSour

2005-07-28 Thread bdaw
I had similar problem with portal 2.0 sources I got from cvs few days ago 
(while earlier it was ok with same installation steps). I haven't tried with 
mysql yet but with hsqldb I just copy (or rename to it) portal-ds.xml instead 
of portal-hsqldb-ds.xml and it works. 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3886991#3886991

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3886991


---
SF.Net email is Sponsored by the Better Software Conference  EXPO September
19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile  Plan-Driven Development * Managing Projects  Teams * Testing  QA
Security * Process Improvement  Measurement * http://www.sqe.com/bsce5sf
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user