[JBoss-dev] [JBoss JIRA] Created: (JBPORTAL-197) Patch for JBPORTAL-74 (Delete a group)

2005-02-02 Thread wdimac (JIRA)
Patch for JBPORTAL-74 (Delete a group)
--

 Key: JBPORTAL-197
 URL: http://jira.jboss.com/jira/browse/JBPORTAL-197
 Project: JBoss Portal
Type: Patch
  Components: Portal Core  
Reporter: wdimac
 Assigned to: Julien Viet 
Priority: Minor


Patch diff below (hope I did this right):

Index: src/main/org/jboss/portal/core/impl/role/RoleModuleImpl.java
===
RCS file: 
/cvsroot/jboss/jboss-portal/core/src/main/org/jboss/portal/core/impl/role/RoleModuleImpl.java,v
retrieving revision 1.1
diff -u -r1.1 RoleModuleImpl.java
--- src/main/org/jboss/portal/core/impl/role/RoleModuleImpl.java15 Jan 
2005 22:11:25 -  1.1
+++ src/main/org/jboss/portal/core/impl/role/RoleModuleImpl.java3 Feb 
2005 06:42:41 -
@@ -18,6 +18,7 @@
 import org.apache.log4j.Logger;
 import org.jboss.hibernate.session.HibernateContext;
 import org.jboss.portal.common.util.Tools;
+import org.jboss.portal.core.impl.user.UserImpl;
 import org.jboss.portal.core.model.Role;
 import org.jboss.portal.core.modules.AbstractModule;
 import org.jboss.portal.core.modules.RoleModule;
@@ -192,11 +193,16 @@
  try
  {
 Session session = getSession();
-int num = session.delete("from RoleImpl as g where g.ID=" + 
id.toString());
-if (num == 0)
+RoleImpl role = (RoleImpl)session.load(RoleImpl.class, id);
+// User manages the relation.
+Iterator users = role.getUsers().iterator();
+while (users.hasNext())
 {
-   throw new ModuleException("No such role " + id);
+UserImpl user = (UserImpl)users.next();
+user.getRoles().remove(role);
 }
+session.delete(role);
+session.flush();
  }
  catch (HibernateException e)
  {
Index: src/main/org/jboss/portal/core/portlet/role/RolePortlet.java
===
RCS file: 
/cvsroot/jboss/jboss-portal/core/src/main/org/jboss/portal/core/portlet/role/RolePortlet.java,v
retrieving revision 1.1
diff -u -r1.1 RolePortlet.java
--- src/main/org/jboss/portal/core/portlet/role/RolePortlet.java15 Jan 
2005 22:11:40 -  1.1
+++ src/main/org/jboss/portal/core/portlet/role/RolePortlet.java3 Feb 
2005 06:42:42 -
@@ -309,6 +309,35 @@
}
 
