[JBoss Portal] - Deploying JBoss portal 2.4-CR3 on JBoss AS 4.0.4-GA
by kirchhof
Hi everyone,
I tried to find the answer to this in previous posts, but didn't succeed, please forgive me if it has been answered already (in which case what's the link?).
My environment:
JBoss Portal Version: 2.4.0-CR3 (downloaded)
JBoss AS Version: JBoss AS 4.0.4-GA with ejb3 (installer)
Database Vendor and Version: MySQL 5.0
JDBC Connector and Version: Connector/J 3.0
OS: Red Hat Enterprise Linux 4.0
Describe the problem:
I would like to install JBoss Portal 2.3 on JBoss AS 4.0.4 with ejb3.
The problem is, to get the AS with ejb3 I MUST use the installer, BUT
in the user guide for JBoss Portal the following warning is given in the "Installation" section:
Warning
Make sure to download the JBoss AS Zip version. DO NOT ATTEMPT to deploy JBoss Portal on the installer version of JBoss AS! We are currently working on aligning the Application installer with JBoss Portal.
QUESTIONS:
Is this possible or is the ejb3 option incompatible the JBoss Portal?
If possible what's the best way to do this:
Option A:
1) Install JBoss AS from the the ZIP file
2) Install JBoss Portal
3) Install ejb3 (how?)
Option B:
1) Install JBoss AD from installer with ejb3 options
2) create new deployment configuration compatible with JBoss portal (how?)
3) deploy JBoss portal in new configuration
Option C?
Thank you in advance for your help with this matter.
Florian
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966084#3966084
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966084
19 years, 8 months
[JBoss jBPM] - DelegationException. ClassCastException..
by rafaeldiaz923
Hi
I have some processes defined and i have an object that is created in the first node and seted as a process variable using setVariable method
The problem is when I try to load the object in the next node i get an DelegationException caused by ClassCastException
My object class is:
| public class ContentPackage implements Serializable{
|
| private static final long serialVersionUID = 2175042348064562851L;
| static Logger logger = Logger.getLogger(ContentPackage.class);
|
| private transient Document docPublish;
| //private List instancesContentManagement;
|
|
| public ContentPackage(String idContent, String type){
|
| docPublish = XMLHelper.createDocument();
| Element root = (Element)docPublish.appendChild(docPublish.createElement("documentPublish"));
|
| Element header = docPublish.createElement("header");
| root.appendChild(header);
|
| Element idCont = docPublish.createElement("idContent");
| idCont.appendChild(docPublish.createTextNode(idContent));
| header.appendChild(idCont);
|
| Element contentType = docPublish.createElement("contentType");
| contentType.appendChild(docPublish.createTextNode(type));
| header.appendChild(contentType);
|
| Element date = docPublish.createElement("createdDate");
| date.appendChild(docPublish.createTextNode(ProjectUtil.dateFormat(new Date(), "dd-MM-yyyy HH:mm:ss.S")));
| header.appendChild(date);
|
| Element body = docPublish.createElement("body");
| root.appendChild(body);
|
| }
|
| public Document getDocPublish() {
| return docPublish;
| }
|
| public void setDocPublish(Document docPublish) {
| this.docPublish = docPublish;
| }
| }
|
I thought that the problem was that the document (w3c) field was not serializable and i put the filed transient and defined wrtiteObject and readObject methods, but nothing.. the same error...
ANY IDEA ?????
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3966083#3966083
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3966083
19 years, 8 months