[JBoss-user] [EJB/JBoss] - cookie problem! (org.apache.jasper.JasperException)

2005-01-11 Thread repkin
connector myconnector = home.create(); Cookie[] cookies = request.getCookies(); if( myconnector.checkCookies(cookies) ) -- in my connectorBean I have define this mehod public boolean checkCookies( Cookie[] cookies ) ---

[JBoss-user] [EJB/JBoss] - Re: creating connection pool! please help me!

2005-01-11 Thread repkin
there is an exception 18:02:43,314 INFO [CachedConnectionManager] Closing a connection for you. Please close them yourself: [EMAIL PROTECTED] java.lang.Exception: STACKTRACE what is the reason for that and what I have to do? View the original post : http://www.jboss.org/index.html?module=bb&

[JBoss-user] [Beginners Corner] - Re: creating connection pool! please help me!

2005-01-11 Thread repkin
try { InitialContext ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("jspNedirMysql"); java.sql.Connection jspNedirCon = null; jspNedirCon = ds.getConnection(); }catch(SQLException ex) { setMessage(ex.toString()); }catch(NamingException ex) { setMessage(ex.toString()); } -

[JBoss-user] [EJB/JBoss] - Re: creating connection pool! please help me!

2005-01-11 Thread repkin
try { InitialContext ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("jspNedirMysql"); java.sql.Connection jspNedirCon = null; jspNedirCon = ds.getConnection(); }catch(SQLException ex) { setMessage(ex.toString()); }catch(NamingException ex) { setMessage(ex.toString());

[JBoss-user] [Installation & Configuration] - Re: creating connection pool! please help me!

2005-01-11 Thread repkin
try { InitialContext ctx = new InitialContext(); DataSource ds = (DataSource)ctx.lookup("jspNedirMysql"); java.sql.Connection jspNedirCon = null; jspNedirCon = ds.getConnection(); }catch(SQLException ex) { setMessage(ex.toString()); }catch(NamingException ex) { setMessage(ex.toString());

[JBoss-user] [Installation & Configuration] - creating connection pool! please help me!

2005-01-11 Thread repkin
I want to connect to mysql db from the ejb. I have learned that I have to create a connection pool. I have looked but I cant find how it is being. first of all I want to explaing what I have done. --

[JBoss-user] [Beginners Corner] - creating connection pool! please help me!

2005-01-11 Thread repkin
I want to connect to mysql db from the ejb. I have learned that I have to create a connection pool. I have looked but I cant find how it is being. first of all I want to explaing what I have done. --

[JBoss-user] [EJB/JBoss] - creating connection pool! please help me!

2005-01-11 Thread repkin
I want to connect to mysql db from the ejb. I have learned that I have to create a connection pool. I have looked but I cant find how it is being. first of all I want to explaing what I have done. --

[JBoss-user] [EJB/JBoss] - Re: what I have to do after that?

2005-01-10 Thread repkin
how will I use that in ejb? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861424#3861424 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3861424 --- The SF.Net email

[JBoss-user] [EJB/JBoss] - what I have to do after that?

2005-01-10 Thread repkin
1- I have copied "mysql-connector-java-3.0.16-ga-bin.jar" file under the C:\jboss-4.0.0\server\default\lib 2- I have created "mysql-ds.xml" file under the "C:\jboss-4.0.0\server\default\deploy" 3- this xml file includes these codes: jspNedirMysql jdbc:mysql://localhost:3306/jspNedir c

[JBoss-user] [EJB/JBoss] - how can I add mysql jdbc driver to ejb?

2005-01-10 Thread repkin
it is giving this error: "java.lang.ClassNotFoundException: No ClassLoaders found for: com.mysql.jdbc.Driver" How can I add myqsl jdbc driver to my ejb project? I am using myeclipse. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861381#3861381 Reply to the

[JBoss-user] [Installation & Configuration] - how can I publish a site with jboss, is it possible?

2005-01-06 Thread repkin
how can I publish a site with jboss, is it possible, is there any doc, or a link with about it? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860977#3860977 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3860977

[JBoss-user] [Beginners Corner] - how can I publish a site with jboss, is it possible?

2005-01-06 Thread repkin
how can I publish a site with jboss, is it possible, is there any doc, or a link with about it? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860976#3860976 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3860976

[JBoss-user] [EJB/JBoss] - is there any sample ear file?

2005-01-05 Thread repkin
is there any sample ear file which contains web application and ejb application together? and it have to work under the jboss, thanks for your help. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860824#3860824 Reply to the post : http://www.jboss.org/index.

[JBoss-user] [Beginners Corner] - is there any sample ear file?

2005-01-05 Thread repkin
is there any sample ear file which contains web application and ejb application together? and it have to work under the jboss, thanks for your help. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3860823#3860823 Reply to the post : http://www.jboss.org/index.

[JBoss-user] [EJB/JBoss] - deployment problem

2005-01-04 Thread repkin
hi I cant deploy simple ejb application, I want to explain what I have done and please tell me what I am missing I have this files myWebApp.jar /index.jsp /WEB-INF(dir) |/web.xml |/classes(dir) || /myejb(dir) |

[JBoss-user] [Beginners Corner] - deployment problem

2005-01-04 Thread repkin
hi I cant deploy simple ejb application, I want to explain what I have done and please tell me what I am missing I have this files myWebApp.jar /index.jsp /WEB-INF(dir) |/web.xml |/classes(dir) || /myejb(dir) |

[JBoss-user] [Installation & Configuration] - deployment problem

2005-01-04 Thread repkin
hi I cant deploy simple ejb application, I want to explain what I have done and please tell me what I am missing I have this files myWebApp.jar /index.jsp /WEB-INF(dir) |/web.xml |/classes(dir) || /myejb(dir) |

[JBoss-user] [EJB/JBoss] - Re: is there any ejb example which explaining step by step

2004-12-20 Thread repkin
I have these file (in myEjb folder) myConnector.class myConnectorBean.class myConnectorHome.class (in META-INF folder) ejb-jar.xml I have put this files into the myConnector.jar file and I want to use this classes index.jsp. What I have to do after know? where I have to put this files? please

[JBoss-user] [EJB/JBoss] - is there any ejb example which explaining step by step

2004-12-20 Thread repkin
is there any document in this site which explaining ejb example step by step for windows xp. or have you got any example can you send me [EMAIL PROTECTED] thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859276#3859276 Reply to the post : http://www.jb

[JBoss-user] [Installation & Configuration] - how can I run jboss as a service?

2004-12-20 Thread repkin
I am using win xp, how can I run jobss as a service? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859235#3859235 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3859235

[JBoss-user] [EJB/JBoss] - which one is the most suitable application server for ejb?

2004-12-19 Thread repkin
which one is the most suitable application server for ejb? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859182#3859182 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3859182 --

[JBoss-user] [Installation & Configuration] - Please help me find where error is coming from

2004-12-18 Thread repkin
when I click setupwin32.exe a little time later this problem is coming. what is the problem, please help me. [img]http://www.repkin.com/problem.gif[/img] View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3859132#3859132 Reply to the post : http://www.jboss.org/i

[JBoss-user] [Beginners Corner] - (setup problem) WARNING: cannot instantiate string resolver

2004-12-18 Thread repkin
I have winxp, j2sdk1.4.2_05 and I have downloaded setupwin32.exe (4.0). when I try to setup after this warning is coming WARNING: cannot instantiate string resolver method com.instalshield.database.iSSqlexception:

[JBoss-user] [Installation & Configuration] - (problem) WARNING: cannot instantiate string resolver method

2004-12-17 Thread repkin
I have winxp, j2sdk1.4.2_05 and I have downloaded setupwin32.exe. when I try to setup after little time late this warning coming WARNING: cannot instantiate string resolver method com.instalshield.database.iSSqlexcep

[JBoss-user] [Installation & Configuration] - Re: which file I have to download?

2004-12-06 Thread repkin
http://mesh.dl.sourceforge.net/sourceforge/jboss/jboss-4.0.0.zip is this true link? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857499#3857499 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857499

[JBoss-user] [Installation & Configuration] - which file I have to download?

2004-12-06 Thread repkin
I want to download jboss as but I cant find the true link, I am using windows xp and I have downloaded setupwin32.exe but it have been given an error, can you help me? thank you very much. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857485#3857485 Reply t