Susana Quintana [http://community.jboss.org/people/sahra] replied to the discussion
"@Autowiring of beans from Spring applicationcontext"
To view the discussion, visit: http://community.jboss.org/message/542176#542176
--------------------------------------------------------------
Marius,
As you point out I'm not using EJB, but I will try later the sugesstion from Daniel. I just want to point out that as Daniel say the configuration of the deplopyer and spring beans with snowdrop has been very straight forward until I get to the @spring annotation.
Thanks everyone for the help.
Susana
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/542176#542176]
Start a new discussion in Spring Integration at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
saravanan veda [http://community.jboss.org/people/vesuinfo1984] replied to the discussion
"Portal with customized header.jsp and tabs.jsp"
To view the discussion, visit: http://community.jboss.org/message/542161#542161
--------------------------------------------------------------
Hi,
I am trying the same,
I have tried a lot but im unable to get my custom header file,
only by updating the jboss-portal.sar/META-INF/jboss-service.xml header interceptor i am able to get my custom header, but it affects all other applications which is deployed in my jboss portal container,
I am not sure whether is there is way to bring in the custom header, please help, is that possibel or else i would stop trying the same which is not feasible in jboss portal server.
Thanks,
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/542161#542161]
Start a new discussion in JBoss Portal at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
HuiSheng Xu [http://community.jboss.org/people/rebody] replied to the discussion
"Swimlanes problem in Process Execution"
To view the discussion, visit: http://community.jboss.org/message/542157#542157
--------------------------------------------------------------
Hi Khaled,
This caused by the execution only find swimlaneImpl in its own scope. If it can't find the related swimlane, it won't propragate to look for swimlane defined in parent scope.
I don't very clear for the swimlane behaviour between parent and children executions. So I think I could create a patch and make some discussion about this.
By the way, please use zip to compress the attachment, not rar.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/542157#542157]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
HuiSheng Xu [http://community.jboss.org/people/rebody] replied to the discussion
"Process instance migration problem"
To view the discussion, visit: http://community.jboss.org/message/542156#542156
--------------------------------------------------------------
Hi Sergey,
After migrate processinstance to a new processDefinition, you should update the modifed processInstance to database. Otherwise database couldn't know the processInstance has changed. So it seems the migration operation has no effect.
You could use Command to do this:
processEngine.execute(new Command() {
public Object execute(Environment env) {
new DefaultMigrationHandler().migrateInstance(pd,
pi, new MigrationDescriptor());
env.get(Session.class).update(pi);
return null;
}
});
I attached the testcase. Please have a try. Thank you.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/542156#542156]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]