Search found 25 matches
- Mon Dec 02, 2013 4:48 pm
- Forum: Java Web Project Support (Stack)
- Topic: Spring SqlServer JDBC Help
- Replies: 0
- Views: 3268
Spring SqlServer JDBC Help
Long story short here - our portfolio wrote our initial firewall activation app in Java/Oracle a few years back. Then our portfolio switched from Java/Spring to C#/.Net and we are now using sqlserver. I need to be able to have our firewall activations app to write directly to sqlserver DB using Micr...
- Fri Apr 13, 2012 10:23 am
- Forum: Java Web Project Support (Stack)
- Topic: ClassNotFoundException: org.lds.stack.spring.context.BootstrapContextLoade r
- Replies: 1
- Views: 2250
- Fri Apr 13, 2012 8:42 am
- Forum: Java Web Project Support (Stack)
- Topic: ClassNotFoundException: org.lds.stack.spring.context.BootstrapContextLoade r
- Replies: 1
- Views: 2250
ClassNotFoundException: org.lds.stack.spring.context.BootstrapContextLoade r
Question for you guys: My tomcat server was up and running yesterday at work. I am working from home and am trying to start up my tomcat server: Apr 13, 2012 8:35:13 AM org.apache.catalina.core.AprLifecycleListener init INFO: The APR based Apache Tomcat Native library which allows optimal performanc...
- Wed May 18, 2011 2:34 pm
- Forum: Java Web Project Support (Stack)
- Topic: Accessing WAM IPolicyClient
- Replies: 2
- Views: 1506
- Tue May 17, 2011 2:44 pm
- Forum: Java Web Project Support (Stack)
- Topic: Accessing WAM IPolicyClient
- Replies: 2
- Views: 1506
Accessing WAM IPolicyClient
Here is how we are currently access the WAM header info: IPolicyClient ssoClient = WebApplicationPolicyClient.getPolicyClient(); long acctId = Long.parseLong(ssoClient.getPolicyAttribute(PolicyHeader.LDS_ACCT_ID)); user.setLdsAccountId(acctId); user.setLdsEmailAddr(ssoClient.getPolicyAttribute(Polic...
- Tue Mar 01, 2011 9:11 am
- Forum: Java Web Project Support (Stack)
- Topic: Announcement: Recorded training Introduction to Maven now available
- Replies: 3
- Views: 1965
- Tue Mar 01, 2011 8:14 am
- Forum: Java Web Project Support (Stack)
- Topic: Announcement: Recorded training Introduction to Maven now available
- Replies: 3
- Views: 1965
Mike, I am trying to catchup on my stack training and during the Intro to Maven Lab2, while doing a maven package, I am seeing the following error: [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building maven-training 1....
- Mon Feb 14, 2011 11:13 am
- Forum: Java Web Project Support (Stack)
- Topic: Application emailing to a lds distribution list (DL)
- Replies: 1
- Views: 1450
- Fri Feb 11, 2011 8:39 am
- Forum: Java Web Project Support (Stack)
- Topic: Application emailing to a lds distribution list (DL)
- Replies: 1
- Views: 1450
Application emailing to a lds distribution list (DL)
I had a email distribution list created = DL-MTM-DEV and would like my app to send alerts to it. At this point, I am assuming that my app should send the email to DL-MTM-DEV@ldschurch.org : 2011-02-10 23:58:24,210 [] [DEBUG] org.lds.ics.mtm.firewall.service.ActivationServiceImpl.createEmailMessage()...
- Tue Feb 08, 2011 4:01 pm
- Forum: Java Web Project Support (Stack)
- Topic: Canary Help
- Replies: 9
- Views: 2669
Turns out that we were not closing the connection: public void checkStatus() { Connection connection = null; try { for (DataSource dataSource : dataSources) { connection = dataSource.getConnection(); DatabaseMetaData databaseMetaData = connection.getMetaData(); StringBuilder builder = new StringBuil...