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

2006-05-05 Thread Elam
Paul, did you ever find a solution for this?

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

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


---
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: Failure in Deploying the Simplest of Portlets

2006-04-27 Thread Elam
Ah, I found the JIRA report for the 'validation error' message, so I've now 
added an instance of my portlet to my newly created page, but nothing is 
displaying in the tab, just blank.

This *must* be something simple.  

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

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


---
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: Failure in Deploying the Simplest of Portlets

2006-04-27 Thread Elam
A little progress:

If I click on management -> portal -> root -> default and then 'add page' and 
then add an instance of my Test2 portlet to the newly added page,  I get in red 
'validation error' and search for that term turns up nothing.

-Elam

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

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


---
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] - Failure in Deploying the Simplest of Portlets

2006-04-27 Thread Elam
Hi all,

I'm simply trying to print a 'hello world'.  

After my war file is dropped into the deployment directory, in the management 
portlet, under instances it always says "Portlet not deployed".

Can someone tell me what I'm doing wrong, please?

Here's my war file structure: - test2.war

  | WEB-INF:
  | classes
  | Test2.class
  | jboss-app.xml
  | jboss-web.xml
  | portal.xml
  | test2-object.xml
  | web.xml
  | 
And the individual code for each file:

  | Test2.class:
  | 
  | mport java.io.PrintWriter;
  | import java.io.IOException;
  | 
  | import javax.portlet.GenericPortlet;
  | import javax.portlet.RenderRequest;
  | import javax.portlet.RenderResponse;
  | import javax.portlet.PortletException;
  | 
  | public class Test2 extends GenericPortlet {
  |   /**
  |* The portlet's main view prints "Hello, World"
  |*/
  | 
  | public void doView(RenderRequest request, RenderResponse response)
  | throws PortletException, IOException
  | 
  | {
  | response.setContentType("text/html");
  | PrintWriter out = response.getWriter();
  | 
  | out.println("Hello, World");
  | }
  | 
  |public void render(RenderRequest rRequest, RenderResponse rResponse) 
throws javax.portlet.PortletException, IOException
  |{
  |   rResponse.setTitle(getTitle(rRequest));
  |   doDispatch(rRequest, rResponse);
  |}
  | 
  | }
  | 


jboss-app.xml

  | 
  | 
  | Test2
  | 
  | 
jboss-web.xml

  | 
  | 
  | 
portal.xml

  | http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd";
  |  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  |  
xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd 
/opt/SUNWps/dtd/portlet.xsd"
  |  version="1.0">
  | 
  | Test2Portlet
  | com.whiteware.portlet.tests.Test2
  | 
  | text/html
  | VIEW
  | 
  | 
  | My Own JBoss Portlet
  | 
  | 
  | 
  | 
test2-object.xml

  | 
  | 
  | 
  | overwrite
  | 
  | Test2PortletInstance
  | test2.Test2Portlet
  | 
  | 
  | 
  | 
web.xml

  | 
  | http://java.sun.com/xml/ns/j2ee";
  | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  | xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd";>
  | 
  | 
  | 

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

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


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

2006-04-25 Thread Elam
Okay, I may be blind, but I don't see a way to add users without clicking the 
'create one' link in the User portlet.  Is there a way to limit adding users to 
the administrator or whichever role I decide?

In our environment I don't really want anyone being able to add themselves as a 
user if they feel like it.

Thanks.

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

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


---
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 Getting Started Documentation] - Re: startDatabaseManager failing

2004-11-18 Thread Elam
Tech,

I'm having the exact same problem.  Same setup except for a different JDK.
Have you found a solution yet?  I'm still looking.

Elam

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

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


---
This SF.Net email is sponsored by: InterSystems CACHE
FREE OODBMS DOWNLOAD - A multidimensional database that combines
robust object and relational technologies, making it a perfect match
for Java, C++,COM, XML, ODBC and JDBC. www.intersystems.com/match8
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user