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

2005-11-03 Thread david.calvente
I've sent my mail to your address [EMAIL PROTECTED]

It´s the same on my profile..

Thanks

David

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

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


---
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: Does jboss-portal 2.0 support LDAP?

2005-11-02 Thread david.calvente
I´m at the same point and I wonder if some one has reached any further steps.
I think stacking is the way, but I need some help on this to continue.
If I finish succesfully, I promise I post a WIKI explaining my work

Thanks

David

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

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


---
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: Does jboss-portal 2.0 support LDAP?

2005-11-02 Thread david.calvente
Can i have access to it? Could you e-mail me that contribution?

So I could work itn that direction.

Thanks

David

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

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


---
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: Deploy a new portal instance on JBP2.2 alpha

2005-10-30 Thread david.calvente
Thanks.

Could you please explain me why should I point my browser to: 
http://localhost:8080/portal/local/forums instead of 
http://localhost:8080/portal/forums (doesn't work).

And please, Could you take a look at:

My helloworld portlet

  | package org.jboss.portlet.helloworld;
  | 
  | import javax.portlet.GenericPortlet; 
  | import javax.portlet.RenderRequest;
  | import javax.portlet.RenderResponse;
  | import java.io.PrintWriter;
  | import java.io.IOException;
  | 
  | public class HelloWorld extends GenericPortlet {
  | 
  |public void doView(RenderRequest request, RenderResponse response)
  |{
  |   response.setContentType(text/html);
  |   try {
  |  PrintWriter writer = response.getWriter();
  |  writer.write(Hello World !!!);   
  |  writer.close();
  |   }
  |   catch (IOException e)
  |   {
  |  e.printStackTrace();
  |   }
  |}
  | }
  | 
  | 

My helloworld-portal.xml
 

  | ?xml version=1.0 encoding=UTF-8?
  | portal
  |portal-namehelloworldPortal/portal-name
  |properties
  |   property
  |  nameorg.jboss.portal.property.layout/name
  |  valuephalanx/value
  |   /property
  |   property
  |  nameorg.jboss.portal.property.renderSet/name
  |  valuedivRenderer/value
  |   /property
  |   property
  |  nameorg.jboss.portal.property.strategy/name
  |  valuedefault/value
  |   /property
  |/properties   
  |supported-modes
  |   modeview/mode
  |   modeedit/mode
  |   modehelp/mode
  |/supported-modes
  |supported-window-states
  |   window-statenormal/window-state
  |   window-stateminimized/window-state
  |   window-statemaximized/window-state
  |/supported-window-states
  |pages
  |   default-pagehelloworldPage01/default-page
  |   page
  |  page-namehelloworldPage01/page-name
  |  window
  | window-namehelloworldWindow01/window-name
  | instance-refhelloworldPortletInstance01/instance-ref
  | defaulttrue/default
  | regioncenter/region
  | height0/height
  |  /window
  |   /page
  |/pages
  | /portal
  | 

My jboss-app.xml


  | jboss-app
  | app-namehelloworldPortal/app-name
  | /jboss-app
  | 

My jboss-portlet.xml


  | portlet-app
  |portlet
  |   portlet-namehelloworldPortlet01/portlet-name
  |   security/security
  |/portlet
  | /portlet-app
  | 

My portlet.xml


  | ?xml version=1.0 encoding=UTF-8?
  | portlet-app
  |xmlns=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
  |portlet
  |   portlet-namehelloworldPortlet01/portlet-name
  |   portlet-classorg.jboss.portlet.helloworld.HelloWorld/portlet-class
  |   supported-localeen/supported-locale
  |   !-- resource-bundleResource/resource-bundle --
  |   supports
  |  mime-typetext/html/mime-type
  |  portlet-modeVIEW/portlet-mode
  |   /supports
  |   portlet-info
  |  titleMy HelloWorld Portlet/title
  |   /portlet-info
  |/portlet
  | /portlet-app
  | 

My portlet-instances.xml

  | ?xml version=1.0 standalone=yes?
  | instances
  |instance
  |   instance-namehelloworldPortletInstance01/instance-name
  |   component-refhelloworldPortlet01/component-ref
  |/instance
  | /instances
  | 

I build a WAR file containing them in the WEB-INF dir except the .java, whose 
.class is in classes dir.
 

I've been working a lot on them, figuring out diferent combinations etc..  and 
as I said before, worked perfectly in 2.01 but in 2.2 ALPHA I can't find the 
right URL to access the portal

Please, could you spend a few minutes on this?.

Thanks a lot 

David

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

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


---
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: Deploy a new portal instance on JBP2.2 alpha

2005-10-30 Thread david.calvente
Finally I reached the portal at: 
http://localhost:8080/portal/local/helloworldPortal/helloworldPage01

It seems like the default-page node in *-portal.xml does not work

I also saw that using *-pages.xml does not work neither.

I hope this info could be useful for improving the code

Thanks

David

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

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


---
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: Deploy a new portal instance on JBP2.2 alpha

2005-10-29 Thread david.calvente
I'm at the same point: trying to deploy a custom portal in JBoss Portal 2.2 
Alpha.
My portal is a very simple HelloWorld Portal that works fine in JBoss Portal 
2.01RC1.
When I depoy the same *.war in 2.2Alpha JBoss does not complain but I can't 
reach my portal with any URL I can imagine.. (obviously I tryed the one used in 
2.0.1 RC1 and doesn't work neither)

I've tryed to use diferent instance paths but none worked!

Please, could someone share a very simple Portal that works on JBoss Portal 2.2?



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

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


---
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: Deploy a new portal instance on JBP2.2 alpha

2005-10-29 Thread david.calvente
Thanks Julien,
I built the forums portal and deployed it in my JBoss server.
To reach that portal I need to point my browser to:
http://localhost:8080/portal/local/forums
Is this the only one posible?. I tryied http://localhost:8080/portal/forums 
with no luck...

I also checked the internal files against the files in my helloworl portal and 
have a few questions:
1) The forums-pages.xml file: Is obsolete? It used the old structure for 
referencing instances and in the portal-name node its value is default
2) Do I need to build an EAR or it's enought with a WAR File
3)Is there any dependencies between War filename, jboss-app.xml app-name 
element value, and so on?

My HelloWorld Portal still fails to be reached..

And finally, Can I e-mail you my helloworld.war file (just 5 KB) to some 
address?

Thanks a lot

David

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

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


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