[JBoss JIRA] Created: (HIBERNATE-97) Clarifications about jta.jar and jboss-j2ee.jar in the Reference Guide - Tutorial
by Juraci Costa (JIRA)
Clarifications about jta.jar and jboss-j2ee.jar in the Reference Guide - Tutorial
---------------------------------------------------------------------------------
Key: HIBERNATE-97
URL: http://jira.jboss.com/jira/browse/HIBERNATE-97
Project: Hibernate
Issue Type: Bug
Environment: Documentation
Reporter: Juraci Costa
Assigned To: Steve Ebersole
In Hibernate_Reference_Guide.pdf , page 17, it lists all the required libraries to run Hibernate. It lists jta.jar file, which is not included in the package with this name. The lib jboss-j2ee.jar, which implements JTA, is included, but the user *may* find it difficult to link jta.jar with jboss-j2ee.jar, considering it is in the "tutorial" part . So, the suggestion is to put a note in the documentation about this, maybe like the note about log4j.
Suggestion:
Before:
more or less libraries. See the README.txt file in the lib/ directory of the Hibernate distribution
for more information about required and optional third-party libraries. (Actually, Log4j is not
required but preferred by many developers.)
After:
more or less libraries. See the README.txt file in the lib/ directory of the Hibernate distribution
for more information about required and optional third-party libraries.
Note: The lib Log4j is not required but preferred by many developers.
Note 2:Instead of jta.jar, use your preferred JTA implementation. In
the Hibernate distribution, you can use jboss-j2ee.jar for this purpose.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 7 months
[JBoss JIRA] Created: (JBPORTAL-2034) Google Widget Secured Proxy Configuration
by Mike Millson (JIRA)
Google Widget Secured Proxy Configuration
-----------------------------------------
Key: JBPORTAL-2034
URL: http://jira.jboss.com/jira/browse/JBPORTAL-2034
Project: JBoss Portal
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Components: Portal Widget
Affects Versions: 2.6.5 SP1
Reporter: Mike Millson
When there is a secured proxy, the portal displays a message saying the list of Google Widgets cannot be retrieved. Add a feature to allow the portal to authenticate to the proxy. Possible solutions:
1) Add the capability to define a service account username and password in a configuration file.
2) Have the portal prompt the user for credentials.
3) Add support for the following environment variables:
-Dhttp.proxyHost=<our proxy>
-Dhttp.proxyPort=<our port>
-Dhttp.proxyUser=<my userid>
-Dhttp.proxyPassword=<my password>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 7 months
[JBoss JIRA] Created: (JBVFS-19) Add context name to VirtualFile/VirtualFileHandler
by Scott M Stark (JIRA)
Add context name to VirtualFile/VirtualFileHandler
--------------------------------------------------
Key: JBVFS-19
URL: http://jira.jboss.com/jira/browse/JBVFS-19
Project: JBoss VFS
Issue Type: Task
Security Level: Public (Everyone can see)
Affects Versions: 2.0.0.Beta9
Reporter: Scott M Stark
Fix For: 2.0.0.Beta10
Coming out of the discussion of JBVFS-4, we need a contextName property to allow the name to always be non-empty.
/**
* Get the simple VF name (X.java)
*
* @return the simple, non-empty file name of the VF
*/
String getName();
/**
* Get the simple VF context name. This is the name portion of the VF in the pathName.
*
* @return the path context name for the VFS relative path name. This will be empty for root VFs.
*/
String getContextName();
/**
* Get the VFS relative path name (org/jboss/X.java)
*
* @return the VFS relative path name. This will be empty for root VFs.
*/
String getPathName();
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 7 months
[JBoss JIRA] Created: (JBVFS-18) Seeing jar:jar urls for nested jars with a SynthenticDirEntryHandler parent
by Scott M Stark (JIRA)
Seeing jar:jar urls for nested jars with a SynthenticDirEntryHandler parent
---------------------------------------------------------------------------
Key: JBVFS-18
URL: http://jira.jboss.com/jira/browse/JBVFS-18
Project: JBoss VFS
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 2.0.0.Beta9
Reporter: Scott M Stark
Fix For: 2.0.0.Beta10
In testing the current vfs trunk with jbossas using the jboss.vfs.forceNoCopy=true setting, the jdk jar: protocol handler ends up puking on jar:jar: type of urls.
Caused by: java.lang.RuntimeException: java.net.MalformedURLException: no !/ in spec
at org.jboss.virtual.plugins.context.AbstractURLHandler.initCacheLastModified(AbstractURLHan
dler.java:76)
at org.jboss.virtual.plugins.context.AbstractURLHandler.<init>(AbstractURLHandler.java:65)
at org.jboss.virtual.plugins.context.jar.SynthenticDirEntryHandler.<init>(SynthenticDirEntryHandler.java:77)
at org.jboss.virtual.plugins.context.jar.AbstractStructuredJarHandler.createSynthenticParent
(AbstractStructuredJarHandler.java:239)
at org.jboss.virtual.plugins.context.jar.AbstractStructuredJarHandler.buildParents(AbstractS
tructuredJarHandler.java:227)
at org.jboss.virtual.plugins.context.jar.AbstractStructuredJarHandler.initJarFile(AbstractSt
ructuredJarHandler.java:166)
at org.jboss.virtual.plugins.context.jar.NestedJarFromStream.init(NestedJarFromStream.java:9
1)
at org.jboss.virtual.plugins.context.jar.NestedJarFromStream.getChild(NestedJarFromStream.ja
va:108)
at org.jboss.virtual.plugins.context.jar.NoCopyNestedJarHandler.getChild(NoCopyNestedJarHand
ler.java:130)
at org.jboss.virtual.VirtualFile.getChild(VirtualFile.java:407)
at org.jboss.deployers.vfs.plugins.structure.explicit.DeclaredStructure.determineStructure(D
eclaredStructure.java:64)
... 63 more
This is not seen with the 2.0.0.Beta9 vfs release.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
17 years, 7 months