[JBoss-user] [JBoss.NET & SOAP] - Re: Changing in0,in1,... into more proper parameter names

2004-07-08 Thread kris_moens
fheldt, Indeed, i'm using the one jboss provided, not the one from the nsdev site. I hope this site will be available again soon. thanks for the replies Kris View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3841362#3841362 Reply to the post : http://www.

[JBoss-user] [JBoss.NET & SOAP] - Re: Changing in0,in1,... into more proper parameter names

2004-07-08 Thread tperrigo
With the following tags/method declaration, I was able to get meaningful parameter names: | /** | * @param projectRoleId | * @return jobId | * @ejb:interface-method view-type="remote" | * @jboss-net.web-method returnQName="job_id" | */ | public int

[JBoss-user] [JBoss.NET & SOAP] - Re: Changing in0,in1,... into more proper parameter names

2004-07-07 Thread nehring
Hi fheldt, Which version of xdoclet are you using? The xdoclet-module-jboss-net.jar was built in October 2003. I'm not sure if it's compatible with xdoclet-1.2.1. Plus, when I explode the xdoclet-module-jboss-net.jar I don't see a "@jboss-net.wsdd-operation" tag. What does your generated we

[JBoss-user] [JBoss.NET & SOAP] - Re: Changing in0,in1,... into more proper parameter names

2004-07-07 Thread fheldt
Do you have the xdoclet-module-jboss-net.jar from http://prdownloads.sourceforge.net/jboss/xdoclet-module-jboss-net.jar?download ? If so, this one doesn't include support for the jboss.wsdd-operation tag. I got it from http://www.nsdev.org/jboss/stories/jboss-net.html Don't know if there is ano

[JBoss-user] [JBoss.NET & SOAP] - Re: Changing in0,in1,... into more proper parameter names

2004-07-06 Thread kris_moens
Thank you for the reply fheldt i tried this : /** * @ejb:interface-method view-type="local" * @ejb.interface-method * @jboss-net.web-method * @jboss-net.wsdd-operation returnQName="firstname" */ public String hello(String firstname) { return "hello " + firstname; } but it still resulted

[JBoss-user] [JBoss.NET & SOAP] - Re: Changing in0,in1,... into more proper parameter names

2004-07-06 Thread fheldt
Do you mean this? | /** | * ... | * @ejb.interface-method | * @jboss-net.web-method | * @jboss-net.wsdd-operation returnQName="key" | */ | public void doSomething(Short key) throws Exception { | ... | } | View the original post : http://www.jboss.org/index.html?module