[jboss-user] [Tomcat, HTTPD, Servlets JSP] - JBoss and servlet-api.jar version

2007-05-31 Thread baronnet
I'm searching a JBoss version with version 48.0 of servlet-api.jar.

Currently, i've downloaded the JBoss 4.2.0.GA with version 49.0 of 
servlet-api.jar.

Anyone can say me what is the right version for my problem ?

[javac] bad class file: 
D:\jboss-4.2.0.GA\server\default\lib\servlet-api.jar(javax/servlet/http/HttpServletRequest.class)
[javac] class file has wrong version 49.0, should be 48.0
[javac] Please remove or make sure it appears in the correct subdirectory of 
the classpath.
[javac] import javax.servlet.http.HttpServletRequest;

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4050026
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: ExtremeComponents

2007-04-19 Thread baronnet
URL looks like: 

http://localhost:18080/portal/auth/portal/dashboard/admin/default/11?action=6mode=view

The action param is added by the portlet:renderURL tag. So it's difficult 
to guess it.
It's a POST form. Hidden input fields are used to store data. There is no 
action hidden fields. So, if I transform the method from POST to GET (with 
javascript), this parameter is lost. If not specified in the request, nothing 
append.

I need to add it manually, there are 2 solutions:
- I guess how action is computed
- I use javascript or Java in the render phase to extract it and add a hidden 
input field :)

Did you understand my explanations?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038735
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2007-04-18 Thread baronnet
Hi,
I'm facing the same issue. The URL generated by displaytag is 

http://localhost:18080/applicationTestPortlet/portal/auth/portal/dashboard/admin/default/11?action=2action=formulaireVue2Controllerd-49653-o=2d-49653-p=1d-49653-s=1

The right one is : 
http://localhost:18080/portal/auth/portal/dashboard/admin/default/11?action=2action=formulaireVue2Controllerd-49653-o=2d-49653-p=1d-49653-s=1

The requestURI is good, but displaytag adds applicationTestPortlet at the 
begining of the path. What can I do ? 

portlet:renderURL var=urlCourante
  | portlet:param name=action value=formulaireVue2Controller/
  | /portlet:renderURL
  | 
  | 
  | urlCourante = %=urlCourante%br/
  | 
  | display:table name=${liste.listeDeFormulaires} 
requestURI=%=urlCourante% 
  |   display:column property=id title=ID  
sortable=true/
  |   display:column property=uneChaine  title=Chaine  
sortable=true/
  |   display:column property=unEntier   title=Entier  /
  |   display:column property=unDouble   title=Double  /
  |   display:column property=unBooleen  title=Booleen /
  | /display:table

Best Regards,
FJB

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038320
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2007-04-18 Thread baronnet
I'm using JBPortal 2.6.0-BETA 1.

I'm a bit puzzle as I'm not able to make displaytag running on JetSpeed 2 too.

And it's the same for eXtremeComponents.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038333
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2007-04-18 Thread baronnet
Hi again,

I found a workaround : 

  | portlet:renderURL var=urlCourante
  | portlet:param name=action value=formulaireVue2Controller/
  | /portlet:renderURL
  | 

then,

requestURI=%=http://+request.getServerName()+:+request.getServerPort()+urlCourante%

But I'm not sure it's very generic.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038354
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - ExtremeComponents

2007-04-18 Thread baronnet
Hi,

I'm willing to use ExtremeComponents in portlets running in a JBossPortal 
2.6.0-beta1 environment. 

The table is displayed correctly, but I cannot sort data. When I click on the 
row title, it reloads the portlet but nothing change. What can it be ?

Any help would be appreciated,
François

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

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

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: ExtremeComponents

2007-04-18 Thread baronnet
Sure, but extremeComponents is working flowlessly with uPortal and Liferay, so 
I was wondering why not in JBoss. In fact I'm developping a portlet oriented 
framework and I want it to run on the largest number of portals. 

Looks like some components will be available on restricted portals.

Thanks for answering me, Thomas.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038423
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: ExtremeComponents

2007-04-18 Thread baronnet
I think I found why it doesn't work out of the box.

The tag produces a ... with method = POST. Some parameters are set by 
javascript action. But it's too late, the url is already generated (using 
portlet:renderURL). So the GET method is the solution.

With some javascript I can change the method and add the parameters to the url. 
But one parameter, called action, is added by JBoss and I can figure what it 
is. And how to add it manually...

Tomorrow I'll give you some more explanations, but if you could tell me what is 
this action parameter (/portal/auth//11?action=2 for example), it 
would be very helpfull.

Regards,
François

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

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

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: ExtremeComponents

2007-04-18 Thread baronnet
...The tag produces a HTML form...

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4038639
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user