2010-06-01 94 views
0

我想添加一個新的驅動程序到我們在Tomcat下運行的系統。供應商提供了一個JavaPos驅動程序,我的問題是在哪裏放置jpos.xml文件,以便Tomcat可以找到它?jpos.xml應該放在JavaPos Tomcat應用程序中的位置?

我試着把它放在tomcat \ common \ classes中,但仍然得到一個JPOSException 「服務在加載的JCL註冊表中不存在」,當我嘗試打開它時。幫幫我!


是正確的,JavaPOS的。我正在將JavaPos集成到現有的客戶端Tomcat應用程序中,並且想知道放置jpos.xml和jpos.properties的正確位置(在展開的war文件中)。

非常感謝,弗雷德。

回答

-1

我想你是在談論JavaPOS,而不是jPOS?

+0

這不是答案。請將其移動爲對原始問題的評論。 – 2014-02-01 21:38:52

0

我不知道這是否會幫助一個五年的問題!

/* 
* If you want to place the jpos.xml file elsewhere on your local file 
* system then uncomment the following line and specify the full path to 
* jpos.xml. 
* 
* If you want to place the jpos.xml file on a webserver for access over the 
* internet then uncomment the second System.setProperty line below and 
* specify the full URL to jpos.xml. 
*/ 
System.setProperty(JposPropertiesConst.JPOS_POPULATOR_FILE_PROP_NAME, "jpos.xml"); 
//System.setProperty(JposPropertiesConst.JPOS_POPULATOR_FILE_URL_PROP_NAME, "http://some-where-remote.com/jpos.xml"); 

System.setProperty("jpos.loader.serviceManagerClass", "jpos.loader.simple.SimpleServiceManager"); 
System.setProperty("jpos.util.tracing.TurnOnNamedTracers", "JposServiceLoader,SimpleEntryRegistry,SimpleRegPopulator,XercesRegPopulator"); 
System.setProperty("jpos.util.tracing.TurnOnAllNamedTracers", "ON"); 
相關問題