[JBoss-user] [JBoss Portal] - Re: TreeCache and portal clustering conflict

2006-06-23 Thread ScottDawson
I just downloaded the latest 2.2.1 branch from CVS and, after building and 
testing, it does appear that the problem is fixed in 2.2.1. So I believe this 
will be in the next SP release.

Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953123#3953123

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953123

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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: TreeCache and portal clustering conflict

2006-06-23 Thread ScottDawson
Will this be fixed in 2.2.1 (2.2.1-SP2 maybe) as well as in 2.4?

Thanks,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3953103#3953103

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3953103

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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam messages example

2006-05-10 Thread ScottDawson
So the fix is easy.  Edit the build.xml in examples/messages, adding the 
ejb-jar.xml to the EJB fileset:

  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
Then it works correctly.  Thanks Gavin and Marcio.

Regards,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3942578#3942578

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3942578


---
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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Seam messages example

2006-05-10 Thread ScottDawson
I'm trying to run the Seam messages example app and so far I'm not able to get 
it to work.  The registration example runs correctly so my environment seems to 
be more-or-less correct.  I'm running Seam 1.0.0.CR2 on app server 4.0.4.CR2 
installed with the EJB3 profile.  I'm using the default Hypersonic datasource.

What I see is that the MessageManagerBean.findMessages method, which is 
annotated with @Factory("messageList"), works correctly, in other words, it 
pulls two rows from the database.  But the messageList variable in the JSP is 
never initialized.  In fact, for every occurrence of messageList in the JSP, 
the @Factory method is called.  So, the connection between the data in the 
MessageManagerBean and the JSP is not happening.

Does anyone know what the problem might be?  If I figure it out, I'll post back 
 the solution.

Thanks,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3942514#3942514

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3942514


---
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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Server Log

2006-04-19 Thread ScottDawson
Here's the Hibernate code (release 3.1.2) from 
org.hibernate.jdbc.ConnectionManager.  It looks like maybe the message is just 
informational because the aggressiveRelease method closes the JDBC Connection.


  | /**
  |  * To be called after execution of each JDBC statement.  Used to
  |  * conditionally release the JDBC connection aggressively if
  |  * the configured release mode indicates.
  |  */
  | public void afterStatement() {
  | if ( isAggressiveRelease() ) {
  | if ( batcher.hasOpenResources() ) {
  | log.debug( "skipping aggresive-release due to open 
resources on batcher" );
  | }
  | else if ( borrowedConnection != null ) {
  | log.debug( "skipping aggresive-release due to borrowed 
connection" );
  | }
  | else {
  | aggressiveRelease();
  | }
  | }
  | }
  | 

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938180#3938180

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3938180


---
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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Server Log

2006-04-19 Thread ScottDawson
The message comes from Hibernate code - the 
org.hibernate.jdbc.ConnectionManager class.  I'm running Portal 2.2.1RC3 with 
JBoss AS 4.0.4RC1 and it's become a DEBUG-level message, not INFO.

There's a post about this on the Hibernate forum but it's not very informative:
http://forums.hibernate.org/viewtopic.php?t=943262&view=previous&sid=67e6877b1bc0acc5710fe63ccd57f53b

I wonder if the message indicates a minor Hibernate configuration problem.

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3938168#3938168

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3938168


---
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=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: to use display tag how to set portlet objects in JSP pag

2006-04-14 Thread ScottDawson
Bhim,
Ok, I understand the problem now.  I'm sorry if I sent you down a wrong path 
initially.

In the Portlet Spec, section 16.3.2 lists 3 request attributes that must be 
provided by the portal environment when the PortletRequestDispatcher.include 
method is used to include a servlet or JSP.  The 3 attributes are 
javax.portlet.config (the PortletConfig object), javax.portlet.request (the 
RenderRequest) and javax.portlet.response (the RenderResponse).  So it seems 
that the 2 attributes you need are provided automatically by any JSR-168 
compliant portal provided you are using the PortletRequestDispatcher to include 
the JSP.

Just to test this with JBoss Portal, I wrote a portlet that includes a JSP.  
Here is the entire JSP:

  | <%
  |   Object req = pageContext.findAttribute("javax.portlet.request");
  |   Object resp = pageContext.findAttribute("javax.portlet.response");
  | %>
  | Request: <%= req %>
  | Response: <%= resp %>
  | 
and here's the output I get:

  | Request: [EMAIL PROTECTED]
  | Response: [EMAIL PROTECTED]
  | 
So it appears to work correctly and you don't have to do anything.  The 
defineObjects tag is not necessary.

Regards,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937383#3937383

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937383


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: to use display tag how to set portlet objects in JSP pag

2006-04-13 Thread ScottDawson
See here:http://jboss.org/index.html?module=bb&op=viewtopic&t=80265

I think the defineObjects tag is what you are looking for.

Regards,
Scott

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3937146#3937146

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3937146


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Deployment of same portlet with different config

2006-04-12 Thread ScottDawson
The JBoss Portal Reference Guide shows how to override preferences in the 
*-object.xml file (section 3.5).  I can't get it to work.  Has anyone been 
successful with this?  Here is the example XML from the reference guide:

  | 
  |  overwrite
  |  
  |HelloWorldPortletInstance
  |helloworld.HelloWorldPortlet
  |
  |  
  |   foo
  |   bar
  |   false
  | 
  |   
  |  
  | 
  | 

I don't get any errors but the specified override values do not take effect.  
I've tried dropping the database, deleting the temp directories, etc.

Thanks,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3936999#3936999

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3936999


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Deployment of same portlet with different config

2006-04-06 Thread ScottDawson
Yes, I was overlooking the obvious.  Probably the best way to deploy two (or 
more) instances of a portlet is with multiple portlet elements in portlet.xml, 
so you end up with something like this:

  | 
  |  
  |   MyPortlet
  |   com.unisys.portlets.ThePortlet
  |   
  |  
  |  
  |   YourPortlet
  |   com.unisys.portlets.ThePortlet
  |   
  |  
  | 
  | 
There are at least 2 advantages to solving the problem this way:
1) You can change almost anything configurable: the title, init-params, 
preferences; anything in portlet.xml
2) It's JSR-168 compliant and so it should be portable

