JSF :: Binding Xhtml And Bean Not Working?

Mar 29, 2014

I am working on eclipse kepler, JSF 2.2 with PrimeFaces 4.0 / Mojarra 2.2 library.

actually there are 2 Problems:

I still get this server message no matter what I do.

(( javax.el.PropertyNotFoundException: /Order.xhtml @28,76 value="#{kk.refugee.id}": Target Unreachable, 'refugee' returned null))

and if I delete the input text puls the hidden, the message keeps pop up for 'material' selectOneMenu. -

I have no chance to examin : ((is this javascript code correct, to copy the value of one component to the other.)) these are my xhtml file and java calsses.


**kk.java**
-----------
package khldqr.beans;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
@SessionScoped
@ManagedBean
public class kk {

[code]....

View Replies


ADVERTISEMENT

JSF :: XHTML On One Server Can Talk To Managed-bean On Other Server (different Machine)?

Jul 27, 2014

I am developing a web application using JSF-2.0 on weblogic 10.3.6. I am using Facelets as VDL. I have 5 different machine. They are different according to their OS and their geographical location. On my first xhtml page server (machine) is decided. Then on next page file upload and rest of processing takes place. My restriction is that SSO configuration can be done on only one machine.

So I am restricted to using xhtml files from only my primary server where SSO configuration is done. But I have to connect to servlets or managed-bean of different machine as requests are machine specific and file needs to be uploaded to those machines for processing. So I cannot use redirectUrl as I need to be only on one machine. Is it possible that xhtml on one server can talk to managed-bean on other server(different machine)?.

View Replies View Related

Enterprise JavaBeans :: Calling Singleton Bean From Session Bean Returns NullPointerException

Feb 23, 2013

I am doing this

@Startup
@Singleton
@ConcurrencyManagement(ConcurrencyManagementType.CONTAINER)
@Lock(LockType.READ)
public class ResourceBean {

[Code] ....

And I call this singleton bean from a stateless session bean like this

@Stateless
public class ClientBean {
@EJB
ResourceBean resource;

public String create(String r)
{
String res=resource.returnString(r);
return res;
}
}

But resource.returnString(r); gives a org.apache.jasper.JasperException: java.lang.NullPointerException I started the glassfish server in debug mode and found out that "resource" was null. but @PostConstruct in singleton does print which means singleton bean exists.

Can we call singleton beans with no interface in such a way form a session bean? I actually want to acquire instance of singleton bean when a client invokes method in Client bean...

View Replies View Related

JSP / JSTL :: Page Set Bean Variables But Give NullPointerException When Bean Try To Merge In DB

Nov 21, 2013

I'm new to JSP but I've to use it to grab data coming from an external site, pass data to a Bean, write data in a DB and redirect the user to another page. Follow the JSP page.

<%@page import="EJB.getResponse"%>
<%
long paymentID = Long.parseLong(request.getParameter("paymentid"));
String responsecode = "9999";
getResponse g = new getResponse();

[Code] ....
 
This is the bean:

@ManagedBean
@RequestScoped
public class getResponse implements Serializable {
private Long paymentId;
private String result;
private String auth;

[Code] ....
 
On the console I see the prints but I receive the NullPointerException

WARNING: StandardWrapperValve[jsp]: PWC1406: Servlet.service() for servlet jsp threw exception
java.lang.NullPointerException
at EJB.getResponse.printData(getResponse.java:72)
at org.apache.jsp.notify_jsp._jspService(notify_jsp.java from :60)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:111)

[Code] ....

View Replies View Related

JSF :: Binding Components And Setting ValueExpression?

Dec 19, 2014

dynamically create tabs by pressing a button, each tab has Primefaces input texts in which i'll be adding stuff and with a Submit button i'm submitting the form.

My issue now is this; although I can create more buttons through my managed bean, I cannot set the ValueExpression to the InputTexts. When I do:

inputName.setValueExpression("value", createValueExpression("#{cdiBean.name}",String.class)); it doesn't work.

The createValueExpression is a static method in my managed bean and it returns a ValueExpression. I'm most certain I found it online, not sure where though, it's been over a month since the last time I worked with this topic.

Anyway, is my whole "methodology" correct? Should I do anything differently?

View Replies View Related

Static And Dynamic Binding In OOPS

Mar 27, 2015

I have a question regarding static binding and dynamic binding. Say for example we have below hierarchy,

class Animal
{
public void eat() {
System.out.println("Animal Eating");
}
}

[Code] .....

1) a.eat(); // Prints Animal eating ---> Static Binding 2) a.eat(); // Prints Dog eating ----> Dynamic Binding

Static Binding means,compiler will be able to decide which method to call based on class type of reference variable at compile time.That is compiler will check whether method is available or not in class.

Dynamic binding means,at runtime JVM will run the method implementaton,based on the object which reference variable is pointing.

So basically compiler will check class type of reference variable and at runtime JVM will check what type of object reference variable is pointing.

Here my my doubt is , in below both cases,that is

1) a.eat(); // Prints Animal eating ---> Static Binding
2) a1.eat(); // Prints Dog eating ----> Dynamic Binding

