[JBoss-user] RE: JBoss-user digest, Vol 1 #3565 - 8 msgs

2003-01-02 Thread Thaer Hani Al-Ibaisi
About the Url, I use it to hit the servlet with the requested URL, then to
call the necessary methods from JavaMail lib.



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] Scheduler in JBoss

2002-12-30 Thread Thaer Hani Al-Ibaisi

   All,

   Please for who worked on Scheduler and know how to use it in JBoss,
please specify the needed steps for me to configure a Timer on Jboss to call
the following URL every 30 minutes from the starting of the JBoss Server
(Using JBoss 3.0.4).


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] Scheduler MBean Information

2002-12-30 Thread Thaer Hani Al-Ibaisi



Hi All,
 
About the scheduler in JBoss, I have searched the 
JBoss Forum, and found the following link http://www.jboss.org/online-manual/HTML/ch13s58.html 
talking about Scheduler, but it is talking about some pieces of code without 
mentioning where to put thise pieces of code (in which classes, what should be 
their names.)
 
about the pieces of code here is some of them 
---Date 
lNext = new Date( new Date().getTime() + Timer.ONE_MINUTE );   
Integer lOneMinuteTimer = (Integer) 
lServer.invoke(  
lTimer.getObjectName(),  
"addNotification",  new Object[] { 
 
"IDoNotKnowWhatTypeIs", "I 
call you with this timer 
once", // No user 
object 
null, // In one minute from 
now 
lNext,  },  
new String[] { 
"".getClass().getName(), 
"".getClass().getName(), 
"java.lang.Object", 
Date.class.getName()  }   
);-lServer.addNotificationListener(  
lTimer.getObjectName(),  // Notification 
Listener  new NotificationListener() 
{ public void 
handleNotification(    
Notification 
pNotification,    
Object pHandback  ) 
{    // Add 
here you call any code or application or perform whatever you want 
to    
System.out.println( "You got a Notification: " + pNotification 
); 
}  },  // 
Filter Listener  new NotificationFilter() 
{ public boolean 
isNotificationEnabled( Notification pNotification ) 
{    if( 
pNotification instanceof TimerNotification ) 
{   
TimerNotification lTimerNotification = (TimerNotification) 
pNotification;   
return lTimerNotification.getNotificationID().equals( mTimerId 
);    
}    return 
false; 
}  },  // No 
object handback necessary  null   
);---


[JBoss-user] Asking about Schedular Servlet in JBoss

2002-12-30 Thread Thaer Hani Al-Ibaisi



Hi 
all,
 
I was deploying my 
application under JRun 3.1 Web server, and I was using the 
"allaire.jrun.scheduler.CronService" servlet class that comes with JRun library, 
this servlet works as a schedular to call a URL every part of time that you 
specify, (I was using it, to control sending a Batch email functionality every 
two hours).
 
So, any one know a 
substitute in JBoss that could help me to get the same functionality as JRun 
servlet class.
 
Quick help is very 
thanked.
 
 
 
 


[JBoss-user] Problem still exists

2002-12-29 Thread Thaer Hani Al-Ibaisi



All, I have checked 
all the connection-used area  on my code, and found that I close all the 
open connection right after I used them, but still the following exception is 
fired, and that after a while from using my site deployed on the JBoss, so 
please here the exception
"No ManagedConnections Available!; - nested 
throwable: (javax.resource.ResourceException: No ManagedConnections 
Available!)"
 
and what is the 
solution, taking into consideration:
Iam using JBoss 
3.0.4
SQL 2000 
server as DB server.
 
any 
help?


[JBoss-user] Error in Managed connections

2002-12-26 Thread Thaer Hani Al-Ibaisi



Please to help me in 
the following problem: I have been able to connect to SQL server 2000 (thx for 
all who helped me in that in this list), but when I ran my application I had 
this exception :
 
"No ManagedConnections Available!; - 
nested throwable: (javax.resource.ResourceException: No ManagedConnections 
Available!)"
 
what is the 
solution, thx for quick responding.
 
 


[JBoss-user] SOS! Problem in Registering the SQL Server 2000 driver

2002-12-24 Thread Thaer Hani Al-Ibaisi



SOS!!!
 
Problem in 
Registering the SQL Server driver
Failed to register driver for: 
com.microsoft.jdbc.sqlserver.SQLServerDriver; - nested throwable: 
(java.lang.ClassNotFoundException: 
com.microsoft.jdbc.sqlserver.SQLServerDriver); - nested throwable: 
(org.jboss.resource.ResourceException: Failed to register driver for: 
com.microsoft.jdbc.sqlserver.SQLServerDriver; - nested throwable: 
(java.lang.ClassNotFoundException: 
com.microsoft.jdbc.sqlserver.SQLServerDriver)) 
 
please help 
me
 
Thanks in 
advance.
 


[JBoss-user] Connection Pool Question

2002-12-23 Thread Thaer Hani Al-Ibaisi

   Thx alot for helping me digging in JBoss from the scratch, a new
problem faced me is how to define a connection pool, taking into
consideration my connection pool will be called from my application as
"InTraclerDB", I will share with you some steps I got from the JBoss Forum,
but I could not make it to work properly, so I will be grateful for any
rapid help.




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] Connection Pool problem

2002-12-23 Thread Thaer Hani Al-Ibaisi




Thx alot for helping me digging in JBoss from the 
scratch, a new problem faced me is how to define a connection pool, taking into 
consideration my connection pool will be called from my application as 
"InTraclerDB", I will share with you some steps I got from the JBoss Forum, but 
I could not make it to work properly, so I will be grateful for any rapid 
help.
The 
steps:
1- get the 
mssql-service.xml from docs\examples directory, and change it (plz send me an 
example of correct version of this file depending on my info)
2- copy it to 
server/default/deploy
 


[JBoss-user] Recall: Connection Pool Question

2002-12-23 Thread Thaer Hani Al-Ibaisi
Thaer Hani Al-Ibaisi would like to recall the message, "Connection Pool
Question".


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] JBoss newbie

2002-12-22 Thread Thaer Hani Al-Ibaisi



Hi 
all,
I just want to take 
some initial steps from you, on how to deploy a small web application on 
JBoss(including JSP files and images), please tell me the steps as simple as 
possible.
 
 
Thx.