Alternatively, there are a couple of JBoss Portal-specific ways you can solve 
the problem but they only allow you to override Preferences and not other 
attributes like the portlet title.  The first Portal-specific way is to 
override preferences in the *-object.xml file, documented 
here:http://docs.jboss.com/jbportal/v2.2/reference-guide/en/html/xmldescriptors.html#d0e860
The other way is to use the JBoss Portal management portlet to create multiple 
instances of a portlet and then override preferences, documented here:
http://docs.jboss.com/jbportal/v2.2/user-guide/en/html/dynamicity.html#d0e1177

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3935663#3935663

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3935663


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: logout page and login page

2006-03-31 Thread ScottDawson
There's a JIRA patch (with code attached) that provides a way to specify a 
destination URL to redirect to after logout.  I'm hopeful that it will be 
available in the 2.4 release.

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

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3934035#3934035

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3934035


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: PortletSession in JSP (view)

2006-03-30 Thread ScottDawson
You need to use the Portlet Tag Library:
<%@ taglib uri=?http://java.sun.com/portlet? prefix=?portlet? %>
There is a defineObjects tag that gives access to the renderRequest object and 
then you can call renderRequest.getPortletSession().

See the Portlet Spec, chapter 22, for details:
http://www.jcp.org/en/jsr/detail?id=168

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3933912#3933912

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3933912


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: signout no longer works

2006-03-30 Thread ScottDawson
I've updated the JIRA with a new patch based on Julien's recommendations:
http://jira.jboss.com/jira/browse/JBPORTAL-621

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3933879#3933879

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3933879


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBOSS and JSF Portlets (Sun RI)

2006-03-29 Thread ScottDawson
Here's a wiki page that gives the details of using MyFaces and JBoss, including 
information on Tomahawk and substituting the Sun RI:
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFaces

Regards,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3933369#3933369

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3933369


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Newbee: HTTP Status 500 after installation

