. alfresco/
. extension/
. module-context-xml
. module.properties
. nomeDelWS.post.desc.xml
. it/
. a/
. b/
. nomeDelWS/
. dao (contiene .class)
. maps (contiene gli xml di ibatis)
. domain (contiene .class)
. support (contiene .class)
. util (contiene .class)
. webscript
. ProtocolloFileUpload.class
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<bean id="webscript.it.a.b.nomeDelWS.webscript.ProtocolloFileUpload.post" class="it.a.b.nomeDelWS.webscript.ProtocolloFileUpload"
parent="webscript">
<property name="authenticationService" ref="authenticationService" />
<property name="nodeService" ref="nodeService" />
<property name="namespaceService" ref="namespaceService" />
<property name="fileFolderService" ref="fileFolderService" />
<property name="contentService" ref="contentService" />
<property name="searchService" ref="searchService" />
<property name="authorityService" ref="authorityService" />
<property name="transactionService" ref="transactionService" />
<property name="permissionService" ref="permissionService" />
<property name="categoryService" ref="categoryService" />
</bean>
<!– Parametri di connessione al DB –>
<bean id="dataSourceProtocolloAlfrescoInsiel" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" />
<property name="url" value="jdbc:oracle:thin:@xxx:1521:E3" />
<property name="username" value="xxx" />
<property name="password" value="xxx" />
</bean>
<bean id="transactionManagerProtocolloAlfrescoInsiel" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="dataSourceProtocolloAlfrescoInsiel" />
</bean>
<bean id="sqlMapClientProtocolloAlfrescoInsiel" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
<property name="configLocation" value="classpath:sql-map-config.xml" />
<property name="dataSource" ref="dataSourceProtocolloAlfrescoInsiel" />
</bean>
<bean id="daoSupportProtocolloAlfrescoInsiel" class="it.insiel.archprot.protocolloAlfrescoInsiel.dao.DAOUtils">
<property name="sqlMapClient" ref="sqlMapClientProtocolloAlfrescoInsiel" />
</bean>
<bean id="interactionsDAOProtocolloAlfrescoInsiel" class="it.insiel.archprot.protocolloAlfrescoInsiel.dao.InteractionsDAO">
<property name="support" ref="daoSupportProtocolloAlfrescoInsiel" />
</bean>
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<webscript>
<shortname>nome del ws</shortname>
<description>bla bla bla</description>
<url>a/b/nomeDelWS</url>
<authentication>none</authentication>
</webscript>
Archive content from product discussions in Italian.
This group is now closed and content is read-only.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.