[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. 

--
 

Step 1: mysql-ds.xml 
a) Take the mysql-ds.xml file located in the [JBOSS_HOME]/docs/examples/jca 
folder and place it in the deploy folder. 

I have configured this xml file like this: 


local-tx-datasource 
jndi-namejspNedirMysql/jndi-name 
connection-urljdbc:mysql://localhost:3306/jspNedir/connection-url 
driver-classcom.mysql.jdbc.Driver/driver-class 
user-nameroot/user-name 

/local-tx-datasource 



b) Remove the hsqldb-ds.xml from the deploy folder and save it somewhere else. 

Step 2: ejb-deployer.xml 
Edit this file, which is located in the deploy folder. 

a) Find INTERVAL in the file and change this column name to something else. 
This is required because INTERVAL is a reserved word for MySQL 4.0. The symptom 
for not having fixed this is am error mentioning INTERVAL bigint when deploying 
an EJB. 

b) Find other in the file and change this type to text. This is required 
because type other does not exist in MySQL 4.0. 

Step 3: standardjaws.xml 
Edit this file, which is located in the conf folder of the server. Change the 
type-mapping of the datasource from Hypersonic SQL to mySQL Note that these 
names are case sensitive. 

Step 4: JMS configuration descriptors 
a) Remove hsqldb-jdbc2-service.xml from folder deploy/jms. Save this file 
somewhere else. 

b) Copy mysql-jdbc2-service.xml from folder docs/example/jms to deploy/jms. 

c) Edit mysql-jdbc2-service.xml and change the datasource name if applicable. 
In my configuration I don't use HSQL at all so I configured the default 
datasource DefaultDS for MySQL. In this file, change mySQLDS to DefaultDS. Note 
that datasource names are case sensitive. 

Step 5: Install MySQL Java Connector 
Download MySQL Connector/J and place the file 
mysql-connector-java-3.0.15-ga-bin.jar in the lib folder of the server. 

--
 


After all of these how can I connect to mysql from ejb, what I have to do? did 
I create a connection pool with this? please, please, please help me.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861569#3861569

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861569


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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.

--

Step 1: mysql-ds.xml
a) Take the mysql-ds.xml file located in the [JBOSS_HOME]/docs/examples/jca 
folder and place it in the deploy folder.

I have configured this xml file like this: 

 
local-tx-datasource 
jndi-namejspNedirMysql/jndi-name 
connection-urljdbc:mysql://localhost:3306/jspNedir/connection-url 
driver-classcom.mysql.jdbc.Driver/driver-class 
user-nameroot/user-name 
 
/local-tx-datasource 



b) Remove the hsqldb-ds.xml from the deploy folder and save it somewhere else.

Step 2: ejb-deployer.xml
Edit this file, which is located in the deploy folder.

a) Find INTERVAL in the file and change this column name to something else. 
This is required because INTERVAL is a reserved word for MySQL 4.0. The symptom 
for not having fixed this is am error mentioning INTERVAL bigint when deploying 
an EJB.

b) Find other in the file and change this type to text. This is required 
because type other does not exist in MySQL 4.0.

Step 3: standardjaws.xml
Edit this file, which is located in the conf folder of the server. Change the 
type-mapping of the datasource from Hypersonic SQL to mySQL Note that these 
names are case sensitive.

Step 4: JMS configuration descriptors
a) Remove hsqldb-jdbc2-service.xml from folder deploy/jms. Save this file 
somewhere else.

b) Copy mysql-jdbc2-service.xml from folder docs/example/jms to deploy/jms.

c) Edit mysql-jdbc2-service.xml and change the datasource name if applicable. 
In my configuration I don't use HSQL at all so I configured the default 
datasource DefaultDS for MySQL. In this file, change mySQLDS to DefaultDS. Note 
that datasource names are case sensitive.

Step 5: Install MySQL Java Connector
Download MySQL Connector/J and place the file 
mysql-connector-java-3.0.15-ga-bin.jar in the lib folder of the server.

--


After all of these how can I connect to mysql from ejb, what I have to do? did 
I create a connection pool with this? please, please, please help me.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861568#3861568

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861568


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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. 

--
 

Step 1: mysql-ds.xml 
a) Take the mysql-ds.xml file located in the [JBOSS_HOME]/docs/examples/jca 
folder and place it in the deploy folder. 

I have configured this xml file like this: 


local-tx-datasource 
jndi-namejspNedirMysql/jndi-name 
connection-urljdbc:mysql://localhost:3306/jspNedir/connection-url 
driver-classcom.mysql.jdbc.Driver/driver-class 
user-nameroot/user-name 

/local-tx-datasource 



b) Remove the hsqldb-ds.xml from the deploy folder and save it somewhere else. 

Step 2: ejb-deployer.xml 
Edit this file, which is located in the deploy folder. 