2006-03-15 Thread ScottDawson
Are you using a MySQL connector jar with a "-g" in the filename: 
mysql-connector-java-[version]-bin-g.jar.  That's the debug version of the 
connector and requires the AspectJ jar.  You should switch to the standard 
connector (mysql-connector-java-[version]-bin.jar), and you can get rid of the 
AspectJ jar.  MySQL says not to use the debug connector "unless instructed to 
do so when reporting a problem or 
bug":http://dev.mysql.com/doc/refman/4.1/en/cj-system-requirements.html?ff=nopfpls

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930486#3930486

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3930486


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Latest source from CVS

2006-03-14 Thread ScottDawson
Danny,
  I've had build problems similar to yours when I: 1) had spaces in the 
directory path where the code was located and 2) didn't get rid of the previous 
portal Eclipse project and code when I did a checkout.  Do either of these 
apply to your situation?
  I use CVS in Eclipse to checkout portal code and I use build.bat from the 
command line to build.

Regards,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930141#3930141

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3930141


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Deployment of same portlet with different config

2006-03-08 Thread ScottDawson
I have a general question about deploying portlets and I don't see this 
scenario covered in the portlet spec.  I want to deploy multiple instances of 
the same portlet, but with different configuration parameters in portlet.xml.  
For example, I might want two RSS portlets which are the same except for 
different configuration (different feed URLs) in portlet.xml.  The ugly way to 
do it is to deploy two warfiles which differ only in portlet.xml.  But what I'd 
like to do is only deploy the war once and provide XML files for the different 
instances.  Does anyone know a clean way to do this?  Is there a 
non-proprietary, spec-compliant way?  Is this something that might be addressed 
in the 2.0 portlet spec?

Thanks,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928770#3928770

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928770


---
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=lnk&kid=110944&bid=241720&dat=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

2006-03-08 Thread ScottDawson
The portlet spec, chapter 10, describes the Portlet Context: 
http://www.jcp.org/en/jsr/detail?id=168

You may also want to look at the Portlet API, in particular, the PortletConfig 
and GenericPortlet classes:
http://docs.jboss.org/jbportal/spec/docs/

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3928764#3928764

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3928764


---
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=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Build error (2.2.1RC2)

2006-02-22 Thread ScottDawson
To fix the JAVA_HOME problem on Windows without moving the JDK, specify the 
environment variable like this:
C:\Progra~1\Java\jdk1.5.0_06 
with "Progra~1" instead of "Program Files".  Then the build should work with 
the JDK in the default location.

Build problems also occur when the source code is in a directory with spaces in 
the directory names, for example,
 under "Documents and Settings" where Eclipse  projects are located by default.

Regards,
Scott Dawson
Unisys

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925596#3925596

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925596


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: signout no longer works

2006-02-15 Thread ScottDawson
Julien,
  I think the change you suggested is an improvement.  So, there will be 
modifications in the execute method of InvokeWindowActionCommand and the code 
there for SignOutResult may become similar to the code for 
HTTPRedirectionResult.  Do you agree?

  Do you think the rest of the flow should be re-architected or are the 
required changes (to the patch) mostly in InvokeWindowActionCommand.execute?

  Would you like for me to make the changes and re-submit the patch?

Thanks,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923947#3923947

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923947


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: signout no longer works

2006-02-14 Thread ScottDawson
Here is the patch:
http://jira.jboss.com/jira/browse/JBPORTAL-621

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923615#3923615

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923615


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: signout no longer works

2006-02-13 Thread ScottDawson
Do you prefer diff files, or the .java files or something else?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923417#3923417

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923417


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: signout no longer works

2006-02-13 Thread ScottDawson
Julien,
  I signed it this morning.  Let me know what the next step is.
Thanks,
Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923328#3923328

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923328


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: signout no longer works

2006-02-10 Thread ScottDawson
We needed something like the signOut(url) suggested by Julien, so I've added a 
signOut(String destinationPage) method in JBossActionResponse.  The parameter 
is a page reference (like "default.Test"), not a URL.

I've added a destination parameter in the JSP (menu.jsp) to get things started:

  | 
  |   
  |   
  | ">
  | 