At compile time,compiler will check whether method is available or not in class. Since eat() method is available ,then in both cases it should be Static binding. or at run time if JVM decides which method implementation to call,then JVM will check which object the reference variable is pointing,then in above 2 cases also JVM will check in Animal object and Dog object for the method eat(). Since eat() method available then both should be dynamic binding.

I am getting doubt on what parameters/conditions we are deciding which is static binding and which is dynamic binding .

Will compiler will check the type of reference variable and also type of object at compile time and when it is ambiguous it leaves the decision to JVM?

Or is it like if method call and method implementation belong to same class then it is static binding and if method call and method implementation belong to different class in same inheritance hierarchy then dynamic binding.

View Replies View Related

Key Binding JTable Cell Entries

Jul 8, 2014

I have an editable JTable that has a lot of JComboBox's as cell entries. I would like to be able to "arrow over" to said cell, and with a pressing of either a numerical button or by typing the first letter of the String selection (possibly followed by a second), be able to select the appropriate selection from the cell's JComboBox. I have tried to add a key listener to the JComboBox itself, which works given that I click on said cell and show its menu.

How would I go about ensuring that, when focus is on the cell itself, and I start typing, the appropriate selection is chosen?? (I think this might get into key binding, but I don't know if I have to try it from the scope of JTable, or from that JTable's TableModel (which I have made my custom version of).

Here is what I have so far (everything but SandwichNumber, SandwichName, and Oregano uses JComboBox): [URL] ...., how would I do such key binding?

View Replies View Related

JavaFX 2.0 :: Binding On SelectionModelProperty In ListView

Jul 1, 2014

I can't figure out how using binding on selectionModelProperty in a ListView that is using MULTIPLE selection model. I want bind my bean in which I've a list of item A and the selection of that items into the List.

ListView<A> listView; listView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE);
 
My bean return a ReadOnlyListProperty<A>
 
So I don't know how do:

listView.selectionModelProperty().bindBidirectional(bean.getItems());

View Replies View Related

JavaFX 2.0 :: Bi Directional Binding In FXML

May 13, 2014

We are currently doing the bi directional property binding in the java code, but it would be nice to declare those bindings at the point where the UI Controls are created, ie in our FXML files.
 
I understand bi-directional binding of the form
 
value="#{controller.path.propertyName}" was removed from JavaFX 2.1
 
Will it be put  back in 2.2?

View Replies View Related

JavaFX 2.0 :: FXML Binding On Superclass

May 14, 2014

I'm using binding into fxml:

<Button fx:id="btnSalva" defaultButton="true" mnemonicParsing="false" disable="${controller.busy}"
onAction="#salva" prefHeight="57.0" prefWidth="141.0" styleClass="text-bold" text="Salva" />
 
Controller is my controller that extends another class from which it inherits busy property.

I see that fxmlloader only looks into the bottom class and not in superclasses, don't know if it's voluntarily or a bug.

View Replies View Related

JSF :: How To Check Condition In Xhtml

Mar 26, 2014

I need to display button based on the condition in xhtml page.

using JSF2 & richface 4.0
<c:forEach items="#{empList}" var="emp">

How to check condition like empList.size > 0 in xhtml?

if list is having value, need to show buttons.

View Replies View Related

JavaFX 2.0 :: Binding ListView Selected Items

Oct 19, 2014

I want to synchronize a List<String> with the selected items of a ListView. In the real project, I want to synchronize the selected items of a TreeView and the selected images of a galery (custom control).
 
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.collections.FXCollections;

[Code] ....
 
In most cases, the program works as expected but sometimes there are some issues.
 
- For example, when I launch the application and select all the items with Ctrl-A, the event { [One, Two, Three] added at 0,  } is fired so the list of strings contains incorrectly 4 elements [One, Two, Three, One].
 
- Another example, when selecting all the items (with Shift+End), two events are fired { [One] removed at 0,  } and { [One, Two, Three] added at 0,  }, that's correct. But when I remove the last element with Shift-Up, 3 events are fired  { [Two] removed at 1,  },  { [Three] removed at 2,  } and { [Two] added at 1,  } and an exception is thrown:

java.lang.IndexOutOfBoundsException: toIndex = 3
    at java.util.ArrayList.subListRangeCheck(ArrayList.java:1004)
    at java.util.ArrayList.subList(ArrayList.java:996)
    at com.sun.javafx.binding.ContentBinding$ListContentBinding.onChanged(ContentBinding.java:111)