a) Find INTERVAL in the file and change this column name to something else. 
This is required because INTERVAL is a reserved word for MySQL 4.0. The symptom 
for not having fixed this is am error mentioning INTERVAL bigint when deploying 
an EJB. 

b) Find other in the file and change this type to text. This is required 
because type other does not exist in MySQL 4.0. 

Step 3: standardjaws.xml 
Edit this file, which is located in the conf folder of the server. Change the 
type-mapping of the datasource from Hypersonic SQL to mySQL Note that these 
names are case sensitive. 

Step 4: JMS configuration descriptors 
a) Remove hsqldb-jdbc2-service.xml from folder deploy/jms. Save this file 
somewhere else. 

b) Copy mysql-jdbc2-service.xml from folder docs/example/jms to deploy/jms. 

c) Edit mysql-jdbc2-service.xml and change the datasource name if applicable. 
In my configuration I don't use HSQL at all so I configured the default 
datasource DefaultDS for MySQL. In this file, change mySQLDS to DefaultDS. Note 
that datasource names are case sensitive. 

Step 5: Install MySQL Java Connector 
Download MySQL Connector/J and place the file 
mysql-connector-java-3.0.15-ga-bin.jar in the lib folder of the server. 

--
 


After all of these how can I connect to mysql from ejb, what I have to do? did 
I create a connection pool with this? please, please, please help me.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861571#3861571

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861571


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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()); 
} 

 


I have tried that and this error have been occured 

javax.naming.NameNotFoundException: jspNedirMysql not bound 

please help me.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861576#3861576

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861576


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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()); 
} 

 


I have tried that and this error have been occured 

javax.naming.NameNotFoundException: jspNedirMysql not bound 

please help me.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861577#3861577

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861577


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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());  
}




I have tried that and this error have been occured

javax.naming.NameNotFoundException: jspNedirMysql not bound

please help me.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861575#3861575

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861575


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3861611#3861611

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861611


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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 )
---
but it gives this error:

--
type Exception report

message 

description The server encountered an internal error () that prevented it from 
fulfilling this request.

exception 

org.apache.jasper.JasperException

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)


root cause 

java.lang.reflect.UndeclaredThrowableException
$Proxy82.checkCookies(Unknown Source)
org.apache.jsp.index_jsp._jspService(index_jsp.java:83)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:75)


note The full stack trace of the root cause is available in the Apache 
Tomcat/5.0.28 logs.
---

How can I solve this problem?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861660#3861660

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861660


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3861381#3861381

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861381


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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:

 
local-tx-datasource 
 jndi-namejspNedirMysql/jndi-name 
 connection-urljdbc:mysql://localhost:3306/jspNedir/connection-url 
 driver-classcom.mysql.jdbc.Driver/driver-class 
 user-nameroot/user-name 
  
/local-tx-datasource 



for creating connection pool what I have to do after that?

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3861396#3861396

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861396


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3861424#3861424

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3861424


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3860976#3860976

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860976


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3860977#3860977

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860977


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3860823#3860823

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860823


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3860824#3860824

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860824


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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)
||/myConnector.class
||/myConnectorBean.class
||/myConnectorHome.class
|/lib(dir)
|   /mysql_jdbc.jar
/META-INF
  /MANIFEST.MF

Is there any missing file, after that how can I deploy this war file to jboss? 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3860674#3860674

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860674


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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)
||/myConnector.class
||/myConnectorBean.class
||/myConnectorHome.class
|/lib(dir)
|   /mysql_jdbc.jar
/META-INF
  /MANIFEST.MF

Is there any missing file, after that how can I deploy this war file to jboss? 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3860675#3860675

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860675


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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)
||/myConnector.class
||/myConnectorBean.class
||/myConnectorHome.class
|/lib(dir)
|   /mysql_jdbc.jar
/META-INF
  /MANIFEST.MF

Is there any missing file, after that how can I deploy this war file to jboss? 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3860676#3860676

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3860676


---
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almosthttp://www.thinkgeek.com/sfshirt
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3859235#3859235

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859235


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3859276#3859276

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859276


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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 explain very clearly, I dont know what I have to do, and I 
couldnt any document.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3859295#3859295

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859295


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3859182#3859182

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859182


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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: Table already exists : EVENT in 
statement bla bla bla. 

 
I cant understand what is the problem, can anyone help me? if you want I can 
send print screen.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3859128#3859128

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859128


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3859132#3859132

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859132


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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.iSSqlexception: Table already exists : EVENT in 
statement bla bla bla.

I cant understand what is the problem, can anyone help me? if you want I can 
send print screen.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3859113#3859113

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859113


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3857485#3857485

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3857485


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[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=bbop=viewtopicp=3857499#3857499

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3857499


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user