What Do I have to change In production stage

2011-03-14 Thread ahmet temiz
if you provide information kind regards -- Ahmet Temiz Jeoloji Müh. Afet ve Acil Durum Yönetimi Başkanlığı Planlama ve Zarar Azaltma Dairesi Başkanlığı Bilgi ve CBS grubu Eskişehir Yolu 10. km. Lodumlu / Ankara Tel : 0 312 2872680 / 1535

Re: what to do in conf. files

2011-02-26 Thread ahmet temiz
- Hash: SHA1 Ahmet, On 2/25/2011 1:37 PM, ahmet temiz wrote: Are there anythings I have to do in configuration files to change from development stages to production stage ? Unless you've done foolish things in development, production configuration should not really need any changes. Some things

what to do in conf. files

2011-02-25 Thread ahmet temiz
hello Are there anythings I have to do in configuration files to change from development stages to production stage ? Especially, what are things to deploy jsf_webapp in its real host after developing it in the localhost ? kind regards -- Ahmet Temiz Jeoloji Müh. Afet ve Acil Durum

Re: a problem about my jsf-tomcat application on opening

2011-02-24 Thread ahmet temiz
thank you Could you tell me how you got these results ? regards 2011/2/23 Caldarale, Charles R chuck.caldar...@unisys.com: From: ahmet temiz [mailto:ahmettemi...@gmail.com] Subject: a problem about my jsf-tomcat application on opening How can I enable its opening in first try. Fix your

a problem about my jsf-tomcat application on opening

2011-02-23 Thread ahmet temiz
kind regards Ahmet Temiz -- Ahmet Temiz Jeoloji Müh. Afet ve Acil Durum Yönetimi Başkanlığı Planlama ve Zarar Azaltma Dairesi Başkanlığı Bilgi ve CBS grubu Eskişehir Yolu 10. km. Lodumlu / Ankara Tel : 0 312 2872680 / 1535

web application automatically goes to localhost

2011-02-22 Thread ahmet temiz
hello My JSF web application automatically goes to localhost. what are possible reasons I will appreciate if you give any idea. kind regards -- Ahmet Temiz Jeoloji Müh. Afet ve Acil Durum Yönetimi Başkanlığı Planlama ve Zarar Azaltma Dairesi Başkanlığı Bilgi ve CBS grubu Eskişehir Yolu 10

Re: Problem in listener

2009-02-01 Thread ahmet temiz
I am using tomcat 6, sun java 6, eclipse ganymede in linux ubuntu 8. regards 2009/2/1 Caldarale, Charles R chuck.caldar...@unisys.com: From: ahmet temiz [mailto:ahmettemi...@gmail.com] Subject: Problem in listener how can I solve this ? You can start by providing useful information

Problem in listener

2009-01-31 Thread ahmet temiz
java.lang.NoClassDefFoundError: javax/faces/application/NavigationHandler at java.lang.ClassLoader.defineClass1(Native Method) ~~ how can I solve this ? regards Ahmet Temiz - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org

Re: very confused about DelegatingConnection

2008-12-24 Thread ahmet temiz
2008/12/24 Caldarale, Charles R chuck.caldar...@unisys.com From: orkun [mailto:ahmettemi...@gmail.com] Subject: very confused about DelegatingConnection Thank you Don't suppose you'd care to provide us with the version of Tomcat you're asking about? Mind reading is difficult over

problem in getting large object in pooled database

2008-12-22 Thread ahmet temiz
hello I try to develop jsf application with pooled postgresql and tomcat 6. when I try to retrieve large object, I get exception. here is the code that creates exception: PGConnection pgCon = (PGConnection) ((DelegatingConnection)conn).getInnermostDelegate(); java.lang.ClassCastException:

problem in pooled database

2008-12-10 Thread ahmet temiz
regards Ahmet Temiz

Re: problem in pooled database

2008-12-10 Thread ahmet temiz
: javax.sql.DataSource dbDataSrc = /* code for retrieving the datasource */ For less sarcasm and more help, please feed us more details like say a snippet of code where this error occurs, what was imported for that class, and relevant parts of your config. --David ahmet temiz wrote: hello I am

Re: problem in pooled database

2008-12-10 Thread ahmet temiz
to mean javax.activation.DataSource instead of javax.sql.DataSource. That's probably because of the imports at the top of your source file. --David ahmet temiz wrote: Exception has taken place here: DataSource ds = (DataSource) ctx.lookup(java:comp/env/jdbc/bzk2); this is my

Re: problem in pooled database

2008-12-10 Thread ahmet temiz
thank you 2008/12/10 David Smith [EMAIL PROTECTED] You could also be more explicit in your code if you import two classes of the same name from different packages: javax.sql.DataSource ds = (javax.sql.DataSource)ctx.lookup( java:comp/env/jdbc/bzk2 ) ; --David ahmet temiz wrote: Now