Thiebaut olivier

Greenhorn
+ Follow
since Jul 10, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Thiebaut olivier

Hi,

I try to implement a composite component like h:selectOnRadio. I find some links but not really the complet answer of my problem.



VALUE is a collection, but how to get the id, name, decription if it's a collection of objets(id, name, description) ?

thanks

Olivier
10 years ago
JSF
Hi,

I think it miss the tomahawk's configuration file in web.xml
The documentation describes a filter option

http://myfaces.apache.org/tomahawk/extensionsFilter.html

You must verify in your EAR or JAR file if tomahawks.jar is also include ?

Olivier
11 years ago
JSF
Hello Stevie,

The solution is to use the notion of "Security constraint" in the web.xml,
you can find resources with Google.

example : https://coderanch.com/t/606605/Security/SSL-Adding-security-constraint-web

OR http://docs.oracle.com/cd/E19798-01/821-1841/bncbk/index.html

Olivier
11 years ago
JSF
Thanks TIM,

I think this is the best solution, I had thought, but i wanted an outsider's view.

Thank you again for your patience

Olivier
11 years ago
JSF
Thanks Tim,

I'll try to be clearer.

A user can produce a 'survey', with an administration console developping with JSF.
When the survey is ok (workflow, validation) hte result will be display in an another
application which uses PHP.
The store in XML is a solution for this.
But I want to use XSLT, to display just the survey in JSF or PHP solution.
I can uses XSLT, just for this part but in all application there is a header, footer ...
And this part are in JSF or PHP.

Olivier
11 years ago
JSF
Thanks,

My fisrt name isn't displaying correctly because there is an accent on the 'e', I try to correct this mistake.

If i understand corretly your answer, i must use a XSLT processes in server side (like xalan) and use the command h:outpuText to
display the result ?

In fact, i try to create a dynamic survey, but the results must be save in database.
The xml is more flexible, to create a page.
On other reason pushing me in this direction. The creation of the survey is in Java, but the uses is in PHP.
XML is language independent.


Olivier
11 years ago
JSF
Hey,


I'm developping a JSF's application, with facelets, but for some reasons, i try to print JSF pages with XSL ( XML and XSLT templates).
Do you think it's possible ? A JSF Page with a part XSL ?

Olivier
11 years ago
JSF
Hello,

I'm tryng to implements a solution J2EE with OpenEJB.
The installation in Tomcat is easy, but I don't find the solution with a full
description to create
First, an EJB package, wich dependancies ???
second, an EAR package after wich contains the JAR(EJB) and a WAR(WEB) packages.

The EAR seems not difficult. bur the documentation on OpenEJB
is not really clear on this point.

Can someone help me ?

thanks

Olivier
Hey,

I implement EJBs 3.0 classes and packaging them in a jar file. I don't want to use a EAR project.
So I develop an web project in a war file.
But i want to use the EJB in this new project, so i imported the EJB's project like a library ( with maven )

mvn install:file ....


but when i deploy there is an error because glassfish consider that the EJB's project is already deployed.

Is there a solution to import an EJB's project with maven ?

Do it must packaging all in EAR project ?
But how use EJB in an another project ?

so many questions ...

Do you have a link with explications to packaging with many independant EJB.

Thanks
Olivier / paris ;=)
Hello,

It 's a simple example

you mustuse <h:column> for each column like this.

<h:column>
<f:facet name="header">
<h:outputText value="Thead1"/>
</facet>
<h:outputText value="row1">
</h:column>
<h:column>
<f:facet name="header">
<h:outputText value="Thead2"/>
</facet>
<h:outputText value="row2">
</h:column>

-Thead1-Thead2
-row1-row2
for a new column ,you add the same example
that's all
olivier
15 years ago
JSF
Hey,

The first entity



in the package GEODEAUTH.jar

the second entity


the error when i try to deloy package




In an other foorum someone, tell me to use this


to render "public" the jar file but i've got the same error.

olivier
Hey,

You can describe mutltiple connexion in a persistence.xml file, unit test use "RESOURCE-LOCAL" for example. But if you develop an J2EE application with a connexion pool you must use transaction-type="JTA"

RESOURCE-LOCAL -> jdbc simple connect
JTA _> pool connect


olivier
Hey,

My english is not my favorite language, french is it.

I develop an application EJB3/JPA/JSF/toplink, it's my first experience in the world of J2EE but not in developpement.

I declare two jar file for this project but an entity ( JPA ) need to use the ManeTOnOne annotation. the problem is that the other entity is in the other package jar, when i deploy the application there are mistakes in netbeans.

how to reference this entity ?
someone tell me, i must declare an ejb-jar.xml ??

thanks

olivier