Modifications have also been made to UserPortlet (to retrieve the parameter set 
by the JSP), and in the SignOutResult and InvokeWindowActionCommand classes.  
The old way still works -- signOut with no parameter will try to stay on the 
current page as Julien explained.

If this seems reasonable, I can create a new entry (patch?) in the JIRA and 
attach the modified files.

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3923036#3923036

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3923036


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: LDAP LoginModule & eDirectory

2006-01-30 Thread ScottDawson
You may have a problem with roles rather than authentication.  We are doing 
something similar against OpenLDAP.  In jboss-portal.sar/conf/login-config.xml, 
we have this:

  | 
  |  
  |
  |  useFirstPass
  |  ldap://yourhost:389/
  |  simple
  |  uid=
  |  ,ou=people,dc=company
  |
  |   
  |  guest
  |  MD5
  |  HEX
  |  java:/portal/UserModule
  |  Authenticated
  |  useFirstPass
  |   
  |  
  | 
  | 

So, the authentication is via LDAP and the roles come from the Portal database, 
meaning that you have to define your users in both places.  This may not be 
exactly what you want, but it may be worth trying just so you can verify that 
the LDAP authentication is working.

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3920423#3920423

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3920423


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Hibernate cfg, Connector, MySQL problem

2006-01-25 Thread ScottDawson
Lasse,
  Delete portal-hsqldb-ds.xml from the deploy directory.  That's the default 
datasource that comes with the bundle.

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3919547#3919547

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3919547


---
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=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Min JBoss 4.0.3 config suitable to run JBoss Portal

2006-01-12 Thread ScottDawson
It seems that the AOP deployer (jboss-aop.deployer directory) can be removed as 
well.  Maybe one of the developers can comment on this.  Are there plans to use 
aspects in future releases of the portal?

Thanks,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3917186#3917186

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3917186


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: ClassCastException when deploying a JSF Portlet created

2006-01-09 Thread ScottDawson
There's a great description of the JSF/myfaces support in JBoss AS 4.0.3 on 
this wiki page:
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFaces

Please post again when you figure out the solution.

Regards,
Scott Dawson
Unisys




View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3916421#3916421

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3916421


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBP 2.2.0 - Documentation Question

2006-01-04 Thread ScottDawson
It can be defined in jboss-app.xml, in the WEB-INF directory, like this:

  | 
  |   myportletapp
  | 
  | 

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3915640#3915640

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3915640


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Portal Startup Console Output

2005-12-20 Thread ScottDawson
I'm running JBoss AS 4.0.3SP1, Portal 2.2 and MySQL 4.1.  To reduce the amount 
of output going to the console, I modified the log4j.xml file in the conf 
directory, setting the Threshold value of the CONSOLE appender to "WARN", like 
this:

  |
  |   
  |   
  |   
  | 
  |   
  |  
  |  
  |   
  |
  | 

Having done that, when I run the portal the second time, I get the output shown 
below.  The first time I run it I get additional JDBC/SQL errors because of 
missing tables, which get created automatically.  I've omitted the INFO 
messages that appear when the server is first coming up.

  | 22:50:38,346 ERROR [LocaleUtils] Locale name null or empty, ignoring
  | 22:50:50,844 WARN  [Configurator] No configuration found. Configuring 
ehcache from ehcache-failsafe.
  | xml found in the classpath: 
jar:file:/C:/jboss-4.0.3SP1/server/portal/tmp/deploy/tmp7956ehcache.jar!
  | /ehcache-failsafe.xml
  | 22:50:51,445 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.security.st
  | ore.SecurityPolicy]; using defaults.
  | 22:50:51,715 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.security.st
  | ore.HbmSecurityConstraint]; using defaults.
  | 22:50:51,855 WARN  [EhCacheProvider] Could not find configuration 
[org.hibernate.cache.UpdateTimesta
  | mpsCache]; using defaults.
  | 22:50:51,865 WARN  [EhCacheProvider] Could not find configuration 
