[Design of Messaging on JBoss (Messaging/JBoss)] - Re: Messaging 1.2.0 integration with JBoss 5.0.Beta
by scott.stark@jboss.org
Your repository.jboss.com/jboss/web/2.0.0.snapshot contents are out of date then. The current version is compatible with 1.1.0.jboss:
| [starksm@succubus 2.0.0.snapshot]$ cat component-info.xml
| <project name="jboss/web-component-info">
|
| <component id="jboss/web"
| licenseType="lgpl"
| version="2.0.0.snapshot"
| description="JBoss Web 2.0.0">
| <artifact id="annotations-api.jar"/>
| <artifact id="el-api.jar"/>
| <artifact id="jasper-jdt.jar"/>
| <artifact id="jbossweb.jar"/>
| <artifact id="jbossweb-extras.jar"/>
| <artifact id="jsp-api.jar"/>
| <artifact id="servlet-api.jar"/>
| <artifact id="jbossweb-src.zip"/>
|
| <import componentref="apache-logging">
| <compatible version="1.0.3"/>
| <compatible version="1.0.4jboss"/>
| <compatible version="1.0.4.1jboss"/>
| <compatible version="1.0.5.GA-jboss"/>
| <compatible version="1.0.5.SP1-jboss"/>
| <compatible version="1.1"/>
| <compatible version="1.1.0.jboss"/>
| </import>
| <export>
| <include input="annotations-api.jar"/>
| <include input="jasper-jdt.jar"/>
| <include input="jbossweb.jar"/>
| <include input="jbossweb-extras.jar"/>
| <include input="jsp-api.jar"/>
| <include input="servlet-api.jar"/>
| <include input="el-api.jar"/>
| </export>
| </component>
|
| </project>
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4019117#4019117
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4019117
19 years, 1 month
[Design of JBoss ESB] - Seam on JBossESB
by burrsutter
There has been plenty of speculation on how the worlds of Seam and SOA might come together. Gavin and I recently met (in the real world) to discuss this topic and came up with at least one possible concrete actionable idea.
The objective of Seam integration into the JBoss ESB is to allow a Seam component to behave as a service. A service for JBoss ESB is implemented as a custom action which can be the service itself or simply act as a proxy to the local/remote business service. The business_service quickstart illustrates this concept of using an action as a proxy to an EJB3 stateless session bean deployed on the AS.
The proposal here is to have an "out of the box" action that will provide Seam integration to get the creative juices flowing.
The possible jbossesb.xml:
| <action class="org.jboss.soa.esb.actions.SeamProxy" name="MySeamComponent"/>
The name here should be available to the action (SeamProxy) so that it can be mapped to the @Name of Seam (the action performs the JNDI lookup internally).
We are also proposing a new Action interface called -MarshalledActionProcessor with a single method signature that looks something like:
public Object process(Object[] objects) throws ActionProcessingException;
The purpose of this interface is so that the Seam team can implement something that deals with "objects" instead of Messages. It will be our (ESB team) job to transform the Message into an object array on the way in and back to a Message on the way out.
Now, this isn't the final design, just a starting point to kickoff the debate.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4019077#4019077
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4019077
19 years, 1 month
[Design of JBoss Wiki] - Downloaded the source and wouldnt build from Maven
by tony.herstell@gmail.com
Downloaded the source.
Downloaded maven (first time user)
tried mvn all and got
| C:\jbosswiki-beta2-2.4>mvn all
| [INFO] Scanning for projects...
| [INFO] ------------------------------------------------------------------------
| [ERROR] BUILD FAILURE
| [INFO] ------------------------------------------------------------------------
| [INFO] Invalid task 'all': you must specify a valid lifecycle phase, or a goal in the format plugin:goal or pluginGroupId:pluginArtifactId:pluginVersion:goal
| [INFO] ------------------------------------------------------------------------
| [INFO] For more information, run Maven with the -e switch
| [INFO] ------------------------------------------------------------------------
| [INFO] Total time: < 1 second
| [INFO] Finished at: Tue Feb 20 12:12:06 NZDT 2007
| [INFO] Final Memory: 1M/2M
| [INFO] ------------------------------------------------------------------------
|
Any suggestions?
(I messed around for a while and googled with no luck).
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4019068#4019068
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4019068
19 years, 1 month