[Logo] Enterprise Client Community
  [Search] Search   [Recent Topics] Recent Topics   [Members]  Member Listing   [Groups] Back to home page 
[Register] Register / 
[Login] Login 
Messages posted by: unger  XML
Profile for unger -> Messages posted by unger [261] Go to Page: Previous  1, 2, 3  ...  16, 17, 18
Author Message
Hi Björn,

I removed the PostgreSQL extension:

Code:
 public class DarstellerData
 // extends org.postgresql.util.PGobject 
 {
 


Now it's more to do, typing all the arrays and types ins SQL
But it EC works again.

Joachim

Hi Björn,



Joachim
Hello Björn,

I didn't find a solution.

Here is my dataset:

Code:
 package de.common.database;
 
 import org.eclnt.jsfserver.elements.impl.FIXGRIDItem;
 
 import de.degeto.common.data.DarstellerData;
 
 public class DarstellerGridItem extends FIXGRIDItem implements java.io.Serializable {
 	public DarstellerData data;
 	
 	public DarstellerData getData () {return data;	}
 
 	public String getDarsteller () { return data.darsteller;	}
 
 	public String getRolle_figur () {return data.rolle_figur;	}
 
 };
 
 


Rhe bean:

Code:
 package de.degeto.managedbeans.ui;
 
 import java.util.HashMap;
 
 import javax.faces.event.ActionEvent;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
 import org.eclnt.jsfserver.elements.impl.FIXGRIDListBinding;
 
 import de.common.database.DBZugriff;
 import de.common.database.DarstellerGridItem;
 
 public class Beispiel {
 	Dispatcher m_dispatcher;
 	String m_contentPage = "beispiel.jsp";
 	private Log log = LogFactory.getLog ("ALL");
 
 	public Beispiel (Dispatcher dispatcher) {
 		m_dispatcher = dispatcher;
 	}
 
 	public String getContentPage () {
 		return m_contentPage;
 	}
 
 	public void switchToPage (String nextContentPage) {
 		m_contentPage = nextContentPage;
 	}
 
 	protected FIXGRIDListBinding<DarstellerGridItem> m_grid = new FIXGRIDListBinding<DarstellerGridItem> ();
 
 	public FIXGRIDListBinding<DarstellerGridItem> getGrid () {
 		return m_grid;
 	}
 
 	public void setGrid (FIXGRIDListBinding<DarstellerGridItem> value) {
 		m_grid = value;
 	}
 
 	public void onFuellen (ActionEvent event) {
 		DBZugriff db = new DBZugriff ();
 		db.fuelleDarsteller (m_grid);
 	}
 
 }
 


The dataset class isn't embedded (inner class). Is this a problem?

Regards,

Joachim
Hello Björn,

as I found Your bean server navigator (right side tree iew) looks for fields, not for getter methods .

But as java has no double inheritance I need embedded classes like "data" below.

The fields of data I would like to publicsh as getters in the DarstellerGridItem.

public class DarstellerGridItem
extends FIXGRIDItem
implements java.io.Serializable {

public DarstellerData data; // <= need to inherit form PFobjec

... getters ...
}

I didn't find a member in the bean view.

What's wrong,

Joachim
Hello Björn,

thank You for the answer.

If possible, we prefered HTTP. The requirements for SSL are much higher: The first is the need of a server certificate.

Is it possible to get client side MD5 encryption?

Regards,

Joachim
Hi Björn,

is the content of password field encrypted? Or is there a way to encrypt it before it will be send to the back end?

Regards,

Joachim
 
Profile for unger -> Messages posted by unger [261] Go to Page: Previous  1, 2, 3  ...  16, 17, 18
Go to:   
Powered by JForum 2.1.6 © JForum Team