[org.hibernate.cache.StandardQuery
  | Cache]; using defaults.
  | 22:50:56,081 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.role.R
  | oleImpl]; using defaults.
  | 22:50:56,212 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.P
  | referenceImpl]; using defaults.
  | 22:50:56,252 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.U
  | serImpl]; using defaults.
  | 22:50:56,322 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.P
  | referencesImpl]; using defaults.
  | 22:50:56,352 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.P
  | referencesGroupImpl]; using defaults.
  | 22:50:56,382 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.U
  | serImpl.dynamic]; using defaults.
  | 22:50:56,392 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.role.R
  | oleImpl.users]; using defaults.
  | 22:50:56,392 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.P
  | referencesImpl.content]; using defaults.
  | 22:50:56,392 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.P
  | referenceImpl.strings]; using defaults.
  | 22:50:56,462 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.P
  | referencesGroupImpl.prefMap]; using defaults.
  | 22:50:56,472 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.user.U
  | serImpl.roles]; using defaults.
  | 22:50:56,562 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | instance.InstanceImpl]; using defaults.
  | 22:50:56,592 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | instance.PreferenceImpl]; using defaults.
  | 22:50:56,652 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | instance.InstanceImpl.preferencesMap]; using defaults.
  | 22:50:56,662 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | instance.PreferenceImpl.strings]; using defaults.
  | 22:50:56,742 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | portal.PortalObjectImpl]; using defaults.
  | 22:50:56,903 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | portal.ObjectNode]; using defaults.
  | 22:50:56,943 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | portal.PortalImpl.windowStates]; using defaults.
  | 22:50:56,953 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | portal.PortalObjectImpl.declaredProperties]; using defaults.
  | 22:50:56,953 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | portal.ObjectNode.children]; using defaults.
  | 22:50:56,953 WARN  [EhCacheProvider] Could not find configuration 
[org.jboss.portal.core.impl.model.
  | portal.PortalImpl.modes]; using defaults.
  | 22:50:59,566 ERROR [LocaleUtils] Locale name null or empty, ignoring
  | 

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3913712#3913712

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3913712



[JBoss-user] [JBoss Portal] - Problem with build.bat on Windows

2005-12-05 Thread ScottDawson
To anyone who is having a problem running build.bat on Windows:
Build.bat is used to build the JBoss Portal.  On Windows, build.bat may not 
work if you have spaces in the directory names of the path containing your 
portal project.  For example, my project was located under "Documents and 
Settings".  The symptom is that build.bat exits with this strange message: "and 
was unexpected at this time."
To fix it, just move your project to a path with no spaces in the directory 
names.

Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910664#3910664

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910664


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Latest source from CVS

2005-12-02 Thread ScottDawson
If you meant how do I build in the first place... I just run ant from the build 
directory.  I'm developing on Windows XP and the build.bat doesn't work, so I 
run ant using the default target (main), and then ant deploy.


Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910417#3910417

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910417


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Latest source from CVS

2005-12-02 Thread ScottDawson
I use the ant deploy target which copies jboss-portal.sar to my app server 
deploy directory.  The app server is JBoss 4.0.3SP1 and the database is MySQL 
4.1.

Scott


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910413#3910413

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910413


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Latest source from CVS

2005-12-02 Thread ScottDawson
Thanks Roy.  I have 2.2 built and running now.  I was using the CVS and Eclipse 
instructions that I found here: 
http://www.jboss.org/index.html?module=bb&op=viewtopic&t=67347 and my mistake 
was that where the instructions say "Unfold the Branches", to get the latest 
source it is necessary to unfold the Head node instead.

I got an error while building:
taskdef A class needed by class org.apache.cactus.integration.ant.CactusTask 
cannot be found: junit/framework/Test
My workaround for that was to comment out a couple of Cactus sections in 
tools.ent.  I know that's not optimal but it allowed me to build and get the 
portal running.  The error is puzzling because junit.jar (with 
junit.framework.Test inside) is in the thirdparty\junit-junit\lib directory.  
Maybe someone can post a proper solution to that.

Scott

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910357#3910357

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910357


---
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=7637&alloc_id=16865&op=click
___
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-12-02 Thread ScottDawson
Sikhar,
  Please post the contents of your portal datasource file.

Scott

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910359#3910359

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910359


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: using jbossAppserver