View Replies View Related

RMI :: Find / Create A Registry And Binding Object

Jul 30, 2013

My program TestBind0 (code below) tries to find/create a registry and bind an object.

Find/create: it first tests if there is already a registry on that port; if not, then it tries to create one.

The program tries to find/create the registry on ports 40654, 50876, 30321, 33445, 1099, in this order, until it succeeds in both creating the registry and binding the object. Why does TestBind0 throw for each attempt

java.rmi.ConnectException: Connection refused to host: 192.168.1.64; nested exception is:
     java.net.ConnectException: Connection refused: connect
     at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:601)
     at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:198)
     at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:184)
     at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:322)

[Code] ...

In reg.rebind("TestBind0", obj);even when I have specified -Djava.security.policy==all.policy, with file all.policy in the current dir, containing

grant {
  permission java.security.AllPermission;
};

The program is run using command

java -cp bin -Djava.security.policy==all.policy TestBind0

The code:

import java.rmi.*;
import java.rmi.registry.*;
import java.rmi.server.*;
import java.util.*;
public class TestBind0 extends UnicastRemoteObject implements Counter {
  private static final long serialVersionUID = 1L;
  protected int count;

[Code] ....

View Replies View Related

JSF :: Not Showing Up Beans Attributes In XHTML

Jan 29, 2015

My code of start.xhtml is:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core">

[Code] .....

when I deploy the app(glassfish) I get this message only:
hi #{user.minimum} a #{user.maximum} .

Instead of a picture: wave.med.gif and message:
hi 0 a 10 .

file hierarchy is attached

View Replies View Related

JSF :: How To Use Heritage In XHTML And Expression Language

May 21, 2014

In my Icefaces 3 application I have a ManagedBean ancestor that defines common attributes to those they spread it. Including CSS styles to be apply at the menu as icons depending on whether they are selected or not. Classes that extend the CommonMBean class define styles. My question is what do I have to put in the language experssion styleClass to tell him that the getter to use is that of the parent class.

CommonMBean.java
package com.omb.view;
public class CommonMBean
private String menu1Css = "";
private String menu2Css = "";

[code]....

View Replies View Related

JSF :: Facelets And Custom Tag In XHTML File

Oct 22, 2014

I want do do something like this:

Define custom facelets tag in xhtml file:

myDatatable.xhtml

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"

[Code] ....

And I want to use my tag like this: (name of tag in definition is myDatatable) and it was defined on page as customTag

page using my myDatatable tag
<customTag:myDatatable datamodel="#{userListDataModel}">
<p:column>
<f:facet name="header">

[Code] ....

My question is what can I put into !!!???!!! line of my custom tag to process/rendered body of my customTag:myDatatable

View Replies View Related

Polymorphism / Dynamic Binding - Invoking Wrong Method

Jan 9, 2014

Why is the equals-method in the super-class invoked? Shouldn't the equals-method in the sub-class be invoked(at least in the first if-statement since b2 is a B(i know B is also an A))?Is the equals-method overridden? Or does B have its own equals-method?

class SomeClass{
public static void main(String[] args) {

B b1 = new B(123,1);
B b2 = new B(123,2);

[code]...

View Replies View Related

JSF :: Can Place Content In Xhtml To Get Desired View

Apr 3, 2014

I have 2 JSF applications - Let me say A and B.

Application A uses JSP and Application B uses XHTML.

Now, I want Application B also get the same look and feel as Application A.

For this purpose, I have to recode the complete JSP page (of Application A) into XHTML (in Application B).

My question: Is there any better way, like reusing all the content of JSP in XHTML or something like that.

Could I replace the existing XHTML content with the JSP content with some minor modifications?

View Replies View Related

JSF :: 404 Error While Loading XHTML Page While Implementing 2.0

May 6, 2013

I am new to JSF and when i try to implement a sample application im getting this wierd error of page not found(.xhtml). Here is the code i have created..

Bean class :

package com.trail.beans;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
@ManagedBean
@SessionScoped
public class UserLoginBean {

[Code] .....

These are the jars ive used :

commons-logging 1.1.1
myfaces-api 2.0.7
myfaces-impl 2.0.7

View Replies View Related

JSF :: Call Variables Instead Of Methods From A Xhtml Page?

Jun 2, 2014

If I had this code:

<h:dataTable value="#{customer.customerList}" var="c"
styleClass="order-table"
headerClass="order-table-header"
rowClasses="order-table-odd-row,order-table-even-row"
>

And in the server getCustomerList() accessed to database, how many times getCustomerList() would be called from I request the xhtml page?. I have read this would be called several times because of JSF internals and It would be better to store it in a variable and access this variable.

1. Is this true this would be called several times? why?

2. If the previous statement was true, how to avoid it, I mean not call the method from a service?

View Replies View Related

JSF :: Getting Null Values From XHTML Page To Java Code

Nov 13, 2014

My project consists of a web app where a user can select a area from a picture and f.e. if it is a office layout he can input the worker name and any peace of hardware that the area might have. In this case there are two categories: Hardware and Computer. Hardware - it has 5 dropdown lists consisting of printer, scanner and etc. Computer - like Hardware consists of many dropdown lists which add up to components such as processor, motherboard and etc. For me, considering this is my first ever web app project, is a huge step towards web development, I have used various mixes of Java, javascript and primefaces code.

My current problem: When a user selects an area he gets a dialog box where he is prompted to select his desired input, afterwards the user clicks the 'save' button and get's another dialogbox which has a resume of what he has selected so he could check out his input and save it by clicking the 'save' button in the resume box. My problem is that when the user clicks the save button the button calls a method which takes all the input and creates an Area object (Area object consists of various objects such as: Coordinates, Dimensions, Employee, ComputerList and HardwareList) and sends a query to the database, but all the values I get is null.

XHTML code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core" xmlns:p="http://primefaces.org/ui">

[Code] ....

View Replies View Related

JavaFX 2.0 :: Bidirectional Binding Text Field / Double Property - Validation Possible?

Oct 10, 2014

Is it possible to validate the input of a TextField that ist bound to a Property before both values are updated? Following is an example of my problem .....
 
In my model, there is a SimpleDoubleProperty discount. As you can see, there is some validation logic in the method setDiscount that might be used by other parts of the model.

public class Model {
  private DoubleProperty discount = new SimpleDoubleProperty();
public DoubleProperty DiscountProperty() {
  return discount;
 
[Code] ....
 
My Main class has a Textfield that is bound to the discount-property, a button to put the current value of the discount-property to console and a button to call the setDiscount-method ......

public class Main extends Application {
  @Override
  public void start(Stage primaryStage) {
  try {
  Model model = new Model();
  BorderPane root = new BorderPane();
  Scene scene = new Scene(root,100,100);

[Code] .....

By using the bidirectional Binding between the TextField and the discount-Property, the setter in the model is never called and therefore there is no validation of the input value. When calling the setter programatically with the second button, everything works as expected.
 
I experimented with neglecting the Binding and using ChangeListeners for both the TextField and the discount-Property but only produced infinte loops when both listeners triggered each other alternating.

View Replies View Related

JSF :: What Tags Of Xhtml View Will Be Build As UIComponents In Server Side

Jun 8, 2014

In order to create an xhtml view:

1. All jsf tags like datatable, form, etc.. will generate UIComponents in server side, right?

2. All non JSF tags will not generate UIComponents in server side, right?

3. If you want something in a view that will be the same across users and requests, I mean, It will not change like a label tag, it doesn't make any sense to create it with a JSF tag in order to save memory in server side, right?

View Replies View Related

EJB / EE :: Session Bean Must Not Extend Another Session Bean?

Nov 9, 2014

I have tried this example ([URL].../) with CarDao extending the BaseDao, it works like a charm.However, from the CarDao class, my NetBeans underlined the class name “CarDao” with the error message “A session bean must not extend another session bean.” But I can compile, deploy and run the application without any problem.

I have also heard that a session bean cannot extend another session bean, but why it works here?

I am using Java EE 6, NetBeans 8.0.1 and WebLogic 12c for this code testing.

View Replies View Related

Project Is Working On JFrame - But Not Working On JApplet

Apr 10, 2014

I am developing an application to share my client screen with server, it is working well on swing. But i want to develop as web application, i am trying to using applet. But i am facing the fallowing problem..,

1) The Applet screen also open and project also running well on server mechine. But unable to see the client screen on the server.

2) The problem may be to display the JDesktopPane or JInternalFrame.

My working Server Code extends withe JFrame..Java Code:

package remoteserver;
import java.awt.BorderLayout;
import java.awt.Container;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import javax.swing.JApplet;
import javax.swing.JDesktopPane;
import javax.swing.JFrame;
import javax.swing.JOptionPane;

[code]....

View Replies View Related

JSF :: XHTML Page - Access To Content Of Dynamic Page?

Jan 15, 2014

I have a xhtml file that initialization it with ui:repeat tag in realtime.all tags of this page placed under ui:fragment tag.

<edges>
<ui:repeat value="#{graphInfoBean.edges}" var="edge" varStatus="indexVar">
<edge id="#{indexVar.index}" source="#{edge.source}" target="#{edge.target}"
weight="#{edge.weight}">

[Code] ....

When i access to this page and save it as xml in realtime, the tags in xml file saved is empty while it is initialized and everything is working properly.

<edges>
</edges>

How can i access to content of this xhtml page and save it on disk?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved