IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Services Web Java Discussion :

est ce que c'est possible de retourner un objet qui contient d'autres objets comme attributs


Sujet :

Services Web Java

  1. #1
    Nouveau membre du Club
    Inscrit en
    Août 2006
    Messages
    47
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 47
    Points : 29
    Points
    29
    Par défaut est ce que c'est possible de retourner un objet qui contient d'autres objets comme attributs
    Bonjour,

    je veut crée une application webservice qui retourne un objet par exemple:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
     
    @WebService
    @XmlSeeAlso({OBJTest.class})
    public class TestWS{
    	@WebMethod
    	public OBJTest execute(String _str) {
             .......
             OBJTest obj= new OBJTest();
             .......
             return obj;
            }
     
    }
     
    public class OBJTest{
        public int x;
        public Personne personne;
        ...........
    }
    public class Personne {
        public int age;
        public String nom;
        public String prenom;
        ...........
    }

    est ce que cela est possible parce que ça me donne une exception:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    java.lang.IllegalStateException: Cannot build JAXB context
    	at org.jboss.ws.metadata.builder.jaxws.JAXWSMetaDataBuilder.createJAXBContext(JAXWSMetaDataBuilder.java:984)
    	at org.jboss.ws.metadata.builder.jaxws.JAXWSWebServiceMetaDataBuilder.buildWebServiceMetaData(JAXWSWebServiceMetaDataBuilder.java:154)
    	at org.jboss.ws.metadata.builder.jaxws.JAXWSServerMetaDataBuilder.setupProviderOrWebService(JAXWSServerMetaDataBuilder.java:50)
    	at org.jboss.ws.metadata.builder.jaxws.JAXWSMetaDataBuilderJSE.buildMetaData(JAXWSMetaDataBuilderJSE.java:61)
    	at org.jboss.wsf.stack.jbws.UnifiedMetaDataDeploymentAspect.start(UnifiedMetaDataDeploymentAspect.java:64)
    	at org.jboss.wsf.framework.deployment.DeploymentAspectManagerImpl.deploy(DeploymentAspectManagerImpl.java:129)
    	at org.jboss.wsf.container.jboss42.ArchiveDeployerHook.deploy(ArchiveDeployerHook.java:95)
    	at org.jboss.wsf.container.jboss42.DeployerInterceptor.start(DeployerInterceptor.java:88)
    	at org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.start(SubDeployerInterceptorSupport.java:188)
    	at org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:95)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy45.start(Unknown Source)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    	at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:597)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy9.deploy(Unknown Source)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
    	at org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:263)
    	at org.jboss.deployment.scanner.AbstractDeploymentScanner.startService(AbstractDeploymentScanner.java:336)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
    	at org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
    	at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:597)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
    	at $Proxy0.start(Unknown Source)
    	at org.jboss.system.ServiceController.start(ServiceController.java:417)
    	at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:597)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy4.start(Unknown Source)
    	at org.jboss.deployment.SARDeployer.start(SARDeployer.java:304)
    	at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1025)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:819)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
    	at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:766)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:597)
    	at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
    	at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
    	at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
    	at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
    	at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
    	at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
    	at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
    	at $Proxy5.deploy(Unknown Source)
    	at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:482)
    	at org.jboss.system.server.ServerImpl.start(ServerImpl.java:362)
    	at org.jboss.Main.boot(Main.java:200)
    	at org.jboss.Main$1.run(Main.java:508)
    	at java.lang.Thread.run(Thread.java:619)
    Caused by: org.jboss.ws.WSException: Failed to create JAXBContext
    	at org.jboss.ws.core.jaxws.CustomizableJAXBContextFactory.createContext(CustomizableJAXBContextFactory.java:114)
    	at org.jboss.ws.metadata.builder.jaxws.JAXWSMetaDataBuilder.createJAXBContext(JAXWSMetaDataBuilder.java:980)
    	... 81 more
    Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 5 counts of IllegalAnnotationExceptions
    com.mobinets.mws.model.data.amount.AmountStatus does not have a no-arg default constructor.
    	this problem is related to the following location:
    		at com.mobinets.mws.model.data.amount.AmountStatus
    		at public com.mobinets.mws.model.data.amount.AmountStatus com.mobinets.mws.model.data.amount.AmountView.getStatus()
    		at com.mobinets.mws.model.data.amount.AmountView
    		at public java.util.List com.mobinets.mws.model.data.account.MWSAccountInfo.getAmountViewList()
    		at com.mobinets.mws.model.data.account.MWSAccountInfo
    		at private com.mobinets.mws.model.data.account.MWSAccountInfo com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse._return
    		at com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse
    com.mobinets.mws.model.data.account.FrpAccountId does not have a no-arg default constructor.
    	this problem is related to the following location:
    		at com.mobinets.mws.model.data.account.FrpAccountId
    		at public com.mobinets.mws.model.data.account.FrpAccountId com.mobinets.mws.model.data.account.MWSAccountInfo.getFrpAccountId()
    		at com.mobinets.mws.model.data.account.MWSAccountInfo
    		at private com.mobinets.mws.model.data.account.MWSAccountInfo com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse._return
    		at com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse
    com.mobinets.mws.model.common.ObjectID does not have a no-arg default constructor.
    	this problem is related to the following location:
    		at com.mobinets.mws.model.common.ObjectID
    		at com.mobinets.mws.model.data.account.FrpAccountId
    		at public com.mobinets.mws.model.data.account.FrpAccountId com.mobinets.mws.model.data.account.MWSAccountInfo.getFrpAccountId()
    		at com.mobinets.mws.model.data.account.MWSAccountInfo
    		at private com.mobinets.mws.model.data.account.MWSAccountInfo com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse._return
    		at com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse
    com.mobinets.mws.model.data.account.AccountStatus does not have a no-arg default constructor.
    	this problem is related to the following location:
    		at com.mobinets.mws.model.data.account.AccountStatus
    		at public com.mobinets.mws.model.data.account.AccountStatus com.mobinets.mws.model.data.account.MWSAccountInfo.getStatus()
    		at com.mobinets.mws.model.data.account.MWSAccountInfo
    		at private com.mobinets.mws.model.data.account.MWSAccountInfo com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse._return
    		at com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse
    com.mobinets.mws.model.data.account.AccountType does not have a no-arg default constructor.
    	this problem is related to the following location:
    		at com.mobinets.mws.model.data.account.AccountType
    		at public com.mobinets.mws.model.data.account.AccountType com.mobinets.mws.model.data.account.MWSAccountInfo.getType()
    		at com.mobinets.mws.model.data.account.MWSAccountInfo
    		at private com.mobinets.mws.model.data.account.MWSAccountInfo com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse._return
    		at com.mobinets.mws.api.services.incoming.account.impl.jaxws.ExecuteResponse
     
    	at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
    	at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:438)
    	at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:286)
    	at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:139)
    	at com.sun.xml.bind.api.JAXBRIContext.newInstance(JAXBRIContext.java:105)
    	at org.jboss.ws.core.jaxws.CustomizableJAXBContextFactory.createContext(CustomizableJAXBContextFactory.java:108)
    	... 82 more
    mais si OBJTest contient que des type simple comme int, String ... ça marche très bien.

    est ce que quelqu'un peut m'aider? et merci

  2. #2
    Nouveau membre du Club
    Inscrit en
    Août 2006
    Messages
    47
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 47
    Points : 29
    Points
    29
    Par défaut
    c'est le meilleur forum . c'est la 3ieme fois que je n'ai aucune réponse !!!!!!

Discussions similaires

  1. est-ce que python est ce que je cherche
    Par SILICONE dans le forum Général Python
    Réponses: 5
    Dernier message: 21/12/2007, 14h23
  2. Est ce que cela est possible ?
    Par dubidon dans le forum VB.NET
    Réponses: 13
    Dernier message: 21/06/2007, 17h13
  3. Tableau d' images, est-ce que c'est possible ?
    Par awane dans le forum WinDev
    Réponses: 8
    Dernier message: 27/11/2006, 20h10
  4. [AJAX] Est-ce que c'est possible ?
    Par jejeman dans le forum Général JavaScript
    Réponses: 4
    Dernier message: 09/11/2006, 16h50
  5. Est ce que c'est possible de télécharger ce forum génial ?
    Par dz_robotix dans le forum Evolutions du club
    Réponses: 2
    Dernier message: 11/09/2006, 15h12

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo