Fabio Lin

Greenhorn
+ Follow
since Oct 21, 2005
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Fabio Lin

immediate true will make all the lifecycle phases for this particular component to be executed at the apply request values phase.
17 years ago
JSF
JSF was Sun's answer to .Net Web development.
One of the JSF's key points is the productivity, area where Microsoft claims to be better with a WYSIWYG editor at Visual Studio.
17 years ago
JSF
I'm taking a look at JSF Toolbox and it seems GREAT!

Good tip man
17 years ago
JSF
Make your own action listener and configure JSF to use it as the default action listener.

Inside the listener check the bean name and through reflection (or cast it) call the method you want.
17 years ago
JSF
Take a look at Netbeans Visual Web Pack.

Hope that helps.

[]'s
17 years ago
JSF
You may put a div with a higher z-index in front of the page.
17 years ago
JSF
Check the generated source code to see if the css path is correct.
17 years ago
JSF
Usually I use dataTables through bindings instead of using value and rendered attributes.

Using binding you can populate your list, check if is empty and decide if it will show or not loading the list only once.
17 years ago
JSF
Hi,

I'm installing an Oracle 9.2.0.4 Database at a Linux Red Hat AS4. During the installation process it freezes at the task "Installing java runtime 1.1.8..." and the message "Link pending...".

I read some posts about the LD_ASSUME_KERNEL=2.4.1 but it didn't work.

Ideas?

[]'s
18 years ago
Hi,

I'm reciving the following error: weblogic.xml.schema.binding.BindingException

Runing servicegen task. I read at BEA's site that it was solved on WLS 8.1 SP3. I'm using SP4 and I still have this error. Where can I download a newer version of the task? I don't want to / can't install weblogic 9 or SP5.

Thanks in advance
18 years ago
DAO for sure will help you to organize your code.

For the performance problem you will need first to identify where is the bottleneck of your system, or the piece of code making it slow. Is it the SQL queries? The UI Swing code? Start printing the times of execution of some methods and find out.
Hi,

I'm getting the following exception when I try to begin a transaction

<21/10/2005 17h09min25s GMT-03:00> <Warning> <Common> <BEA-000631> <Unknown reso
urce "weblogic.jdbc.common.internal.ConnectionEnv@58eb15" being released to pool
"LocalPool". Printing out current pool contents.>
java.rmi.RemoteException: EJB Exception: ; nested exception is:
org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get
JDBC Connection; nested exception is java.sql.SQLException: Unexpected exceptio
n while enlisting XAConnection java.sql.SQLException: XA error: XAER_PROTO : Rou
tine was invoked in an inproper context start() failed on resource 'LocalPool':
XAER_PROTO : Routine was invoked in an inproper context
oracle.jdbc.xa.OracleXAException
at oracle.jdbc.xa.OracleXAResource.checkError(I)V(OracleXAResource.java:
938)
at oracle.jdbc.xa.client.OracleXAResource.start(Ljavax.transaction.xa.Xi
d;I)V(OracleXAResource.java:244)
at weblogic.jdbc.wrapper.VendorXAResource.start(Ljavax.transaction.xa.Xi
d;I)V(VendorXAResource.java:50)
at weblogic.jdbc.jta.DataSource.start(Ljavax.transaction.xa.Xid;I)V(Data
Source.java:629)
at weblogic.transaction.internal.XAServerResourceInfo.start(Lweblogic.tr
ansaction.internal.ServerTransactionImpl;Ljavax.transaction.xa.Xid;I)V(XAServerR
esourceInfo.java:1140)
at weblogic.transaction.internal.XAServerResourceInfo.xaStart(Lweblogic.
transaction.internal.ServerTransactionImpl;I)V(XAServerResourceInfo.java:1072)
at weblogic.transaction.internal.XAServerResourceInfo.enlist(Lweblogic.t
ransaction.internal.ServerTransactionImpl Z(XAServerResourceInfo.java:240)
at weblogic.transaction.internal.ServerTransactionImpl.enlistResource(Lj
avax.transaction.xa.XAResource Z(ServerTransactionImpl.java:463)
...


I'm using Orace 10g and Weblogic 8.1 sp4
I also updated Weblogic oracle driver with the one that comes with 10g.

I ran xainit.sql and made the grants.

Any ideas?
19 years ago