2005-12-01 Thread ScottDawson
You should post this question to the NetBeans/JBoss forum here: 
http://www.jboss.com/index.html?module=bb&op=viewforum&f=234

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910014#3910014

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910014


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Latest source from CVS

2005-11-30 Thread ScottDawson
Last night I downloaded the latest portal source from CVS - jboss-portal-2.2.  
Now when I navigate to the test portlet, it shows the version as JBoss Portal 
2.0.1-RC3.  Is that OK or does it indicate that I did not get the latest 2.2 
source?

Also, the thirdparty/jakarta-slide directory was missing.  Is that a known 
problem or a problem in my environment?

Thanks,
Scott Dawson

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3909868#3909868

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3909868


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Min JBoss 4.0.3 config suitable to run JBoss Portal

2005-11-29 Thread ScottDawson
I added the information that we have so far to the wiki page created by 
al_kiev.  Here's the link: 
http://wiki.jboss.org/wiki/Wiki.jsp?page=MinJBossASForPortal

Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3909547#3909547

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3909547


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Min JBoss 4.0.3 config suitable to run JBoss Portal

2005-11-28 Thread ScottDawson
I'm interested in this topic so I'd like to get a status.  It looks like the 
Wiki page is "under construction".  Is that correct?

A few observations:
- JMS is easy to remove, just delete the server/[portal]/deploy/jms directory.
- The scheduler service removal is also simple - delete the 
scheduler-service.xml from the deploy directory.  I'm guessing the Scheduler 
Manager service can also be deleted but I haven't tried that yet.
- I think most people will want to keep the management apps
- I can't find any good documentation on removing all EJB support

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3909412#3909412

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3909412


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: mysql connection to portal

2005-10-05 Thread ScottDawson
Never mind.  As soon as I posted my reply, I see that the password element gets 
hidden by the forum, so you probably already have it.  (Look at your post and 
you'll see what I mean.  Anyway, your ds file looks just like mine.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3899390#3899390

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3899390


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: mysql connection to portal

2005-10-05 Thread ScottDawson
Put the password inside a password element:
userpassword

That may fix it.

Regards,
Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3899389#3899389

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3899389


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Can't find installation files in download

2005-10-04 Thread ScottDawson
The portal forums is a separate download.  You can find it on the JBoss Portal 
download page.

A SAR can be deployed in archived form (a file) or exploded (a directory).   
That's why there's no SAR file, so just copy the directory according to the 
instructions.

Scott Dawson
Unisys

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3899146#3899146

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3899146


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: mysql connection to portal

2005-10-04 Thread ScottDawson
Please show the contents of your portal datasource file.

Scott Dawson
Unisys

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3899145#3899145

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3899145


---
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal & Jetty

2005-09-26 Thread ScottDawson
JBoss Portal is only guaranteed to run on the JBoss App Server version 4.0.2 
and higher.  
See: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=69046

Scott Dawson
Unisys

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3897275#3897275

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3897275


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: how could I integrate helloworld portlet into the defaul

2005-09-23 Thread ScottDawson
I just tried it again and it works.  Here's the whole story:
1) I'm running JBoss Portal 2.0 on JBoss App Server 4.0.2
2) I got the zipfile from: 
http://download.jboss.com/jbossportal/samples/helloworld.war.zip
3) I unzipped the zipfile to my JBoss deploy directory so that I have a 
helloworld.war directory in the deploy directory
4) I restart the app server and go to the main portal page 
(http://localhost:8080/portal)
5) In the Menu/Page Menu on the left side of the portal there is a helloworld 
item; clicking on that displays the portlet

Scott Dawson
Unisys


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3896738#3896738

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3896738


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: how could I integrate helloworld portlet into the defaul

2005-09-22 Thread ScottDawson
Extract helloworld.war to your JBOSS_HOME/.../deploy directory
and restart the portal. You will see helloworld in the Page Menu when you go to 
http://localhost:8080/portal.

Scott Dawson
Unisys

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3896512#3896512

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3896512


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Hello World Sample Portlet

2005-09-21 Thread ScottDawson
Try this:
http://download.jboss.com/jbossportal/samples/helloworld.war.zip


Regards,
Scott Dawson
Unisys

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3896109#3896109

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3896109


---
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user