/**
+* Action to delete a role
+* 
+* @param req
+* @param resp
+*/
+   public void removeRole(JBossActionRequest req, JBossActionResponse resp)
+   {
+  if (PortletHelper.isAuthorized(req.getAuthorizationRealm(), 
req.getUser(), new String[] {},
+Level.ACCESS_ADMIN))
+  {
+  Integer roleID = req.getParameters().getIntObject("roleid");
+  try
+  {
+ roleModule.removeRole(roleID);
+ resp.setRenderParameter("roledelete_error", "ROLE_DELETED");
+ resp.setRenderParameter(getOperationName(), OP_SHOWEDITROLE);
+  }
+  catch (ModuleException e)
+  {
+ log.error("Cannot remove role, unexpected error");
+ e.printStackTrace();
+ portletHelper.setRenderParameter(resp, "roleid", 
roleID.toString());
+ resp.setRenderParameter("roledelete_error", 
"ROLE_ERROR_DELETE_FAILED");
+ resp.setRenderParameter(getOperationName(), OP_SHOWEDITROLE);
+  }
+   }
+   }
+   
+   /**
 * REturns trus if the role with display name in argument is available
 * 
 * @param name
Index: src/resources/portal-core-war/WEB-INF/classes/Resource.properties
===
RCS file: 
/cvsroot/jboss/jboss-portal/core/src/resources/portal-core-war/WEB-INF/classes/Resource.properties,v
retrieving revision 1.2
diff -u -r1.2 Resource.properties
--- src/resources/portal-core-war/WEB-INF/classes/Resource.properties   15 Jan 
2005 22:11:26 -  1.2
+++ src/resources/portal-core-war/WEB-INF/classes/Resource.properties   3 Feb 
2005 06:42:42 -
@@ -338,11 +338,14 @@
 ROLE_CREATE=Create user role
 ROLE_UPDATE=Update user role
 ROLE_EDIT=Edit user role
+ROLE_DELETE=Delete selected role
+ROLE_DELETED=The role has been deleted
 
 ROLE_ERROR_DISPLAYNAMEALREADYEXISTS=There is already a role with that display 
name
 ROLE_ERROR_NAMEALREADYEXISTS=There is already a role with that name
 ROLE_ERROR_NAMEEMPTY=The role name cannot be empty
 ROLE_ERROR_DISPLAYNAMEEMPTY=The role display name cannot be empty
+ROLE_ERROR_DELETE_FAILED=Could not delete the role
 
 MENU_CREATEROLE=Create new role
 MENU_EDITROLE=Edit existing role
Index: src/resources/portal-core-war/WEB-INF/classes/Resource_en.properties
===
RCS file: 
/cvsroot/jboss/jboss-portal/core/src/resources/portal-core-war/WEB-INF/classes/Resourc

[JBoss-dev] jboss-head build.765 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050203010531Lbuild.765
BUILD COMPLETE - build.765Date of build: 02/03/2005 01:05:31Time to build: 19 minutes 20 secondsLast changed: 02/03/2005 00:47:06Last log entry: JBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (10)1.2modifiedtelrodserver/src/main/org/jboss/invocation/unified/marshall/InvocationUnMarshaller.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.4modifiedtelrodwebservice/src/main/org/jboss/ws/binding/soap/SOAPMessageUnMarshaller.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.3modifiedtelrodremoting/tests/src/org/jboss/remoting/marshall/serializable/SerializableMarshallingTestCase.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.9modifiedtelrodremoting/src/main/org/jboss/remoting/transport/http/HTTPClientInvoker.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.6modifiedtelrodremoting/src/main/org/jboss/remoting/transport/http/HTTPServerInvoker.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.6modifiedtelrodremoting/src/main/org/jboss/remoting/transport/socket/ServerThread.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.19modifiedtelrodremoting/src/main/org/jboss/remoting/transport/socket/SocketClientInvoker.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.4modifiedtelrodremoting/src/main/org/jboss/remoting/marshal/UnMarshaller.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.5modifiedtelrodremoting/src/main/org/jboss/remoting/marshal/serializable/SerializableUnMarshaller.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.1.4modifiedtelrodremoting/src/main/org/jboss/remoting/marshal/http/HTTPUnMarshaller.javaJBREM-54 - Updated UnMarshaller to take transport metadata was well as inputstream for the read() method.  Also updated HTTPClientInvoker to pass http header info as the metadata when calling the unmarshaller.



[JBoss-dev] [Design of JBoss/Tomcat Integration] - Re: Integrating Tomcat 4.1.30 with JBoss 3.2.6

2005-02-02 Thread shashibhushan
Hi,

I'm using Tomcat 4.1.30 with JBoss 3.2.6. However, it throws null pointer 
exception whenevr running tomcat...what am i doing wrong...I'm kinda new to the 
JBoss :D...


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864974#3864974

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864974


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (JBAS-1373) JDBC3 Fix not ported correctly from 3.2.x to 4.0.1

2005-02-02 Thread Adrian Brock (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAS-1373?page=history ]
 
Adrian Brock closed JBAS-1373:
--

Resolution: Done

> JDBC3 Fix not ported correctly from 3.2.x to 4.0.1
> --
>
>  Key: JBAS-1373
>  URL: http://jira.jboss.com/jira/browse/JBAS-1373
>  Project: JBoss Application Server
> Type: Bug
>   Components: JMS service
> Versions: JBossAS-4.0.1 Final
> Reporter: Adrian Brock
> Assignee: Adrian Brock
> Priority: Optional
>  Fix For:  JBossAS-4.0.2RC1

>
>
> The port of the fix for topic recovery in the experimental JBossMQ JDBC3 
> persistence manager
> was incorrectly applied to the JBoss-4.0.1 version.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAS-1373) JDBC3 Fix not ported correctly from 3.2.x to 4.0.1

2005-02-02 Thread Adrian Brock (JIRA)
JDBC3 Fix not ported correctly from 3.2.x to 4.0.1
--

 Key: JBAS-1373
 URL: http://jira.jboss.com/jira/browse/JBAS-1373
 Project: JBoss Application Server
Type: Bug
  Components: JMS service  
Versions: JBossAS-4.0.1 Final
Reporter: Adrian Brock
 Assigned to: Adrian Brock 
Priority: Optional
 Fix For:  JBossAS-4.0.2RC1


The port of the fix for topic recovery in the experimental JBossMQ JDBC3 
persistence manager
was incorrectly applied to the JBoss-4.0.1 version.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBREM-54) Need access to HTTP response headers

2005-02-02 Thread Tom Elrod (JIRA)
 [ http://jira.jboss.com/jira/browse/JBREM-54?page=history ]
 
Tom  Elrod resolved JBREM-54:
-

 Resolution: Done
Fix Version: 1.0.1 final

Have changed the UnMarshaller::read() method to the following signature:

 public Object read(InputStream inputStream, Map metadata) throws IOException, 
ClassNotFoundException

Will now take Map of transport metadata as second param.  

Have also updated the HTTPClientInvoker so that it will now pass the HTTP 
header info to this method.

See org.jboss.remoting.marshall.http.metadata.HTTPUnMarshallerMetadataTestCase 
for test case.

BTW, in this particular instance, the Map that is passed from the 
HTTPClientInvoker is an unmodifiable one.

> Need access to HTTP response headers
> 
>
>  Key: JBREM-54
>  URL: http://jira.jboss.com/jira/browse/JBREM-54
>  Project: JBoss Remoting
> Type: Feature Request
>   Components: transport
> Reporter: Jason T. Greene
> Assignee: Tom  Elrod
>  Fix For: 1.0.1 final

>
>
> We need a way to get at the HTTP response headers after an invocation on an 
> HTTPClientInvoker. For instance, we need to know the content type of the 
> response message before we can parse it. Currently just the respsonse stream 
> is being passed back.
> Thanks,
> -Jason

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.764 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050202205123Lbuild.764
BUILD COMPLETE - build.764Date of build: 02/02/2005 20:51:23Time to build: 22 minutes 4 secondsLast changed: 02/02/2005 19:25:07Last log entry: updated page name




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (4)1.2modifiedccrouchadmin-console/docs/requirements/sitemap-phase_1_0.pdfupdated page name1.2modifiedccrouchadmin-console/docs/requirements/sitemap-phase_1_0.vsdupdated page name1.2modifiedccrouchadmin-console/docs/requirements/use_cases.docupdated with the remaining use cases for Phase 1.01.2modifiedccrouchadmin-console/docs/requirements/use_cases.pdfupdated with the remaining use cases for Phase 1.0



[JBoss-dev] jboss-4.0 build.352 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20050202195319Lbuild.352
BUILD COMPLETE - build.352Date of build: 02/02/2005 19:53:19Time to build: 29 minutes 58 secondsLast changed: 02/02/2005 15:22:26Last log entry: - Revert usage of emptySessionPath as default.




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (6)1.3.2.3modifiedremmtomcat/src/resources/server.xml- Revert usage of emptySessionPath as default.1.18.2.14modifiedkabkhantools/etc/buildmagic/buildmagic.entAdd AOP 1.1 to 4.0 branch*Backport latest javassist from jboss-head*Included necessary AOP 1.1 jars to aop and aspects*made aop/build.xml and aspects/build.xml not build, but use the jars mentioned above*changes to org.jboss.test.aop.bean.RemotingTester to compile with AOP 1.11.17.2.3modifiedkabkhanthirdparty/javassist/lib/javassist.jarAdd AOP 1.1 to 4.0 branch*Backport latest javassist from jboss-head*Included necessary AOP 1.1 jars to aop and aspects*made aop/build.xml and aspects/build.xml not build, but use the jars mentioned above*changes to org.jboss.test.aop.bean.RemotingTester to compile with AOP 1.11.13.4.1modifiedkabkhantestsuite/src/main/org/jboss/test/aop/bean/RemotingTester.javaAdd AOP 1.1 to 4.0 branch*Backport latest javassist from jboss-head*Included necessary AOP 1.1 jars to aop and aspects*made aop/build.xml and aspects/build.xml not build, but use the jars mentioned above*changes to org.jboss.test.aop.bean.RemotingTester to compile with AOP 1.11.13.2.6modifiedkabkhanaspects/build.xmlAdd AOP 1.1 to 4.0 branch*Backport latest javassist from jboss-head*Included necessary AOP 1.1 jars to aop and aspects*made aop/build.xml and aspects/build.xml not build, but use the jars mentioned above*changes to org.jboss.test.aop.bean.RemotingTester to compile with AOP 1.11.40.2.7modifiedkabkhanaop/build.xmlAdd AOP 1.1 to 4.0 branch*Backport latest javassist from jboss-head*Included necessary AOP 1.1 jars to aop and aspects*made aop/build.xml and aspects/build.xml not build, but use the jars mentioned above*changes to org.jboss.test.aop.bean.RemotingTester to compile with AOP 1.1



[JBoss-dev] [JBossCache] - Re: JBoss Cache in Tomcat.

2005-02-02 Thread [EMAIL PROTECTED]
If you want to contribute the wrapper code to deploy JBossCache under Tomcat as 
a regular MBean, you can put it in our JBossWiki site. And I will include it in 
our faq.

Thanks,

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864950#3864950

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864950


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Management Features on JBoss] - Re: no ManagedConnections after timeouts

2005-02-02 Thread aviananta
I have this error too:  No ManagedConnections available within configured 
blocking timeout ( 5000 [ms] );.  I try to add .remove() after I have done with 
the ejb.create(), and the error message disappear. :) . Here my code:

Object ref = jndiContext.lookup ("remoteDelivery");
remoteDeliveryHome rdh = (remoteDeliveryHome)PortableRemoteObject.narrow 
(ref,remoteDeliveryHome.class);
remoteDeliveryRemote rdr =rdh.create();  
rdr.remove();

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864949#3864949

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864949


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.763 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050202175156Lbuild.763
BUILD COMPLETE - build.763Date of build: 02/02/2005 17:51:56Time to build: 42 minutes 12 secondsLast changed: 02/02/2005 15:22:56Last log entry: - Revert usage of emptySessionPath as default.




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (53)1.5modifiedremmtomcat/src/resources/server.xml- Revert usage of emptySessionPath as default.1.1addedanddvaria/src/resources/services/deployment/templates/xa-datasource/vm/xa-datasource.vmadded the full set of generic datasource templates (no-tx, local-tx, xa)1.1addedanddvaria/src/resources/services/deployment/templates/xa-datasource/template-config.xmladded the full set of generic datasource templates (no-tx, local-tx, xa)1.1addedanddvaria/src/resources/services/deployment/templates/no-tx-datasource/vm/no-tx-datasource.vmadded the full set of generic datasource templates (no-tx, local-tx, xa)1.1addedanddvaria/src/resources/services/deployment/templates/no-tx-datasource/template-config.xmladded the full set of generic datasource templates (no-tx, local-tx, xa)1.2modifiedanddvaria/src/resources/services/deployment/templates/local-tx-datasource/vm/local-tx-datasource.vmadded the full set of generic datasource templates (no-tx, local-tx, xa)1.2modifiedanddvaria/src/resources/services/deployment/templates/local-tx-datasource/template-config.xmladded the full set of generic datasource templates (no-tx, local-tx, xa)1.1addedanddvaria/src/main/org/jboss/services/deployment/ContextHelper.javaminor changes and the addition of a helper object that may be called from the templates1.4modifiedanddvaria/src/main/org/jboss/services/deployment/DeploymentManager.javaminor changes and the addition of a helper object that may be called from the templates1.4modifiedanddvaria/src/main/org/jboss/services/deployment/DeploymentService.javaminor changes and the addition of a helper object that may be called from the templates1.3modifiedanddvaria/src/main/org/jboss/services/deployment/DeploymentServiceMBean.javaminor changes and the addition of a helper object that may be called from the templates1.5modifiedtdieslerwebservice/test/java/org/jboss/test/ws/outparam/OutParamDIITestCase.javaAdd support for bound and unbound OUT headers1.5modifiedtdieslerwebservice/test/java/org/jboss/test/ws/header/HeaderDIITestCase.javaAdd support for bound and unbound OUT headers1.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/header/HeaderProxyTestCase.javaAdd support for bound and unbound OUT headers1.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/header/HeaderTestHandler.javaAdd support for bound and unbound OUT headers1.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/header/HeaderClientTestCase.javaAdd support for bound and unbound OUT headers1.34modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/CallImpl.javaAdd support for bound and unbound OUT headers1.26modifiedtdieslerwebservice/src/main/org/jboss/ws/binding/soap/SOAPBindingProvider.javaAdd support for bound and unbound OUT headers1.1addedccrouchadmin-console/docs/requirements/datasource_elements.xlstable describing which datasource elements will be viewable via the Admin Console1.1addedccrouchadmin-console/docs/requirements/datasource_elements.pdftable describing which datasource elements will be viewable via the Admin Console1.4modifiedtdieslerj2ee/src/main/javax/xml/soap/SOAPConnectionFactory.javaUse the factories in JBossWS1.7modifiedtdieslerj2ee/src/main/javax/xml/rpc/ServiceFactory.javaUse the factories in JBossWS1.2modifiedccrouchadmin-console/docs/requirements/datasource_stats_elements.xlsupdated for formatting1.2modifiedccrouchadmin-console/docs/requirements/datasource_stats_elements.pdfupdated for formatting1.5modifiedtdieslerj2ee/src/main/javax/xml/soap/MessageFactory.javaRemove dependency on Axis and use the factories in JBossWS1.3modifiedtdieslerj2ee/src/main/javax/xml/soap/SOAPConnectionFactory.javaRemove dependency on Axis and use the factories in JBossWS1.6modifiedtdieslerj2ee/src/main/javax/xml/soap/SOAPFactory.javaRemove dependency on Axis and use the factories in JBossWS1.6modifiedtdieslerj2ee/src/main/javax/xml/rpc/ServiceFactory.javaRemove dependency on Axis and use the factories in JBossWS1.1addedtdieslerwebservice/src/main/org/jboss/ws/soap/SOAPConnectionFactoryImpl.javaAdd placeholders for SOAPConnection1.1addedtdieslerwebservice/src/main/org/jboss/ws/soap/SOAPConnectionImpl.javaAdd placeholders for SOAPConnection1.1addedtdieslerwebservice/test/java/org/jboss/test/ws/soap/SOAPHeaderElementTestCase.javaFix: JBWS-971.3modifiedtdieslerwebservice/test/java/org/jboss/test/ws/soap/SOAPHeaderTestCase.javaFix: JBWS-971.13modifiedtdieslerwebservice/src/main/org/jboss/ws/soap/SOAPContentElement.javaFix: JBWS-971.14modifiedtdieslerwebse

[JBoss-dev] [ jboss-Bugs-1115130 ] RMI-over-HTTP : HostNotFound

2005-02-02 Thread SourceForge.net
Bugs item #1115130, was opened at 2005-02-03 02:26
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=1115130&group_id=22866

Category: JBossServer
Group: v3.2
Status: Open
Resolution: None
Priority: 5
Submitted By: Maxim (kimerinn)
Assigned to: Nobody/Anonymous (nobody)
Summary: RMI-over-HTTP : HostNotFound

Initial Comment:
An UnknownHostExcception exception occurs when I trying
to establish JNDI-over-HTTP connection. I have JBoss on
galaxy3d.com.ua, this server has http invokers
configured for port 80. If I trying to connect on URL
http://galaxy3d.com.ua/invoker/JNDIFactory using
browser, it open download window (this means that
connection is presented).
But if I trying to connect with java client, using
following code:

Hashtable prop = new Hashtable();
prop.put(Context.INITIAL_CONTEXT_FACTORY,
"org.jboss.naming.HttpNamingContextFactory");
prop.put(Context.PROVIDER_URL,
"http://galaxy3d.com.ua/invoker/JNDIFactory";);
prop.put(Context.URL_PKG_PREFIXES,
"org.jboss.naming:org.jnp.interfaces");
InitialContext ctx = new InitialContext(prop);
Object obj = ctx.lookup("Galaxy3D/AdminManager");
AdminManagerHome ah =
(AdminManagerHome)PortableRemoteObject.narrow(obj,
AdminManagerHome.class);


I get such error (and this error raises even I trying
to connect using pure IP address):

javax.naming.CommunicationException: Operation failed.
 Root exception is java.rmi.ServerException: IOE;
nested exception is: 
java.net.UnknownHostException: galaxy3d
at
org.jboss.invocation.http.interfaces.HttpInvokerProxy.invoke(HttpInvokerProxy.java:120)
at
org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:96)
at
org.jboss.naming.interceptors.ExceptionInterceptor.invoke(ExceptionInterceptor.java:42)
at
org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
at
org.jboss.proxy.ClientMethodInterceptor.invoke(ClientMethodInterceptor.java:55)
at
org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:85)
at $Proxy0.lookup(Unknown Source)
at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:530)
at
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:509)
at
javax.naming.InitialContext.lookup(InitialContext.java:347)
at
ua.com.galaxy3d.server.tools.EarthConsole.getAdminManagerObject(EarthConsole.java:89)


==
My configuration on server is: SuSE linux 9.2 with
enabled firewall (http protocol is allowed), java
1.4.2_05, JBoss 3.2.6.
Client configuration is: SuSE linux 9.2 with enabled
firewall (http allowed), java 1.4.2_05, JBoss 3.2.6.

--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=376685&aid=1115130&group_id=22866


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread hurzeler
It might be an idea to put something in Wiki about components so that it 
becomes usable for the community at large. Things like purpose, usage and 
configuration. 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864936#3864936

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864936


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread [EMAIL PROTECTED]
I don't know webwork at all and i don't know much about velocity, so i can't 
really help on this.

I am giving you hints, i have no clue about your project.
No you should not extend the portletContainer but the component.

For sure you need to work on it, this won't be straightforward. I can't tell if 
it's better to write a component or a portlet in your specific case. You need 
to dig into the code.

To answer your second question, we tried to make a wrapper, but it doesn't seem 
doable in a nice way. At least we provide this component idea so that you don't 
have to write only portlets.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864934#3864934

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864934


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread hurzeler
I think this is a very important issue as many companies will want to reuse 
their existing webapps as they represent a significant amount of investment. 

Therefore I suspect that the easier it is to wrap existing webapps, the more 
likely it is for JBossPortal to have a significant uptake.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864933#3864933

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864933


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread hurzeler
Could you elaborate your ideas just a little more in terms of our webapp 
servlet (WebWorkVelocityServlet)? 

Are your suggesting that we write a Component by extending the PortletContainer 
and then? 

How do we configure this new component and can it live beside the existing on?

Thanks

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864930#3864930

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864930


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss IIOP on JBoss] - problem deploying IIOP entity bean

2005-02-02 Thread [EMAIL PROTECTED]
Hi,

I am running into an entity bean IIOP invoker problem on JBOSS.

I used an SUN entity bean tutorial example "savingsAccount" from and add JBoss 
descriptor.
I deployed the bean in JBoss in "all" configuration without a problem and got 
the Java app client to talk to it . 
Then I tried to setup a "iiop" invoker so that I can talk to the entity bean 
from a CORBA client.
I made the change to the jboss.xml in dd/ejb/ folder by adding those lines in 
red font:
 
--


 

SavingsAccountBean
SavingAccount

jdbc/SavingsAccountDB
java:/OracleDS
   
 
   
   
   
  iiop
   


 


--
 
After I built, assembled and deployed the entity bean, the errors listed below 
came out of the stdout of JBoss app server. Without the  tags, 
the bean works fine. I used the same  tags in a session bean 
(with "stateless-rmi-invoker" instead of "entity-rmi-invoker"), the session 
bean works fine and I can use a CORBA client to talk to it. I only have this 
problem with entity beans.

Thanks for any help.

   Kevin

---   
14:38:43,841 INFO  [EARDeployer] Init J2EE application: 
file:/usr/ksu/public/jboss-4.0.1RC2/server/all/deploy/saving.ear
14:38:49,066 INFO  [EjbModule] Deploying SavingsAccountBean
14:38:50,615 ERROR [EntityContainer] Initialization failed 
jboss.j2ee:jndiName=SavingAccount,service=EJB
java.lang.NullPointerException
at 
org.jboss.iiop.rmi.ExceptionAnalysis.doAnalyze(ExceptionAnalysis.java:83)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.iiop.rmi.WorkCacheManager.doTheWork(WorkCacheManager.java:183)
at 
org.jboss.iiop.rmi.WorkCacheManager.getAnalysis(WorkCacheManager.java:106)
at 
org.jboss.iiop.rmi.ExceptionAnalysis.getExceptionAnalysis(ExceptionAnalysis.java:59)
at org.jboss.iiop.rmi.OperationAnalysis.(OperationAnalysis.java:63)
at 
org.jboss.iiop.rmi.InterfaceAnalysis.analyzeOperations(InterfaceAnalysis.java:157)
at 
org.jboss.iiop.rmi.ContainerAnalysis.doAnalyze(ContainerAnalysis.java:189)
at 
org.jboss.iiop.rmi.InterfaceAnalysis.doAnalyze(InterfaceAnalysis.java:84)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.iiop.rmi.WorkCacheManager.doTheWork(WorkCacheManager.java:183)
at 
org.jboss.iiop.rmi.WorkCacheManager.getAnalysis(WorkCacheManager.java:106)
at 
org.jboss.iiop.rmi.InterfaceAnalysis.getInterfaceAnalysis(InterfaceAnalysis.java:70)
at org.jboss.proxy.ejb.IORFactory.create(IORFactory.java:278)
at org.jboss.ejb.EntityContainer.createService(EntityContainer.java:278)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalCreate(ServiceMBeanSupport.java:238)
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:220)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:249)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:642)
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:891)
at $Proxy0.create(Unknown Source)
at org.jboss.system.ServiceController.create(ServiceController.java:328)
at sun.reflect.GeneratedMethodAccessor61.invoke(Unknown Source)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:144)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke

[JBoss-dev] [Design of JBoss Portal] - Re: Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread [EMAIL PROTECTED]
You can look at org.jboss.portal.portlet.PortletContainer

You will that that it extends org.jboss.portal.server.Component

That's what you could do.

But it is not JSR168 compliant as JSR168 only specify portlets.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864924#3864924

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864924


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread hurzeler
Thanks for your reply.

Is a JBoss Portal component part of the JSR-168 spec?
Further where in the code should we look? 

Can you give us a headstart?

Thanks!

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864921#3864921

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864921


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread [EMAIL PROTECTED]
You just put your finger on a hot topic.

URL rewriting is a big issue and unfortunately i can't really help you on this.

In JBoss portal we have this notion of component, a portlet is one kind of 
component.

If you don't want to rewrite your application as a portlet you can modify it as 
a component (less work but still some work) and make it live with other 
portlets (or components).

Unfortunately we have no documentation for that so far, so you would have to 
dig into the code.



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864920#3864920

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864920


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-70) NullPointerException in toString()

2005-02-02 Thread Paul Extance (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-70?page=history ]

Paul Extance updated JBAOP-70:
--

Environment: Windows XP, JBoss-AOP v1.1 standalone,   (was: AOP v1.1 
standalone)

> NullPointerException in toString()
> --
>
>  Key: JBAOP-70
>  URL: http://jira.jboss.com/jira/browse/JBAOP-70
>  Project: JBoss AOP
> Type: Bug
> Versions: 1.1
>  Environment: Windows XP, JBoss-AOP v1.1 standalone, 
> Reporter: Paul Extance
> Assignee: Bill Burke

>
>
> JBoss-AOP v1.1 - NullPointerException in toString() 
> In org.jboss.aop.introduction.InterfaceIntroduction
> @version $Revision: 1.9 $
> public String toString()
> {
> return "InterfaceIntroduction:{ name=" + name + "; 
> class=" + classExpr.getClass().getName() + "; ast=" + 
> ast + ";interfaces=" + interfaces + ";mixins=" + mixins 
> + "}";
> }
> Throws an NPE when classExpr is null. The following is 
> an example where this can happen...
> InterfaceIntroduction ii = new InterfaceIntroduction
> (name, new TypeExpressionParser(new StringReader
> ("class("+className+")")).Start() , INTRODUCTIONS);
> AspectManager.instance().addInterfaceIntroduction(ii);
> log.debug("PRE-bind(): Applied! " + ii );
> the last line does an implicit ii.toString() and throws the 
> NPE.
>  

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-71) java.lang.StackOverflowError in execution of INTRODUCED interface methods

2005-02-02 Thread Paul Extance (JIRA)
java.lang.StackOverflowError in execution of INTRODUCED interface methods
-

 Key: JBAOP-71
 URL: http://jira.jboss.com/jira/browse/JBAOP-71
 Project: JBoss AOP
Type: Bug
Versions: 1.1
 Environment: Windows XP, JBoss-AOP v1.1 Standalone
Reporter: Paul Extance
 Assigned to: Bill Burke 
Priority: Critical


When an Interface is INTRODUCED into a class, the ClassAdvisor sets the 
'unadvisedMethod' and the 'advisedMethod' fields on a MethodInfo instance to 
the same value (provided there was no implementation for an Interface's method 
on the original class).

The introduced method invokes the invokeNext() method on an attached 
interceptor-stack and finally invokes the 'unadvisedMethod', which is itself. 
This results in an infinite loop, which raises java.lang.StackOverflowError

There was no such problem in 'jboss-aop_1.0.0-FINAL', since the 
'unadvisedMethod' would be set to null, if there was no implementation for an 
Interface's method on the original class.

Since then, the following change to the ClassAdvisor sets an erroneous value to 
the 'unadvisedMethod' field on the MethodInfo instance

http://cvs.sourceforge.net/viewcvs.py/jboss/jboss-aop/src/main/org/jboss/aop/ClassAdvisor.java?r1=1.95&r2=1.96

To fix the problem, remove 'if (umethod == null) umethod = amethod;' in the 
initializeMethodChain() method of ClassAdvisor.

 


-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-70) NullPointerException in toString()

2005-02-02 Thread Paul Extance (JIRA)
NullPointerException in toString()
--

 Key: JBAOP-70
 URL: http://jira.jboss.com/jira/browse/JBAOP-70
 Project: JBoss AOP
Type: Bug
Versions: 1.1
 Environment: AOP v1.1 standalone
Reporter: Paul Extance
 Assigned to: Bill Burke 


JBoss-AOP v1.1 - NullPointerException in toString() 
In org.jboss.aop.introduction.InterfaceIntroduction
@version $Revision: 1.9 $

public String toString()
{
return "InterfaceIntroduction:{ name=" + name + "; 
class=" + classExpr.getClass().getName() + "; ast=" + 
ast + ";interfaces=" + interfaces + ";mixins=" + mixins 
+ "}";
}

Throws an NPE when classExpr is null. The following is 
an example where this can happen...


InterfaceIntroduction ii = new InterfaceIntroduction
(name, new TypeExpressionParser(new StringReader
("class("+className+")")).Start() , INTRODUCTIONS);
AspectManager.instance().addInterfaceIntroduction(ii);
log.debug("PRE-bind(): Applied! " + ii );

the last line does an implicit ii.toString() and throws the 
NPE.
 


-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Using JBossPortal 2.0 with existing Framework (webwork)

2005-02-02 Thread hurzeler
We have an existing webapp built on webwork and with velocity. It would be 
great if we could start using JBoss Portal and have the webapp running with in 
a window.

Can you point us in the right direction on how to wrap the webapp so that we do 
not have to change any urls within the webapp.

Currently the webapp is run through a servlet (WebWorkVelocityServlet see 
web.xml below).

Do we write a special dispatch portlet? If yes, how do we deal with the urls 
and request?

Thanks for your help.



   
  velocity
  
com.opensymphony.webwork.views.velocity.WebWorkVelocityServlet
   

  velocity 
  *.vm   
   

  velocity 
  *.action   
   
   
  index.vm
   


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864919#3864919

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864919


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: JBoss Cache in Tomcat.

2005-02-02 Thread craigmain
Hi Guys,

I appreciate the response,
Surely this must be a big No.1 use of JBossCache?
Did you not think there would be demand for this?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864915#3864915

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864915


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBAOP-56) Better handling of unused import package by Javassist at runtime

2005-02-02 Thread Ben Wang (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-56?page=history ]

Ben Wang updated JBAOP-56:
--

Description: 
We run into this problem in JBossCache and I have seen this at a customer site 
as well.

In JBossCache, for example, we import a jboss jndi package since we need to 
expose jndi inside JBoss AS. However, this code path is not used when running 
as a standalone. So once it is compiled properly inside JBoss, I can still run 
JBossCache outside the container.

But this will generate error when running JBossCacheAop as a standalone. The 
reason is that Javassist will try to byte-code generate every single import 
package specified in the class. If not found, an exception will be thrown and 
stopped. In the aforementioned example, I should expect to see Javassist to 
just generate a warning against this and keep going.

So I see two possible enhancements:

1. Generate better debugging message so user realize what's going on. Current 
one is burried inside a huge stack trace.

2. Have a switch somewhere (can be inside aopc) that allows the user to carry 
forward.

  was:
We run into this problem in JBossCache and I have seen this at a customer site 
as well.

In JBossCache, for example, we import a jboss jndi package since we need to 
expose jndi inside JBoss AS. However, this code path is not used when running 
as a standalone. So once it is compiled properly inside JBoss, I can still run 
JBossCache outside the container.

But this will generate error when running JBossCacheAop as a standalone. The 
reason is that Javassist will try to byte-code generate every single import 
package specified in the class. If not found, an exception will be thrown and 
stopped. In the aforementioned example, I should expect to see Javassist to 
just generate a warning against this and keep going.

So I see two possible enhancements:

1. Generate better debugging message so user realize what's going on. Current 
one is burried inside a huge stack trace.

2. Have a switch somewhere (can be inside aopc) that allows the user to carry 
forward.

Environment: 
Version: 1.1
Fix Version: 2.0
 (was: 1.1)

> Better handling of unused import package by Javassist at runtime
> 
>
>  Key: JBAOP-56
>  URL: http://jira.jboss.com/jira/browse/JBAOP-56
>  Project: JBoss AOP
> Type: Feature Request
> Versions: 1.1
> Reporter: Ben Wang
> Assignee: Bill Burke
>  Fix For: 2.0

>
>
> We run into this problem in JBossCache and I have seen this at a customer 
> site as well.
> In JBossCache, for example, we import a jboss jndi package since we need to 
> expose jndi inside JBoss AS. However, this code path is not used when running 
> as a standalone. So once it is compiled properly inside JBoss, I can still 
> run JBossCache outside the container.
> But this will generate error when running JBossCacheAop as a standalone. The 
> reason is that Javassist will try to byte-code generate every single import 
> package specified in the class. If not found, an exception will be thrown and 
> stopped. In the aforementioned example, I should expect to see Javassist to 
> just generate a warning against this and keep going.
> So I see two possible enhancements:
> 1. Generate better debugging message so user realize what's going on. Current 
> one is burried inside a huge stack trace.
> 2. Have a switch somewhere (can be inside aopc) that allows the user to carry 
> forward.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: JBoss Cache in Tomcat.

2005-02-02 Thread [EMAIL PROTECTED]
The treecache xml configuration is used for JBoss MBean service deployment not 
just a regular JMX MBean. 

In order to deploy it as a regulat MBean, you will need a wrapper to do that. I 
don't know the exact details under Tomcat. But I imagine it will be like 
obtaining the MBean server and then do a register.

Anyone knows how Tomcat works with the MBean?

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864898#3864898

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864898


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: eviction policy and setEvictionPolicyConfig

2005-02-02 Thread [EMAIL PROTECTED]
Trick is to construct the Element for the eviction policy config. Other than 
that, it should be just a plain call like,

...
cache.setEvictionPolocyConfig(element);
cache.start();

If you can contribute the snippet, I can put it into FAQ. :-)

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864899#3864899

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864899


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Problem with demo

2005-02-02 Thread [EMAIL PROTECTED]
It should not. What knid of envrionment you are running?

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864897#3864897

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864897


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Should it be possible to Serialize objects take from Tre

2005-02-02 Thread [EMAIL PROTECTED]
You will need to substitue a non-aspectized class in this case. When you use 
Collection classes under cach aop, it returns a proxy to the Collection (in 
this case CacheMapInterceptor).

But the proxy is not Serializable because it will need to access the cache 
store internally. So remoting won't make sense. (At least for now. :-)

-Ben


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864896#3864896

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864896


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Relationship between CachePreload and Eviction Policy

2005-02-02 Thread [EMAIL PROTECTED]
I couldn't reproduce your problem from jboss-head by using your xml and do it 
from gui. So chances are it has been fixed in 1.2.1 (of which we will release 
it soon).

Or can you try it out for me under jboss-head?

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864894#3864894

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864894


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Evict all nodes from a cache

2005-02-02 Thread [EMAIL PROTECTED]
If you need to do it, that's ok. But keep in mind that evict operation does not 
replicate, i.e., it only remove the data locally.

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864892#3864892

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864892


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Single or multiple cache instances?

2005-02-02 Thread [EMAIL PROTECTED]
Rafael,

That's great! I'd suggest you just use a single TreeCache instance since it 
looks like the concurrency won't be an issue at first glance.

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864888#3864888

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864888


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Replication?

2005-02-02 Thread [EMAIL PROTECTED]
Have you read through the cache doc and faq? Also go to jgroups site to find 
more info on reliable messaging layer.

-Ben

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864881#3864881

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864881


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - Re: Cache deadlock problem when using TreeCache as 2LC for h

2005-02-02 Thread [EMAIL PROTECTED]
I understand your point. The solution is to provide an optimistic locking 
behavior of which Gavin and us have been discussed for a while. This feature 
has urgency now. :-)

Finally, if it is random deadlock (so your first example above won't work), it 
will simply timeout and rollback the tx. So another alternative for now is to 
reduce the LockAcquistionTimeout in JBossCache from default 15s to, say, 3 secs.

You will get occasional deply but only randomly, that's the theory.

Another point is that this is the problem when you use pessimistic locking 
under tx. Nothing to do with the cache itself.

-Ben


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864878#3864878

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864878


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Closed: (EJBTHREE-46) Backmerge AOP 1.1 to Branch_4_0

2005-02-02 Thread Kabir Khan (JIRA)
 [ http://jira.jboss.com/jira/browse/EJBTHREE-46?page=history ]
 
Kabir Khan closed EJBTHREE-46:
--

Resolution: Done

*Backported latest javassist from jboss-head
*Included necessary AOP 1.1 jars to aop/dist and aspects/dist. i.e.
   aop/dist/jboss-aop.jar (and JDK 5.0 version)
   aspects/dist/jboss-aspect-library.jar (and JDK 5.0 version)
   aspects/dist/jboss-aop.deployer.jar (and JDK 5.0 version)
*made aop/build.xml and aspects/build.xml not compile and buld jars, but use 
the jars mentioned above
*made changes to testsuite org.jboss.test.aop.bean.RemotingTester to compile 
with AOP 1.1

> Backmerge AOP 1.1 to Branch_4_0
> ---
>
>  Key: EJBTHREE-46
>  URL: http://jira.jboss.com/jira/browse/EJBTHREE-46
>  Project: EJB 3.0
> Type: Task
> Versions: Preview 3
> Reporter: Bill Burke
> Assignee: Bill Burke
>  Fix For: Preview 3

>
>


-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBMAIL-26) Unit tests to run on JBoss

2005-02-02 Thread Dawie Malan (JIRA)
 [ http://jira.jboss.com/jira/browse/JBMAIL-26?page=history ]
 
Dawie Malan resolved JBMAIL-26:
---

Resolution: Done

Added junitee and ant target for war. Unit tests defined in src/junitee are 
accessible through url http://localhost:8080/junit-jbmail

> Unit tests to run on JBoss
> --
>
>  Key: JBMAIL-26
>  URL: http://jira.jboss.com/jira/browse/JBMAIL-26
>  Project: JBoss Mail
> Type: Task
>   Components: build
> Reporter: Dawie Malan
> Assignee: Dawie Malan

>
>
> In order to test issues like transactions a procedure is required to run unit 
> tests in-container.
> There are two solutions that I know of - Cactus and junitee 
> (http://www.junitee.org/), junitee seems to be the simplest to manage and use.
> To generate tests for junitee add the test case in the src/hbm folder, build 
> the project, and deploy.  The tests will be accessable on 
> http://localhost:8080/junit-jbmail/.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBMAIL-9) Amend build to (optionally) automatically create database tables using hbm2ddl

2005-02-02 Thread Dawie Malan (JIRA)
 [ http://jira.jboss.com/jira/browse/JBMAIL-9?page=comments#action_12315126 
]
 
Dawie Malan commented on JBMAIL-9:
--

Do we really need this? JBoss har deployer will do it automatically.

> Amend build to (optionally) automatically create database tables using hbm2ddl
> --
>
>  Key: JBMAIL-9
>  URL: http://jira.jboss.com/jira/browse/JBMAIL-9
>  Project: JBoss Mail
> Type: Sub-task
>   Components: build
> Versions: 1.0-M3
> Reporter: Andrew Oliver
> Assignee: Dawie Malan

>
> Original Estimate: 2 hours
> Remaining: 2 hours
>
> In order to properly do feature JBMAIL-8 we need the build process to 
> automatically should the user opt to do so.  This should be a check box or 
> boolean on the "select your database" secreen which should be yes by default.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBMAIL-23) Implement MailStore for bodies

2005-02-02 Thread Dawie Malan (JIRA)
 [ http://jira.jboss.com/jira/browse/JBMAIL-23?page=history ]
 
Dawie Malan resolved JBMAIL-23:
---

 Resolution: Done
Fix Version: (was: 1.0-M3)

> Implement MailStore for bodies
> --
>
>  Key: JBMAIL-23
>  URL: http://jira.jboss.com/jira/browse/JBMAIL-23
>  Project: JBoss Mail
> Type: Feature Request
>   Components: SMTP, POP, Mail Server APIs
> Versions: 1.0-M3
> Reporter: Andrew Oliver
> Assignee: Dawie Malan

>
> Original Estimate: 5 hours
> Remaining: 5 hours
>
> http://www.jboss.org/wiki/Wiki.jsp?page=MailStoreDesign

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Reopened: (JBAOP-56) Better handling of unused import package by Javassist at runtime

2005-02-02 Thread Ben Wang (JIRA)
 [ http://jira.jboss.com/jira/browse/JBAOP-56?page=history ]
 
Ben Wang reopened JBAOP-56:
---


Bill, I am re-opening this issue since I just realized perhaps nothing has been 
done according to Adrian's comment.

I thought I have made myself clear and the comemnts in the forum thread as 
well. But I will re-iterate the problem here again.

Please keep in mind this has nothing to do with JBossCache. Any aop user will 
run into this problem when doing instrumentation.

1. For import package statements that are not used anywhere in the code. True, 
a user needs to clean up. But it can happen that during compile time, the 
package library is in the classpath, but during runtime it is not. 
Aop/Javassist will spew out a huge exception stack that is diccifult to trace 
during load time.

I propose we need to re-package the exception and make it more verbose.

2. For import package statement that is actually used in the code but is not 
needed in particular runtime (for example, I don't need JNDI lookup when I am 
running outside AS). In this case, Javassist will puke if the package is not 
around. Now this is a legitimate use case since, for example, we package 
JBossCache to be run inside and outside of AS with the same jar.

Solution? Offer a flag maybe to allow Javassist to continue even if the package 
is not found.

What do you think?

-Ben

> Better handling of unused import package by Javassist at runtime
> 
>
>  Key: JBAOP-56
>  URL: http://jira.jboss.com/jira/browse/JBAOP-56
>  Project: JBoss AOP
> Type: Feature Request
> Reporter: Ben Wang
> Assignee: Bill Burke
>  Fix For: 1.1

>
>
> We run into this problem in JBossCache and I have seen this at a customer 
> site as well.
> In JBossCache, for example, we import a jboss jndi package since we need to 
> expose jndi inside JBoss AS. However, this code path is not used when running 
> as a standalone. So once it is compiled properly inside JBoss, I can still 
> run JBossCache outside the container.
> But this will generate error when running JBossCacheAop as a standalone. The 
> reason is that Javassist will try to byte-code generate every single import 
> package specified in the class. If not found, an exception will be thrown and 
> stopped. In the aforementioned example, I should expect to see Javassist to 
> just generate a warning against this and keep going.
> So I see two possible enhancements:
> 1. Generate better debugging message so user realize what's going on. Current 
> one is burried inside a huge stack trace.
> 2. Have a switch somewhere (can be inside aopc) that allows the user to carry 
> forward.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBPM-26) bpel archives parsing

2005-02-02 Thread Juan Cantu (JIRA)
 [ http://jira.jboss.com/jira/browse/JBPM-26?page=history ]
 
Juan Cantu resolved JBPM-26:


Resolution: Done

Bpel parser was modified in order to load processes using DOM objects

> bpel archives parsing
> -
>
>  Key: JBPM-26
>  URL: http://jira.jboss.com/jira/browse/JBPM-26
>  Project: JBoss jBPM
> Type: Sub-task
>   Components: BPEL
> Versions: 3.0 DR 1
> Reporter: Juan Cantu
> Assignee: Juan Cantu
>  Fix For: 3.0 DR 1

>
> Original Estimate: 3 days
>Time Spent: 2 days
> Remaining: 1 day
>
> Read a bpel process definition with its corresponding wsdl definition 
> imports. These definitions include partner link types and messages types, 
> properties and aliases.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossCache] - eviction policy and setEvictionPolicyConfig

2005-02-02 Thread acervi_01
does anybody have a sample on how to call setEvictionPolicyConfig?

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864865#3864865

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864865


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Resolved: (JBPM-25) bpel activities xml parsing

2005-02-02 Thread Juan Cantu (JIRA)
 [ http://jira.jboss.com/jira/browse/JBPM-25?page=history ]
 
Juan Cantu resolved JBPM-25:


Resolution: Done

activity parsers where modified to deal with DOM objects

> bpel activities xml parsing
> ---
>
>  Key: JBPM-25
>  URL: http://jira.jboss.com/jira/browse/JBPM-25
>  Project: JBoss jBPM
> Type: Sub-task
>   Components: BPEL
> Versions: 3.0 DR 1
> Reporter: Juan Cantu
> Assignee: Juan Cantu
>  Fix For: 3.0 DR 1

>
> Original Estimate: 2 weeks
>Time Spent: 2 weeks, 3 days
> Remaining: 0 minutes
>
> Perform xml - to graph translation by representing bpel activities as jbpm 
> nodes. BPEL 1.1 defines the following activities:
> Basic Activities:
> -receive, reply, invoke, assign, wait, scope, throw, terminate, compensate, 
> empty
> Structured Activities:
> -sequence, switch, while, pick, flow

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0-jdk-matrix build.78 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-jdk-matrix?log=log20050202093621Lbuild.78
BUILD COMPLETE - build.78Date of build: 02/02/2005 09:36:21Time to build: 50 minutes 57 secondsLast changed: 02/02/2005 00:22:12Last log entry: When a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (10)1.26.4.4modifiedosdchicagoserver/src/main/org/jboss/web/WebServer.javaWhen a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.1.10.2.2modifiedosdchicagoserver/src/main/org/jboss/invocation/pooled/server/PooledInvoker.javaWhen a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.1.14.2.3modifiedstarksmmessaging/src/main/org/jboss/mq/il/uil2/SocketManager.javaInclude the client address in the msg thread pool thread names as well.1.5.6.2modifiedstarksmmessaging/src/main/org/jboss/mq/il/uil2/UILServerILService.javaAdd trace logging of the accepted socket along with any unexpected non-IOException seen in the accept while loop.1.406.2.38modifiedbwang00testsuite/build.xmlUse alternative config name1.406.2.37modifiedbwang00testsuite/build.xmlUse alternative config name1.3.2.4modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/SessionBasedClusteredSession.javaFixed JBAS-1367 session mishandling with clustering1.3.2.4modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/JBossCacheService.javaFixed JBAS-1367 session mishandling with clustering1.3.2.4modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/AttributeBasedClusteredSession.javaFixed JBAS-1367 session mishandling with clustering1.5.2.1modifiedstarksmmessaging/src/etc/server/examples/deploy/sybase-jdbc2-service.xmlIncorporate the LOCK DATAROWS condition in the dbo.JMS_MESSAGES and dbo.JMS_TRANSACTIONS DDL as suggested by John Majerus. Resolves [JBAS-1368] Deadlocks in Message Persistence when working with Sybase.



[JBoss-dev] [Design of JBoss Profiler] - Re: outofmemory exception when multiple clients hit server

2005-02-02 Thread [EMAIL PROTECTED]
How are you using it? Are you using a separate server to analyze the log files?

If you are using a separate instance, the only things I can think about is:
- The profiler (actually any profiler) slows down your application when the 
profiler is activated. Maybe you have queues in your code, and you are 
consuming more memory if the application slows down.

During the execution of the profiler, I don't touch anything in the Java layer 
that would change the behavior (like catching exceptions). I'm only capturing 
the Events from JVMPI and writing them to the .log.gz files.

Well, anyway, you could try to add more memory. (You could do that even to  the 
instance where you are analyzing the logs).


Clebert Suconic

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864859#3864859

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864859


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBAOP-69) InvocationResponse should catch/wrap exceptions

2005-02-02 Thread Bill Burke (JIRA)
InvocationResponse should catch/wrap exceptions
---

 Key: JBAOP-69
 URL: http://jira.jboss.com/jira/browse/JBAOP-69
 Project: JBoss AOP
Type: Feature Request
Versions: 2.0
Reporter: Bill Burke
 Assigned to: Bill Burke 
 Fix For: 2.0


InvocationResponse in dynamicInvoke should catch all thrown exceptions and 
stuff them into InvocationResponse.

The "client" of dynamicInvoke should look in IR to see if an exception is in 
there and rethrow it.  It should also set the response attachments of the 
invocation as well.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Commented: (JBAS-1372) HIbernateContext does not work well with CachedConnectionManager

2005-02-02 Thread janssk1 (JIRA)
 [ 
http://jira.jboss.com/jira/browse/JBAS-1372?page=comments#action_12315118 ]
 
janssk1 commented on JBAS-1372:
---

2005-02-02 14:07:56,287 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Current 
transaction in MI is null
2005-02-02 14:07:56,287 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] 
TX_REQUIRED for createScenarioDefinition timeout=0
2005-02-02 14:07:56,287 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Thread 
came in with tx null
2005-02-02 14:07:56,287 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] Starting 
new tx TransactionImpl:XidImpl[FormatId=257, GlobalId=beantn0019495/243, 
BranchQual=, localId=243]
2005-02-02 14:07:56,287 TRACE 
[org.jboss.ejb.plugins.StatelessSessionInstancePool] Get instance [EMAIL 
PROTECTED] com.alcatel.ni.inspectionsystem.ejb.InspectionConfigurationBean
2005-02-02 14:07:56,307 TRACE 
[org.jboss.resource.connectionmanager.CachedConnectionManager] old stack for 
key: [EMAIL PROTECTED]
2005-02-02 14:07:56,307 TRACE [org.jboss.hibernate.session.HibernateContext] No 
session bound; generating
2005-02-02 14:07:56,307 TRACE [org.jboss.hibernate.session.TransactionSynch] 
Preparing synch [name=java:/hibernate/SessionFactory, [EMAIL PROTECTED]
2005-02-02 14:07:56,307 TRACE 
[org.jboss.resource.connectionmanager.TxConnectionManager] subject: null
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.TxConnectionManager] getManagedConnection 
trackByTx=true tx=TransactionImpl:XidImpl[FormatId=257, 
GlobalId=beantn0019495/243, BranchQual=, localId=243]
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.JBossManagedConnectionPool] supplying 
ManagedConnection from pool: [EMAIL PROTECTED] [EMAIL PROTECTED] handles=0 
lastUse=1107349676247 permit=false trackByTx=false [EMAIL PROTECTED] [EMAIL 
PROTECTED]
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.JBossManagedConnectionPool] Getting 
connection from pool [EMAIL PROTECTED] [EMAIL PROTECTED] handles=0 
lastUse=1107349676247 permit=true trackByTx=true [EMAIL PROTECTED] [EMAIL 
PROTECTED] [InUse/Available/Max]: [1/29/30]
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.TxConnectionManager] enlisting currenttx: 
TransactionImpl:XidImpl[FormatId=257, GlobalId=beantn0019495/243, BranchQual=, 
localId=243], ManagedConnection: [EMAIL PROTECTED] trackByTx=true
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.TxConnectionManager] start, xid: 
XidImpl[FormatId=257, GlobalId=beantn0019495/243, BranchQual=1, localId=243], 
flags: 0
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.CachedConnectionManager] registering 
connection from [EMAIL PROTECTED], connection : [EMAIL PROTECTED], key: [EMAIL 
PROTECTED]
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.CachedConnectionManager] popped object: 
[EMAIL PROTECTED]
2005-02-02 14:07:56,317 TRACE 
[org.jboss.ejb.plugins.StatelessSessionInstancePool] 0/100 Free instance:[EMAIL 
PROTECTED]:XidImpl[FormatId=257, GlobalId=beantn0019495/243, BranchQual=, 
localId=243]#true#class 
com.alcatel.ni.inspectionsystem.ejb.InspectionConfigurationBean
2005-02-02 14:07:56,317 TRACE [org.jboss.ejb.plugins.TxInterceptorCMT] 
TxInterceptorCMT: In finally
2005-02-02 14:07:56,317 TRACE [org.jboss.hibernate.session.TransactionSynch] 
Flushing Session
2005-02-02 14:07:56,317 TRACE 
[org.jboss.resource.connectionmanager.TxConnectionManager] end on xid: 
XidImpl[FormatId=257, GlobalId=beantn0019495/243, BranchQual=1, localId=243] 
called with flags 67108864
2005-02-02 14:07:56,347 TRACE [org.jboss.hibernate.session.TransactionSynch] 
Closing Session
2005-02-02 14:07:56,347 TRACE 
[org.jboss.resource.connectionmanager.TxConnectionManager] connectionClosed 
called [EMAIL PROTECTED]
2005-02-02 14:07:56,347 TRACE 
[org.jboss.resource.connectionmanager.CachedConnectionManager] unregistering 
connection from [EMAIL PROTECTED], object: [EMAIL PROTECTED], key: [EMAIL 
PROTECTED]
2005-02-02 14:07:56,347 INFO  
[org.jboss.resource.connectionmanager.TxConnectionManager] throwable from 
unregister connection
java.lang.IllegalStateException: Trying to return an unknown connection2! 
[EMAIL PROTECTED]
at 
org.jboss.resource.connectionmanager.CachedConnectionManager.unregisterConnection(CachedConnectionManager.java:374)
at 
org.jboss.resource.connectionmanager.TxConnectionManager$TxConnectionEventListener.connectionClosed(TxConnectionManager.java:508)
at 
org.jboss.resource.adapter.jdbc.BaseWrapperManagedConnection.closeHandle(BaseWrapperManagedConnection.java:300)
at 
org.jboss.resource.adapter.jdbc.WrappedConnection.close(WrappedConnection.java:116)
at 
net.sf.hibernate.connection.DatasourceConnectionProvider.closeConnection(DatasourceConnectionProvider.java:64)
at 
net.sf.hibernate.impl.BatcherImpl.closeConnection(BatcherImpl.java:297)
at net.sf.hibernate.impl.SessionImpl.disconnect(SessionImpl.java:3348)

[JBoss-dev] [JBoss JIRA] Created: (JBAS-1372) HIbernateContext does not work well with CachedConnectionManager

2005-02-02 Thread janssk1 (JIRA)
HIbernateContext does not work well with CachedConnectionManager


 Key: JBAS-1372
 URL: http://jira.jboss.com/jira/browse/JBAS-1372
 Project: JBoss Application Server
Type: Bug
  Components: JCA service, Hibernate service  
Versions: JBossAS-4.0.1 Final
 Environment: Jboss 4.0.1
Windows 2000
JDK 1.5
Reporter: janssk1
 Assigned to: Scott M Stark 


I'm trying to use the HibernateContext to create an hibernate session that will 
be automatically flushed on JTA transaction commit. This works well but the 
jboss log files are getting filled with warning messages from the 
CachedConnectionManager. see below for a log file 

I have a simple CMT SSB that gets the hibernate session using HibernateContext, 
updates an object and that' s it. My code does not do any transaction 
management or explicit hibernate flush. 

After the method is finished, the transaction invoker will kick in and commit 
the transaction. Since the transaction contains some synchronization listeners, 
these will be notified appropriatly. Two listeners are available. One listener 
attached by the HibernateContext (this one will flush and close the session) 
and another one added by the CachedConnectionManager. This one will try to 
close the connection if it was not properly closed. When the hibernate listener 
tries to close the session, the cachedconnectionmanager will be notified that 
the connection is closed. This should normally remove the connection from its 
internal caches and also remove the automatic close on transaction termination 
from the current transaction. Since the connection is explicity closed, it does 
not need to be closed implicitly anymore. 

However, this does not work as expected (see the trace). A looked a bit in the 
code and the problem seems to be related to the interceptor stack. In a 
standard jboss installation, an ejb is configured with (among others) a 
transaction interceptor followed by a cachedconnectioninterceptor. The 
cachedconnectioninterceptor sets some context (metaAwareObject = bean) on the 
cachedconnectionmanager. However, in the finally block of the transaction 
interceptor, the cachcedconnection interceptor is already finished and the 
context is no longer available. This explains the 'Trying to return an unknown 
connection' exception. The 'Closing connection for you' message is related (i 
think) to the fact that the current transaction is no longer active when the 
cachedconnection manager is notified of the connection close. It the 
transaction is not active anymore, the cachedconnection manager does not remove 
the automatic close on transaction termination. So after the hibernate listener 
is finshed (connection closed), the other listener attached by the cached 
connection manager kicks in and closes it once more. 


I was able to get rid of all the (unnecessary) warning by simply removing the 
cached connection interceptor. However, i would like to keep it since it 
provides me basic stupidy protection.


-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Trouble - hadcoded MIME type and restrictions

2005-02-02 Thread [EMAIL PROTECTED]
jboss-portal-2.0/server and jboss-portal-2.0/portlet is the implementation of 
JSR-168

jboss-portal-2.0/core is core


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864856#3864856

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864856


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Trouble - hadcoded MIME type and restrictions

2005-02-02 Thread [EMAIL PROTECTED]
arturas, you are right on all points and this is actually what the spec says.

1. yes the portal decides the mime type and this is what the content type 
interceptor does.

2. show only the portlet that can produce this mime type and declare it. it is 
done in portlet.xml in the support tag

3. today our portlet are not designed for that : the portlet should do a 
response.getContentType and according to that content type do q switch/case

4. we will go in that direction, BUT this is not the priority of the project 
today. So the migration is going to be done step by step. Today we have more 
important priorities. So keep cool we're doing it, but in a controlled  
manner

5. you forget something, the dispatching to the aggregqtor (theme) must also be 
based on the content type. Today it will do HTML


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864855#3864855

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864855


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Trouble - hadcoded MIME type and restrictions

2005-02-02 Thread ArturasB
anonymous wrote : We have to add other mime types to the portlets we have 
currently.  First we have to add your code and add support for portlets in the 
portal-2.0/portlet stuff. Then once it works we add it to the core.

Can you tell me what parts belongs to the portal's core ?  I can try to clean 
up it.  I have also noticed there are plenty of HTML in the code - we need to 
remove it also ansd ASAP.

Arturas

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864853#3864853

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864853


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: JMS Facade: delegates and containers

2005-02-02 Thread [EMAIL PROTECTED]
That implementation was incomplete. It was also based on an older version of
Bill's interceptors/proxy.

1) JMSException and log interceptors can be perVM in current aspect speak they
hold not state.
CloseInterceptor needs to be perInstance since it holds the flag as to whether
the object is closing/closed.

2) IIRC, I had most of the object construction (except for the inital 
implementation object
that was inside the ConnectionFactory bound into jndi) in the factory 
interceptor.

3) I only got as far as sending/receiving non-persistent messages. 
I don't think I even committed the receiving messages processing?
I just wanted something to test the backend server and that the approach worked.

Although the approach worked, I wouldn't do it exactly the way I did it in the
prototype. There was a lot of hardwiring where I left some of the problems
(like external interceptor stack configuration) until later.


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864846#3864846

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864846


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBPM-67) add support for process-local variable-type-determination

2005-02-02 Thread Tom Baeyens (JIRA)
 [ http://jira.jboss.com/jira/browse/JBPM-67?page=history ]

Tom Baeyens updated JBPM-67:


Priority: Optional  (was: Major)

> add support for process-local variable-type-determination
> -
>
>  Key: JBPM-67
>  URL: http://jira.jboss.com/jira/browse/JBPM-67
>  Project: JBoss jBPM
> Type: Feature Request
> Reporter: Tom Baeyens
> Assignee: Tom Baeyens
> Priority: Optional

>
>
> now, the way that a process variable is persisted, is configured in the 
> jbpm.types.properties.
> one set of all types determinations for the whole jbpm installation.
> we should allow users to overwrite this mechanism on a process definition 
> level.
> in the process definition, the same information can be given for process 
> variable names.
> 
> or 
> 

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBPM-67) add support for process-local variable-type-determination

2005-02-02 Thread Tom Baeyens (JIRA)
add support for process-local variable-type-determination
-

 Key: JBPM-67
 URL: http://jira.jboss.com/jira/browse/JBPM-67
 Project: JBoss jBPM
Type: Feature Request
Reporter: Tom Baeyens
 Assigned to: Tom Baeyens 


now, the way that a process variable is persisted, is configured in the 
jbpm.types.properties.
one set of all types determinations for the whole jbpm installation.

we should allow users to overwrite this mechanism on a process definition level.
in the process definition, the same information can be given for process 
variable names.



or 




-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-head build.762 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-head?log=log20050202075801Lbuild.762
BUILD COMPLETE - build.762Date of build: 02/02/2005 07:58:01Time to build: 41 minutes 16 secondsLast changed: 02/02/2005 07:29:00Last log entry: Add standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (49)1.13modifiedtdieslerwebservice/src/main/org/jboss/ws/Constants.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.6modifiedtdieslerwebservice/src/main/org/jboss/ws/wsdl/WSDL11Writer.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.14modifiedtdieslerwebservice/src/main/org/jboss/ws/wsdl/WSDL20Writer.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.17modifiedtdieslerwebservice/src/main/org/jboss/ws/wsdl/WSDLDefinitions.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.6modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/LiteralTypeMapping.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.11modifiedtdieslerwebservice/src/main/org/jboss/ws/wsdl/xsd/XSDSchema.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.20modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/desc/ParameterDesc.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.9modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/encoding/JAXBSerializer.javaAdd standard namespace mappings to WSDLDefinition.Those were previously predefined in the NamespaceRegistry1.4modifiedtdieslerwebservice/test/java/org/jboss/test/ws/soap/SOAPContentElementTestCase.javaTest attribute access1.2modifiedtdieslerwebservice/test/java/org/jboss/test/ws/soap/SOAPHeaderTestCase.javaFIXME: JBWS-971.5modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/BasicElementBinding.javarefactored unmarshalling binding metadata1.3modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/NamespaceBinding.javarefactored unmarshalling binding metadata1.5modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/RuntimeDocumentBinding.javarefactored unmarshalling binding metadata1.3modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/XsdBinder.javarefactored unmarshalling binding metadata1.1addedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/AbstractElementBinding.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/BasicElementBindingImpl.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/DelegatingBasicElementBinding.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/DelegatingDocumentBinding.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/DelegatingElementBinding.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/DelegatingNamespaceBinding.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/DelegatingTopElementBinding.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/ElementBindingImpl.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/NamespaceBindingImpl.javarefactored unmarshalling binding metadata1.2modifiedloubyanskycommon/src/main/org/jboss/xml/binding/metadata/unmarshalling/impl/TopElementBindingImpl.javarefactored unmarshalling binding metadata1.4modifiedtdieslerwebservice/test/java/org/jboss/test/ws/header/HeaderDIITestCase.javaRollback changes to SOAPContentElement, better test coverage needed.1.11modifiedtdieslerwebservice/src/main/org/jboss/ws/soap/SOAPContentElement.javaRollback changes to SOAPContentElement, better test coverage needed.1.4modifiedtdieslerwebservice/src/main/org/jboss/ws/server/ServiceEndpoint.javaAssociate current message with MessageContext in SOAPBindingProvider ratherthan its clients.1.33modifiedtdieslerwebservice/src/main/org/jboss/ws/jaxrpc/CallImpl.javaAssociate current message with Me

[JBoss-dev] [JBoss JIRA] Created: (JBPM-66) add collections support to process variables

2005-02-02 Thread Tom Baeyens (JIRA)
add collections support to process variables


 Key: JBPM-66
 URL: http://jira.jboss.com/jira/browse/JBPM-66
 Project: JBoss jBPM
Type: Feature Request
  Components: Core Engine  
Reporter: Tom Baeyens
 Assigned to: Tom Baeyens 
Priority: Optional


we can add support for collections and maps to process variables.
even a merge can be implemented straightforward when the collections are 
updated.

this would require a ListVariableInstance and a MapVariableInstance

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Updated: (JBJMX-82) MBean attribute classes not loaded with deployment classloader

2005-02-02 Thread Tomas Carlsson (JIRA)
 [ http://jira.jboss.com/jira/browse/JBJMX-82?page=history ]

Tomas Carlsson updated JBJMX-82:


Attachment: jmxbug.ear

This ear includes a sar that contains both .class and .java files to 
demonstrate the problem.

Try to deploy the ear => fails
Try to deploy the sar by itself => success


> MBean attribute classes not loaded with deployment classloader
> --
>
>  Key: JBJMX-82
>  URL: http://jira.jboss.com/jira/browse/JBJMX-82
>  Project: JBoss JMX
> Type: Bug
> Versions: JBossAS-3.2.6
>  Environment: Windows XP SP2, j2sdk_1.4.2_07
> Reporter: Tomas Carlsson
> Assignee: Adrian Brock
>  Attachments: jmxbug.ear
>
>
> If an MBean descriptor contains attributes that is of type Class, these 
> classes will not be loaded using the deployment classloader. If using a 
> private  for an ear that contains a sar the deployment 
> will fail if the MBean descriptor references a class that is only available 
> in the ear or sar.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBoss JIRA] Created: (JBJMX-82) MBean attribute classes not loaded with deployment classloader

2005-02-02 Thread Tomas Carlsson (JIRA)
MBean attribute classes not loaded with deployment classloader
--

 Key: JBJMX-82
 URL: http://jira.jboss.com/jira/browse/JBJMX-82
 Project: JBoss JMX
Type: Bug
Versions: JBossAS-3.2.6
 Environment: Windows XP SP2, j2sdk_1.4.2_07
Reporter: Tomas Carlsson
 Assigned to: Adrian Brock 


If an MBean descriptor contains attributes that is of type Class, these classes 
will not be loaded using the deployment classloader. If using a private 
 for an ear that contains a sar the deployment will fail if 
the MBean descriptor references a class that is only available in the ear or 
sar.

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: nukes/portal user domain separation

2005-02-02 Thread [EMAIL PROTECTED]
Moved

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864841#3864841

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864841


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Trouble - hadcoded MIME type and restrictions

2005-02-02 Thread ArturasB
anonymous wrote : 1. What content-type is your user agent expecting? text/wml, 
or something to that effect?

The content type for the WML is "text/vnd.wap.wml".

anonymous wrote : 2. The cms portlet should be able to serve non text/html, 
text, but doesn't presently. Note, it does not serve binaries. Those have to be 
served from the servlet level.

I think the portlet must be invisible if it doesn't support the current MIME 
type.

anonymous wrote : 3. To serve wap content, we'd probably have to take the user 
agent in to account. I've never worked with wap/wml serving, so any input would 
be appreciated, Arturas.

I'm glad to help the team. I'm coding the new content type interceptor and I'm 
going to provide you guys with that. My idea is:

1. Only the portal can set the MIME type.
2. Other parts of portal (pages, portlets)  uses portal's MIME type.
3. Pages and portlets declares MIME types it can handle. Pages and portlets are 
not displayed if the current MIME type is not supported.

For that reason we need to remove all setContentType('text/html').

Regards,
Arturas

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864833#3864833

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864833


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Trouble - hadcoded MIME type and restrictions

2005-02-02 Thread [EMAIL PROTECTED]
Great job Arturas, indeed you are right, for now we have focused on text/html 
so far.

We have to add other mime types to the portlets we have currently.  First we 
have to add your code and add support for portlets in the portal-2.0/portlet 
stuff. Then once it works we add it to the core.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864832#3864832

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864832


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Trouble - hadcoded MIME type and restrictions

2005-02-02 Thread [EMAIL PROTECTED]
1. What content-type is your user agent expecting? text/wml, or something to 
that effect?

2. The cms portlet should be able to serve non text/html, text, but doesn't 
presently. Note, it does not serve binaries. Those have to be served from the 
servlet level.

3. To serve wap content, we'd probably have to take the user agent in to 
account. I've never worked with wap/wml serving, so any input would be 
appreciated, Arturas.



View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864831#3864831

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864831


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Portal isn't started, errors

2005-02-02 Thread ArturasB
anonymous wrote : Thanks Arturas.

You're wellcome ;). It's the community ;).

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864828#3864828

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864828


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: startup with an exception

2005-02-02 Thread [EMAIL PROTECTED]
Sounds like you grabbed the alpha binary or source release. I fixed the paths 
to our JSP lib one day later, unfortunately. You should see a trace in your 
logs about PortalJSP-lib not found, or someting to that effect.

If you check out from HEAD, you're fine. Otherwise, you have to change the jsps 
that are breaking... to this (note the case of PortalJsp is whats wrong):

<%@ page language="java" extends="org.jboss.portal.core.servlet.jsp.PortalJsp" 
%>

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864827#3864827

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864827


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Trouble - hadcoded MIME type and restrictions

2005-02-02 Thread ArturasB
Hi.

I want to share my experience related to the portal.

Today I finally joined to the portal's development process and I changed the 
ContentTypeInterceptor to the one which is more sofisticated. It takes into 
account User Agent.

With the Firefox+UserAgentSwitcher I changed user agent to the
"Nokia6100" which resulted into quite nice exception:


  | java.lang.IllegalArgumentException: Content type not accepted
  | at 
org.jboss.portal.portlet.impl.RenderResponseImpl.setContentType(RenderResponseImpl.java:68)
  | at 
org.jboss.portal.core.portlet.user.UserPortlet.doView(UserPortlet.java:126)
  | at org.jboss.portlet.JBossPortlet.doDispatch(JBossPortlet.java:169)
  | at org.jboss.portlet.JBossPortlet.render(JBossPortlet.java:159)
  | at org.jboss.portlet.JBossPortlet.render(JBossPortlet.java:233)
  | at 
org.jboss.portal.portlet.invocation.DispatcherInterceptor.invokeRequest(DispatcherInterceptor.java:143)
  | at 
org.jboss.portal.portlet.invocation.DispatcherInterceptor.invoke(DispatcherInterceptor.java:171)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.core.portlet.cms.CMSInterceptor.invoke(CMSInterceptor.java:78)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.portlet.invocation.PreferencesInterceptor.invoke(PreferencesInterceptor.java:93)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.server.invocation.component.ContextDispatcherInterceptor$InvokeNextCommand.execute(ContextDispatcherInterceptor.java:94)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:324)
  | at 
org.jboss.portal.server.servlet.CommandServlet.doGet(CommandServlet.java:51)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
  | at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:237)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
  | at 
org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:704)
  | at 
org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:552)
  | at 
org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:510)
  | at 
org.jboss.portal.server.invocation.component.ContextDispatcherInterceptor.invoke(ContextDispatcherInterceptor.java:58)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.core.invocation.AccessControlInterceptor.invoke(AccessControlInterceptor.java:125)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.server.invocation.component.ModeInterceptor.invoke(ModeInterceptor.java:37)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.core.invocation.ConstrainedWindowStateInterceptor.invoke(ConstrainedWindowStateInterceptor.java:51)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.server.invocation.component.ParametersInterceptor.invoke(ParametersInterceptor.java:70)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.server.invocation.component.CacheInterceptor.invoke(CacheInterceptor.java:74)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:239)
  | at org.jboss.portal.server.Component.invoke(Component.java:127)
  | at 
org.jboss.portal.server.invocation.portal.MainDispatcherInterceptor.invoke(MainDispatcherInterceptor.java:159)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.server.invocation.portal.WurflBasedContentTypeInterceptor.invoke(WurflBasedContentTypeInterceptor.java:52)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.core.invocation.ViewInterceptor.invoke(ViewInterceptor.java:58)
  | at 
org.jboss.portal.server.impl.invocation.InvocationImpl.invokeNext(InvocationImpl.java:214)
  | at 
org.jboss.portal.core.invocation.UserContextIntercep

[JBoss-dev] [Design of JBoss Portal] - Re: Portal isn't started, errors

2005-02-02 Thread [EMAIL PROTECTED]
bah! I didn't put that in the wiki obviously! I'll fix it today. Thanks Arturas.

We'll be moving to a new wiki-on-steroids soon enough.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864824#3864824

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864824


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
I'm perhaps not clear ...
When i want to deploy core/, i have a build failed by access refused, but the 
file portal-core.sar is in the core/output/lib/, so I want to know if i can 
copy the portal-core.sar in the standard/deploy/ ... ?

I have the same problem with forums ...

thanks for your help
lnhf

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864822#3864822

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864822


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0-testsuite Build Failed

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0-testsuite?log=log20050202060758
BUILD FAILEDAnt Error Message: /home/cruisecontrol/work/scripts/build-jboss-head.xml:66: The following error occurred while executing this line: /home/cruisecontrol/work/scripts/build-jboss-head.xml:37: Exit code: 1 See tests.log in Build Artifacts for details. JAVA_HOME=/opt/j2sdk1.4.2_05/Date of build: 02/02/2005 06:07:58Time to build: 84 minutes 52 secondsLast changed: 02/02/2005 00:22:12Last log entry: When a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (120)1.26.4.4modifiedosdchicagoserver/src/main/org/jboss/web/WebServer.javaWhen a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.1.10.2.2modifiedosdchicagoserver/src/main/org/jboss/invocation/pooled/server/PooledInvoker.javaWhen a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.1.14.2.3modifiedstarksmmessaging/src/main/org/jboss/mq/il/uil2/SocketManager.javaInclude the client address in the msg thread pool thread names as well.1.5.6.2modifiedstarksmmessaging/src/main/org/jboss/mq/il/uil2/UILServerILService.javaAdd trace logging of the accepted socket along with any unexpected non-IOException seen in the accept while loop.1.406.2.38modifiedbwang00testsuite/build.xmlUse alternative config name1.406.2.37modifiedbwang00testsuite/build.xmlUse alternative config name1.3.2.4modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/SessionBasedClusteredSession.javaFixed JBAS-1367 session mishandling with clustering1.3.2.4modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/JBossCacheService.javaFixed JBAS-1367 session mishandling with clustering1.3.2.4modifiedbwang00tomcat/src/main/org/jboss/web/tomcat/tc5/session/AttributeBasedClusteredSession.javaFixed JBAS-1367 session mishandling with clustering1.5.2.1modifiedstarksmmessaging/src/etc/server/examples/deploy/sybase-jdbc2-service.xmlIncorporate the LOCK DATAROWS condition in the dbo.JMS_MESSAGES and dbo.JMS_TRANSACTIONS DDL as suggested by John Majerus. Resolves [JBAS-1368] Deadlocks in Message Persistence when working with Sybase.1.1.2.1modifiedbwang00testsuite/src/main/org/jboss/test/cluster/web/BindingListener.javaAdded test for session bind/unbind event1.2.2.4modifiedbwang00testsuite/src/main/org/jboss/test/cluster/test/BaseTest.javaAdded test for session bind/unbind event1.2.2.1modifiedbwang00testsuite/src/main/org/jboss/test/cluster/test/SessionEventTestCase.javaAdded test for session bind/unbind event1.2.2.3modifiedbwang00testsuite/src/main/org/jboss/test/cluster/test/SimpleTestCase.javaAdded test for session bind/unbind event1.4.2.5modifiedbwang00testsuite/src/main/org/jboss/test/cluster/test/WebSessionTestCase.javaAdded test for session bind/unbind event1.4.2.1modifiedbwang00testsuite/src/resources/cluster/http/bindSession.jspAdded test for session bind/unbind event1.2.4.1modifiedbwang00testsuite/src/resources/cluster/http/web.xmlAdded test for session bind/unbind event1.9.2.39modifiedbwang00testsuite/imports/test-jars.xmlUpdated1.26.2.7modifiedstarksmtomcat/src/main/org/jboss/web/tomcat/tc5/TomcatDeployer.java- Update to resolve the jboss-web/virtual-host names from the deployment info to the configured Host names. Resolved JBAS-1301.- the cluster manager name must include the vhost in addition to the war context path since there can be multiple deployments with the same context path when1.4.6.1modifiedstarksmtestsuite/src/resources/deadlock/META-INF/ejb-jar.xmlFix the invalid direct lookup of the local home by adding an ejb-local-ref1.2.6.1modifiedstarksmtestsuite/src/resources/jca/ejb/META-INF/ejb-jar.xmlFix the invalid direct lookup of the local home by adding an ejb-local-ref1.2.6.1modifiedstarksmtestsuite/src/main/org/jboss/test/jca/ejb/UnshareableConnectionSessionBean.javaFix the invalid direct lookup of the local home by adding an ejb-local-ref1.5.16.1modifiedstarksmtestsuite/src/main/org/jboss/test/perf/ejb/SessionBean.javaFix the invalid direct lookup of the local home by adding an ejb-local-ref1.4.6.1modifiedstarksmtestsuite/src/resources/secure-perf/META-INF/ejb-jar.xmlFix the invalid direct lookup of the local home by adding an ejb-local-ref1.12.6.1modifiedstarksmtestsuite/src/resources/perf/META-INF/ejb-jar.xmlFix the invalid direct lookup of the local home by adding an ejb-local-ref1.7.6.1modifiedstarksmtestsuite/src/main/org/jboss/test/deadlock/bean/StatelessSessionBean.javaFix the inv

[JBoss-dev] [Design of JBoss Eclipse IDE (dev)] - Re: JBossIDE 1.4.1 and JBossIDE 1.5 Preview released

2005-02-02 Thread [EMAIL PROTECTED]
Oops! Forgot to post links to the download areas.

JBossIDE 1.4.1 Download Area:
http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=72248&release_id=300969

JBossIDE 1.5 Preview Download Area:
http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=72248&release_id=300998

You can also get a full description and version compatibility chart for each 
file on the JBossIDE Homepage:
http://www.jboss.com/products/jbosside

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864813#3864813

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864813


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Eclipse IDE (dev)] - Re: Class not found on 'tutorial.ejb.FiboBean' error

2005-02-02 Thread karsteno
@jbossUser1

If you have checked the jar, war and ear-files and one file is missed, check 
whether you copied some charakters to much or to less from the tutorial to the 
properties of your project-configuration.

Project -> Properties -> Packaging Configurations and
Project -> Properties -> XDoclet Configurations 

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864812#3864812

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864812


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Profiler] - Re: outofmemory exception when multiple clients hit server

2005-02-02 Thread jieshengz
It turns out if application exception is throwed in my application(which is 
caught and ahndled by my applicaiton ), the outmemory error occurs. Therefore I 
suspect that this is a jboss profiler bug which can not handle the exception 
event correctly


View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864806#3864806

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864806


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-4.0 build.351 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-4.0?log=log20050202051331Lbuild.351
BUILD COMPLETE - build.351Date of build: 02/02/2005 05:13:31Time to build: 26 minutes 56 secondsLast changed: 02/02/2005 00:22:12Last log entry: When a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (2)1.26.4.4modifiedosdchicagoserver/src/main/org/jboss/web/WebServer.javaWhen a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.1.10.2.2modifiedosdchicagoserver/src/main/org/jboss/invocation/pooled/server/PooledInvoker.javaWhen a service fails to bind to a port because of java.net.BindException, append the port number to the error message so that basic users can figure out which port is already in use.



[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
Hello,
I have deployed with success build/. I 'm deploying core/ but i have a problem 
with accees refused ... can i copy by myself the file portal-cor
e.sar in the reportory ?


  | Executing 
C:\JavaSoft\eclipse\workspace\jboss-portal-2.0\core\..\tools\bin\ant.b
  | at  -logger org.apache.tools.ant.NoBannerLogger deploy
  | Buildfile: build.xml
  | 
  | _buildmagic:init:
  | Trying to override old definition of task property
  | 
  | _default:compile-classes:
  |[depend] Deleted 0 out of date files in 4 seconds
  | 
  | compile:
  | [jmxdoclet] 2 fÃvr. 2005 11:57:04 xdoclet.XDocletMain start
  | [jmxdoclet] INFO: Running 
  | [hibernatedoclet] 2 fÃvr. 2005 11:57:54 xdoclet.XDocletMain start
  | [hibernatedoclet] INFO: Running 
  | 
  | deploy:
  |  [copy] Copying 1 file to C:\JavaSoft\JBoss-4.0.0\server\standard\deploy
  | 
  | BUILD FAILED
  | file:C:/JavaSoft/eclipse/workspace/jboss-portal-2.0/core/build.xml:298: 
Failed t
  | o copy 
C:\JavaSoft\eclipse\workspace\jboss-portal-2.0\core\output\lib\portal-cor
  | e.sar to C:\JavaSoft\JBoss-4.0.0\server\standard\deploy\portal-core.sar due 
to C
  | :\JavaSoft\JBoss-4.0.0\server\standard\deploy\portal-core.sar (AccÃs 
refusÃ)
  | 
  | Total time: 1 minute 24 seconds
  | 

lnhf

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864805#3864805

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864805


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Profiler] - outofmemory exception when multiple clients hit server

2005-02-02 Thread jieshengz
I used  jbossprofile to prfoile my jboss server. When I gave a light loading 
the server, everything works fine. However, when I start to hit the server 
heavily, for example 10 clients at the same time. There are a lot of outmemory 
exception. However, without Jboss-profiler, my system can handle 10 clients 
without any problem. Is this jbossprofiler bug or bug from my application?

My profile configuration is like
JAVA_OPTS="-XrunjbossInspector:/profile,include=com.xxx,ignore=*,start=com.xxx"

Help is really appreciated

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864798#3864798

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864798


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Portal isn't started, errors

2005-02-02 Thread ArturasB
anonymous wrote : You are missing jboss-cache.jar in the lib directory, you 
will also miss jgroups.jar.
  | 
  | Please refer to the user guide.

Thanks, Thomas.  I thought the wiki article is enough ;)..

Arturas

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864797#3864797

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864797


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
Okay,
I'm very sorry ... I think that directories where ordered by name ...
Thank you for all ...
lnhf

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864794#3864794

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864794


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Portal isn't started, errors

2005-02-02 Thread [EMAIL PROTECTED]
java.lang.NoClassDefFoundError: org/jboss/cache/TransactionManagerLookup

You are missing jboss-cache.jar in the lib directory, you will also miss 
jgroups.jar.

Please refer to the user guide.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864796#3864796

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864796


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread [EMAIL PROTECTED]
jboss-portal is different than jboss-portal-2.0

If you check out jboss-portal you will miss some files (thirdparty stuff at 
least).

It is just the way the CVS is organized.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864792#3864792

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864792


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Portal isn't started, errors

2005-02-02 Thread ArturasB
Hi everyone.

Can someone comment on this ?

11:58:39,853 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
  | MBeans waiting for other MBeans:
  | ObjectName: portal:service=Module,type=User
  |  state: CREATED
  |  I Depend On:  jboss.har:service=Hibernate
  | 
  |  Depends On Me:
  | ObjectName: portal:service=Module,type=Role
  |  state: CREATED
  |  I Depend On:  jboss.har:service=Hibernate
  | 
  |  Depends On Me:
  | ObjectName: portal:service=ServerManager
  |  state: CREATED
  |  I Depend On:  jboss.har:service=Hibernate
  |  portal:service=BootStrapContext
  |  portal:service=Configuration
  |  portal:service=ObjectFactory
  |  portal:service=Reactor
  | 
  |  Depends On Me:  portal:service=Deployer,type=Adapter
  |  portal:service=Transformer,type=PortletApp
  |  portal:service=MetaDataBuilder,type=PortletApplication
  |  portal:service=MetaDataBuilder,type=Portlet
  |  portal:service=Transformer,type=Portal
  |  portal:service=MetaDataBuilder,type=Portal
  |  portal:service=Transformer,type=Page
  |  portal:service=MetaDataBuilder,type=Page
  |  portal:service=Transformer,type=Instance
  |  portal:service=MetaDataBuilder,type=Instance
  |  portal:service=Transformer,type=Window
  |  portal:service=MetaDataBuilder,type=Window
  |  portal:service=Deployer,type=JBoss
  | 
  | ObjectName: portal:service=Deployer,type=Adapter
  |  state: CREATED
  |  I Depend On:  jboss.web:service=WebServer
  |  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=Transformer,type=PortletApp
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=MetaDataBuilder,type=PortletApplication
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=MetaDataBuilder,type=Portlet
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=Transformer,type=Portal
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=MetaDataBuilder,type=Portal
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=Transformer,type=Page
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=MetaDataBuilder,type=Page
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=Transformer,type=Instance
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=MetaDataBuilder,type=Instance
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=Transformer,type=Window
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=MetaDataBuilder,type=Window
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: portal:service=Deployer,type=JBoss
  |  state: CREATED
  |  I Depend On:  portal:service=ServerManager
  | 
  |  Depends On Me:
  | ObjectName: jboss.har:service=Hibernate
  |  state: FAILED
  |  I Depend On:  jboss.jca:name=PortalDS,service=DataSourceBinding
  | 
  |  Depends On Me:  portal:service=Module,type=User
  |  portal:service=Module,type=Role
  |  portal:service=ServerManager
  | java.lang.NoClassDefFoundError: org/jboss/cache/TransactionManagerLookup
  | 
  | MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM:
  | ObjectName: jboss.har:service=Hibernate
  |  state: FAILED
  |  I Depend On:  jboss.jca:name=PortalDS,service=DataSourceBinding
  | 
  |  Depends On Me:  portal:service=Module,type=User
  |  portal:service=Module,type=Role
  |  portal:service=ServerManager
  | java.lang.NoClassDefFoundError: org/jboss/cache/TransactionManagerLookup
  | 

What is missing ?

Thanks in advance.

Arturas

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864793#3864793

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864793


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
I don't understand ...
With  CVS, I am connected to pserver:[EMAIL PROTECTED]:/cvsroot/jboss ...
I have a lot od repertories in HEAD, and I have downloaded jboss-portal ...

lnhf

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864789#3864789

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864789


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] jboss-3.2-jdk-matrix build.45 Build Successful

2005-02-02 Thread qa

View results here -> http://cruisecontrol.jboss.com/cc/buildresults/jboss-3.2-jdk-matrix?log=log20050202034238Lbuild.45
BUILD COMPLETE - build.45Date of build: 02/02/2005 03:42:38Time to build: 37 minutes 26 secondsLast changed: 02/01/2005 21:08:31Last log entry: Include the client address in the msg thread pool thread names as well.




    Unit Tests: (0)    Total Errors and Failures: (0) 
 Modifications since last build: (4)1.1.4.18modifiedstarksmmessaging/src/main/org/jboss/mq/il/uil2/SocketManager.javaInclude the client address in the msg thread pool thread names as well.1.1.4.10modifiedstarksmmessaging/src/main/org/jboss/mq/il/uil2/UILServerILService.javaAdd trace logging of the accepted socket along with any unexpected non-IOException seen in the accept while loop.1.3.4.2modifiedjhaynieremoting/src/main/org/jboss/remoting/loading/ClassByteClassLoader.java- JBREM-53 - problem in recursion of findClass that's not necessary1.1.2.5modifiedstarksmmessaging/src/etc/server/examples/deploy/sybase-jdbc2-service.xmlIncorporate the LOCK DATAROWS condition in the dbo.JMS_MESSAGES and dbo.JMS_TRANSACTIONS DDL as suggested by John Majerus. Resolves [JBAS-1368] Deadlocks in Message Persistence when working with Sybase.



[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread [EMAIL PROTECTED]
The module name is jboss-portal-2.0
It's in the doc

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864786#3864786

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864786


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
No I haven't this directory ... 

But I don't understand :
I have opened HEAD/
and I have checked out jboss-portal.
And that's all.
I tried to deploy ...

What have I missed ... ?

lnhf

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864785#3864785

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864785


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread [EMAIL PROTECTED]
Check that the following directory exists:

C:/JavaSoft/eclipse/workspace/jboss-portal/thirdparty/sun-javacc/lib

If not, you didn't checkout correctly

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864783#3864783

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864783


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
At this line 110 of the build.xml :


  | 
  | 

I need to add something ... ?
lnhf

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864784#3864784

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864784


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
Ok, 
Always error ... build failed, my log :

Executing C:\JavaSoft\eclipse\workspace\jboss-portal\build\..\tools\bin\ant.bat
  |  -logger org.apache.tools.ant.NoBannerLogger
  | Buildfile: build.xml
  | 
  | _buildmagic:init:
  | Trying to override old definition of task property
  | 
  | configure-project:
  |  [echo] groups:  default
  |  [echo] modules: format,common,server,api,portlet,cms,core,forums
  | 
  | _buildmagic:modules:most:
  | 
  |  ==
  |  ==
  |  ==  Executing 'most' in module 'format'...
  |  ==
  |  ==
  | 
  | BUILD FAILED
  | file:C:/JavaSoft/eclipse/workspace/jboss-portal/format/build.xml:110: 
JavaCC hom
  | e must be a valid directory.
  | 
  | Total time: 6 seconds

lnhf

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864782#3864782

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864782


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread [EMAIL PROTECTED]
You need to build from the 'build' directory first.

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3864781#3864781

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3864781


---
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
___
JBoss-Development mailing list
JBoss-Development@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of JBoss Portal] - Re: Setting up environment (Eclipse) for the development of

2005-02-02 Thread lnhf
Hi,
Yes i have copies the 2 jars (jgroups and jboss-cache) from server/all/lib to 
server/standard/lib, but i have always my errors :


  | 
  | configure:
  | 
  | configure-libraries:
  | 
  | configure-modules:
  | 
  | configure-defaults:
  | 
  | configure-tools:
  | 
  | _configure:explode:task:
  | 
  | init:
  | 
  | generate-classes:
  | 
  | _default:compile-classes:
  |[depend] Deleted 0 out of date files in 1 seconds
  | [javac] Compiling 146 source files to 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\output\classes
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\CorePortal.java:15:
 package net.sf.hibernate does not exist
  | [javac] import net.sf.hibernate.SessionFactory;
  | [javac] ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\CorePortal.java:16:
 package net.sf.hibernate.persister does not exist
  | [javac] import net.sf.hibernate.persister.ClassPersister;
  | [javac]   ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\CorePortal.java:19:
 package org.jboss.portal.server does not exist
  | [javac] import org.jboss.portal.server.Portal;
  | [javac]^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\CorePortal.java:20:
 package org.jboss.portal.server.metadata does not exist
  | [javac] import org.jboss.portal.server.metadata.PortalMetaData;
  | [javac] ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\CorePortal.java:26:
 cannot resolve symbol
  | [javac] symbol  : class Portal 
  | [javac] location: class org.jboss.portal.core.CorePortal
  | [javac] public class CorePortal extends Portal
  | [javac] ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\CorePortal.java:29:
 cannot resolve symbol
  | [javac] symbol  : class PortalMetaData 
  | [javac] location: class org.jboss.portal.core.CorePortal
  | [javac]public CorePortal(PortalMetaData portalMD, String name)
  | [javac]  ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\PageRepository.java:17:
 package org.apache.log4j does not exist
  | [javac] import org.apache.log4j.Logger;
  | [javac] ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\PageRepository.java:18:
 package org.jboss.portal.common.metadata does not exist
  | [javac] import org.jboss.portal.common.metadata.MetaData;
  | [javac] ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\PageRepository.java:20:
 package org.jboss.portal.server does not exist
  | [javac] import org.jboss.portal.server.ServerObjectID;
  | [javac]^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\PageRepository.java:21:
 package org.jboss.portal.server.plugins does not exist
  | [javac] import org.jboss.portal.server.plugins.PluginService;
  | [javac]^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\PageRepository.java:28:
 cannot resolve symbol
  | [javac] symbol  : class PluginService 
  | [javac] location: class 
org.jboss.portal.core.plugins.page.PageRepository
  | [javac]extends PluginService
  | [javac]^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\PageRepository.java:31:
 cannot resolve symbol
  | [javac] symbol  : class Logger 
  | [javac] location: class 
org.jboss.portal.core.plugins.page.PageRepository
  | [javac]private static final Logger log = 
Logger.getLogger(PageRepository.class);
  | [javac] ^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\Page.java:18:
 package org.jboss.portal.server does not exist
  | [javac] import org.jboss.portal.server.PortalServer;
  | [javac]^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\page\Page.java:19:
 package org.jboss.portal.server does not exist
  | [javac] import org.jboss.portal.server.ServerObject;
  | [javac]^
  | [javac] 
C:\JavaSoft\eclipse\workspace\jboss-portal\core\src\main\org\jboss\portal\core\plugins\pa