[JBoss-dev] [JBossWS] - JBoss 4 and JbossWS - Xdoclet tags

2004-12-17 Thread joshua_hj
Dear community,

I have a SessionBean that i have implemented as a WebService 1.1 compliant, 
using the new wsee xdoclet tags in the new JBoss 4. I also have another class ( 
Calculadora) in my project that i use in the SessionBean, so that classe needs 
to be serialized, because the sessionBean returns an object of the class's type 
(see below).

public abstract class TestSessionBean implements TestSessionEndpoint,
SessionBean {


/**
* @ejb.interface-method
* view-type=service-endpoint
**/

public Calculadora Calc (int x, int y){

Calculadora tmp = new Calculadora();
tmp.setX(x);
tmp.setY(y);
tmp.multiplicacao();

return tmp ;

// and continues
}

I need to know what tags do i need to use (using JBoss 4.0.0), so that xdoclet 
knows that class Calculadora, needs to be serialized and i could use then the 
code above, to return an object in the Calc method. As it is now, compiles OK 
but it doesnt deploy, JBoss 4 complains that it doesnt know 
Calculadora.class

Thanks Herlander

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3859123#3859123

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859123


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [Design of XDoclet Tags on JBoss (XDoclet/JBoss)] - JBoss 4 and JbossWS - Xdoclet tags

2004-12-17 Thread joshua_hj
Dear community,

I have a SessionBean that i have implemented as a WebService 1.1 compliant, 
using the new wsee xdoclet tags in the new JBoss 4. I also have another class ( 
Calculadora) in my project that i use in the SessionBean, so that classe needs 
to be serialized, because the sessionBean returns an object of the class's type 
(see below).

public abstract class TestSessionBean implements TestSessionEndpoint,
SessionBean {


/**
* @ejb.interface-method
* view-type=service-endpoint
**/

public Calculadora Calc (int x, int y){

Calculadora tmp = new Calculadora();
tmp.setX(x);
tmp.setY(y);
tmp.multiplicacao();

return tmp ;

// and continues
}

I need to know what tags do i need to use (using JBoss 4.0.0), so that xdoclet 
knows that class Calculadora, needs to be serialized and i could use then the 
code above, to return an object in the Calc method. As it is now, compiles OK 
but it doesnt deploy, JBoss 4 complains that it doesnt know 
Calculadora.class

Thanks Herlander

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3859124#3859124

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3859124


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [XDoclet on JBoss (XDoclet/JBoss)] - Re: Xdoclet in JBoss-4.0.0

2004-12-10 Thread joshua_hj
Thanks

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3858214#3858214

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3858214


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [JBossWS] - JBoss 4.0.0 xdoclet tags

2004-11-23 Thread joshua_hj
I need to expose a EJB as a Webservice with JBoss 4.0.0.
I got it working with jboss-3.2.3 by using xdoclet jboss-net tags. Does any one 
know the equivalence of jboss-net xdoclet tags for use with JBoss-4.0.0? I know 
that JbosWS is the new module responsible for providing support for WebServices 
in JBoss4, with the full set of J2EE 1.4 WebServices tech. But like it 
predecessor i think we could still use xdoclet to make life much easier. Below 
are some example tags to ilustrate my doubt


@jboss-net:web-service urn=BMIservice

@ejb:interface-method view-type=local
@jboss-net:web-method
@param Y
@param X
@return

Thank u all



View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3856204#3856204

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856204


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development


[JBoss-dev] [XDoclet on JBoss (XDoclet/JBoss)] - Xdoclet in JBoss-4.0.0

2004-11-23 Thread joshua_hj
I need to expose a EJB as a Webservice with JBoss 4.0.0.
I got it working with jboss-3.2.3 by using xdoclet jboss-net tags. Does any one 
know the equivalence of jboss-net xdoclet tags for use with JBoss-4.0.0? I know 
that JbosWS is the new module responsible for providing support for WebServices 
in JBoss4, with the full set of J2EE 1.4 WebServices tech. But like it 
predecessor i think we could still use xdoclet to make life much easier. Below 
are some example tags to ilustrate my doubt


@jboss-net:web-service urn=BMIservice

@ejb:interface-method view-type=local
@jboss-net:web-method
@param Y
@param X
@return

Thank u all


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3856205#3856205

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3856205


---
SF email is sponsored by - The IT Product Guide
Read honest  candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
___
JBoss-Development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development