[Design of JBoss jBPM] - Re: Modelling notation - a Business Analyst perspective
by bazoo
I think the layering approach could work well. Indeed, it would really enable the models as a means of communication. If a model can be simple enough for the business to sign off, but descriptive enough to fill in the technical details the app or developer needs then we are talking about an ideal scenario.
This would also allow project teams to pick and choose the approach they take on a project-by-project basis. Sometimes a quick and dirty model might be the way to go, where a concept needs to be quickly proved or disproved. On the other hand, on bigger projects it might be more appropriate to spend more time on the model, and ensure that communication between analysis and development teams is crystal clear.
One caveat: I have seen situations where the delivery of a solution takes a back seat and modelling becomes an end in itself. Perhaps this is something that should be thought about as part of BPM project methodology rather than the notation, but it would be great if the notation could limit such extravagance.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992735#3992735
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992735
18 years, 1 month
[Design of JBoss Web Services] - jbossWs document/literal
by tobake
Hi!
I trying to get this dummyMethod to work with document/literal
public class Test {
|
| @WebService(name="testWS", serviceName="TestService")
| @SOAPBinding(style=SOAPBinding.Style.DOCUMENT,
| use=SOAPBinding.Use.LITERAL,
| parameterStyle = SOAPBinding.ParameterStyle.BARE)
|
| @WebMethod
| public String dummyService(String input, String input2) {
| log.debug("dummyService was called");
| return "Okey I am here";
| }
| }
This did work when I only had one input parameter. But when testing with multiple inputs I get the following error when trying to deploy to jboss.
12:17:44,644 ERROR [MainDeployer] Could not create deployment: file:/C:/jboss-4.0.5.GA/server/default/tmp/deploy/tmp14496icr3.ear-contents/icr3.war
org.jboss.ws.WSException: Attempt to map multiple operation inputs to: {http://webservice.icr3.com/jaws}dummyService
I have tried parameterStyle.WRAPPED and then it deploys but in that case it is giving me strange result when I try to consume the service with my .NET consumer application. I simply dont get the right input parameters in my proxy.
instead of looking like this :
proxy.dummyService(String input1, String input2)
it shows this :
proxy.dummyService(tester.jbossws.dummyService dummyService1)
Help is appriciated.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3992730#3992730
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3992730
18 years, 1 month