[Design of JBoss Web Services] - Upgrading jboss-bootstrap and the WS
by ALRubinger
While upgrading jboss-bootstrap in AS to the new implementation, I've hit:
Caused by: java.lang.NullPointerException
| at org.jboss.wsf.stack.jbws.WSDLFilePublisher.getPublishLocation(WSDLFilePublisher.java:338)
| at org.jboss.wsf.stack.jbws.WSDLFilePublisher.publishWsdlFiles(WSDLFilePublisher.java:103)
| at org.jboss.wsf.stack.jbws.PublishContractDeploymentAspect.start(PublishContractDeploymentAspect.java:50)
| at org.jboss.wsf.framework.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:129)
| at org.jboss.wsf.container.jboss50.deployer.ArchiveDeployerHook.deploy(ArchiveDeployerHook.java:76)
Where WSDLFilePublisher@338:
locationFile = new File(serverConfig.getServerDataDir().getCanonicalPath() + "/wsdl/" + archiveName);
The "serverConfig" in place here is a org.jboss.wsf.spi.management.ServerConfig, which I'll need to retool to match up with:
http://anonsvn.jboss.org/repos/jbossas/projects/bootstrap/trunk/spi-as/sr...
So the steps we need to take are:
1) Identify the right version of WS subprojects to alter
2) Make the changes
3) Cut interim internal releases (ie. some *"-alpha-1")
4) Bring the interim releases into AS component-matrix/pom.xml in my bootstrap upgrade branch[1].
5) After we merge into AS Branch_5_x, cut new WS releases @ proper level (GA implicit).
I'm happy to make the changes required, but given the extensive nature of the WS projects would like some assistance:
1) Identifying where the changes should go
2) Running the appropriate WS TestSuites
Thanks. :)
S,
ALR
[1] - http://anonsvn.jboss.org/repos/jbossas/branches/Branch_5_x_BootstrapLegac...
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231659#4231659
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231659
15 years, 7 months
[Design of JBoss Web Services] - [Urgent]: EJBs and web services in Jboss a/s 4.2.2 GA
by veneetr
Hi all,
I have a Application that relies on EJBs for Business Logic
I basically use the Jboss A/s server for the same and now there is a need to Expose these methods through a web service
so that our web team can make use of the same
the issue that i am facing is that
currently i have implemented a End point interface that my Bean class implements so that i can expose
my bean methods to the web dev team
Req:
I want to create a seperate Bean which resides in the same JVM as my Application bean and so that i can invoke the businees methods and the new Bean acts like a pluggable component for future end use
After reading a lot of articles it's stil not clear to me as in how to achieve inter bean communication as in how can two beans Communicate effectively while being Loosely coupled at the same time
If you can suggest anything on the same it would be very helpful
--
thanks
veneet
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231078#4231078
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231078
15 years, 8 months