Hi,
I need a system to manage my projects. Something like Track with the facility to use the components of my choice (track uses it's own components) :
- bug tracker (mantis)
- timesheet (specific internal project)
- technical documentation (mediawiki)
- general documentation (alfresco)
- versionning system (subversion)
- actors (from ldap)
etc.
Is jboss portal a good start to develop this ?
With the ability to display all the projects or a complete display off one project, provides a wizard to create a new project step by step etc ?
Best regards
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4201804#4201804
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4201804
My ear structure is like this:
| myapppliaction.ear
| ---lib (directory contains libraries used by ejb modules and webapp)
| ---META-INF
| ------application.xml
| ------jboss-app.xml
| ------security-config.xml
| ---jboss-service.xml
| ---firstEJBmodule.jar
| ---secondEJBmodule.jar
| ---mywebapp.war
|
And previously I forgot mention that I have a jboss-app.xml which looks like this:
| <?xml version="1.0" encoding="UTF-8"?>
| <!DOCTYPE jboss-app PUBLIC
| "-//JBoss//DTD J2EE Application 1.4//EN"
| "http://www.jboss.org/j2ee/dtd/jboss-app_4_2.dtd">
| <jboss-app>
| <security-domain>MyRealm</security-domain>
| <module>
| <service>jboss-service.xml</service>
| </module>
| </jboss-app>
|
I'll try my application with .sar module.
Thanks,
Marcin
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4201801#4201801
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4201801
Hi,
the error message says that your login module config was not found.
How is the structure of your EAR? As much as I know, the login module (code and config) must be placed in a .SAR (="service archive") file.
Best would be to create a standalone SAR archive and place it in the deploy folder.
If this does not work: I found this JBossIDE bugreport, which has the side effect to explain usage of SAR files in an EAR: https://jira.jboss.org/jira/browse/JBIDE-1104
According to this, you have to place the SAR file in the EAR file, and declare it in "jboss-app.xml":
...schema definition...
| <jboss-app>
| <security-domain>...</security-domain>
| <module>
| <service>mymodule.sar</service>
| </module>
| </jboss-app>
Hope this helps
Wolfgang
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4201794#4201794
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4201794