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 :

[Axis2] Paramètre d'une méthode toujours null


Sujet :

Services Web Java

  1. #1
    Futur Membre du Club
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    12
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 12
    Points : 8
    Points
    8
    Par défaut [Axis2] Paramètre d'une méthode toujours null
    Bonsoir à tous,

    je sèche depuis un petit moment sur un problème récurent au niveau de la consommation de mon WS. La méthode que j'ai suivie pour l'implémenter :
    - Définition d'une classe JAVA de service

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
        public Long getPages();
        public Item[] getItems(Long page);
    - Génération du WEB Service associé avec axis, le tout sous netbeans

    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
    135
    136
     
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:axis2="http://impl/services/conception/edu/" xmlns:ns1="http://impl/services/conception/edu/xsd" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:ns0="http://domain.conception.edu/xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://impl/services/conception/edu/">
        <wsdl:types>
            <xs:schema xmlns:ax21="http://domain.conception.edu/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://domain.conception.edu/xsd">
                <xs:complexType name="Item">
                    <xs:sequence>
                        <xs:element maxOccurs="unbounded" minOccurs="0" name="features" nillable="true" type="xs:string"/>
                        <xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
                        <xs:element minOccurs="0" name="image" nillable="true" type="xs:string"/>
                        <xs:element minOccurs="0" name="price" nillable="true" type="xs:string"/>
                        <xs:element minOccurs="0" name="salesRank" type="xs:float"/>
                        <xs:element minOccurs="0" name="stock" type="xs:int"/>
                        <xs:element minOccurs="0" name="title" nillable="true" type="xs:string"/>
                    </xs:sequence>
                </xs:complexType>
            </xs:schema>
            <xs:schema xmlns:ns="http://impl/services/conception/edu/xsd" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://impl/services/conception/edu/xsd">
                <xs:element name="getItems">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element minOccurs="0" name="page" type="xs:long"/>
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
                <xs:element name="getItemsResponse">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="ns0:Item"/>
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
                <xs:element name="getPagesResponse">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element minOccurs="0" name="return" type="xs:long"/>
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
            </xs:schema>
        </wsdl:types>
        <wsdl:message name="getPagesRequest"/>
        <wsdl:message name="getPagesResponse">
            <wsdl:part name="parameters" element="ns1:getPagesResponse"/>
        </wsdl:message>
        <wsdl:message name="getItemsRequest">
            <wsdl:part name="parameters" element="ns1:getItems"/>
        </wsdl:message>
        <wsdl:message name="getItemsResponse">
            <wsdl:part name="parameters" element="ns1:getItemsResponse"/>
        </wsdl:message>
        <wsdl:portType name="ItemFacadeImplPortType">
            <wsdl:operation name="getPages">
                <wsdl:input message="axis2:getPagesRequest" wsaw:Action="urn:getPages"/>
                <wsdl:output message="axis2:getPagesResponse" wsaw:Action="urn:getPagesResponse"/>
            </wsdl:operation>
            <wsdl:operation name="getItems">
                <wsdl:input message="axis2:getItemsRequest" wsaw:Action="urn:getItems"/>
                <wsdl:output message="axis2:getItemsResponse" wsaw:Action="urn:getItemsResponse"/>
            </wsdl:operation>
        </wsdl:portType>
        <wsdl:binding name="ItemFacadeImplSOAP11Binding" type="axis2:ItemFacadeImplPortType">
            <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
            <wsdl:operation name="getPages">
                <soap:operation soapAction="urn:getPages" style="document"/>
                <wsdl:input>
                    <soap:body use="literal"/>
                </wsdl:input>
                <wsdl:output>
                    <soap:body use="literal"/>
                </wsdl:output>
            </wsdl:operation>
            <wsdl:operation name="getItems">
                <soap:operation soapAction="urn:getItems" style="document"/>
                <wsdl:input>
                    <soap:body use="literal"/>
                </wsdl:input>
                <wsdl:output>
                    <soap:body use="literal"/>
                </wsdl:output>
            </wsdl:operation>
        </wsdl:binding>
        <wsdl:binding name="ItemFacadeImplSOAP12Binding" type="axis2:ItemFacadeImplPortType">
            <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
            <wsdl:operation name="getPages">
                <soap12:operation soapAction="urn:getPages" style="document"/>
                <wsdl:input>
                    <soap12:body use="literal"/>
                </wsdl:input>
                <wsdl:output>
                    <soap12:body use="literal"/>
                </wsdl:output>
            </wsdl:operation>
            <wsdl:operation name="getItems">
                <soap12:operation soapAction="urn:getItems" style="document"/>
                <wsdl:input>
                    <soap12:body use="literal"/>
                </wsdl:input>
                <wsdl:output>
                    <soap12:body use="literal"/>
                </wsdl:output>
            </wsdl:operation>
        </wsdl:binding>
        <wsdl:binding name="ItemFacadeImplHttpBinding" type="axis2:ItemFacadeImplPortType">
            <http:binding verb="POST"/>
            <wsdl:operation name="getPages">
                <http:operation location="ItemFacadeImpl/getPages"/>
                <wsdl:input>
                    <mime:content type="text/xml" part="getPages"/>
                </wsdl:input>
                <wsdl:output>
                    <mime:content type="text/xml" part="getPages"/>
                </wsdl:output>
            </wsdl:operation>
            <wsdl:operation name="getItems">
                <http:operation location="ItemFacadeImpl/getItems"/>
                <wsdl:input>
                    <mime:content type="text/xml" part="getItems"/>
                </wsdl:input>
                <wsdl:output>
                    <mime:content type="text/xml" part="getItems"/>
                </wsdl:output>
            </wsdl:operation>
        </wsdl:binding>
        <wsdl:service name="ItemFacadeImpl">
            <wsdl:port name="ItemFacadeImplSOAP11port_http" binding="axis2:ItemFacadeImplSOAP11Binding">
                <soap:address location="http://localhost:8080/axis2/services/ItemFacadeImpl"/>
            </wsdl:port>
            <wsdl:port name="ItemFacadeImplSOAP12port_http" binding="axis2:ItemFacadeImplSOAP12Binding">
                <soap12:address location="http://localhost:8080/axis2/services/ItemFacadeImpl"/>
            </wsdl:port>
            <wsdl:port name="ItemFacadeImplHttpport" binding="axis2:ItemFacadeImplHttpBinding">
                <http:address location="http://localhost:8080/axis2/services/ItemFacadeImpl"/>
            </wsdl:port>
        </wsdl:service>
    </wsdl:definitions>
    J'ai écris un petit client qui appel les méthodes. Aucun problème tant que je n'utilise pas de paramètre : getItems(Long page) déclenche un exception parce que le paramètre est toujours null !

    Que ce soit mon client ou l'outil de test du webservice de netbeans, Axis génère toujours cette erreur

    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
     
    [ERROR] Exception occurred while trying to invoke service method getItems
    java.lang.reflect.InvocationTargetException
    	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.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
    	at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
    	at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
    	at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114)
    	at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:173)
    	at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngine(RESTUtil.java:135)
    	at org.apache.axis2.transport.http.util.RESTUtil.processURLRequest(RESTUtil.java:130)
    	at org.apache.axis2.transport.http.HTTPWorker.service(HTTPWorker.java:245)
    	at org.apache.axis2.transport.http.server.AxisHttpService.doService(AxisHttpService.java:281)
    	at org.apache.axis2.transport.http.server.AxisHttpService.handleRequest(AxisHttpService.java:187)
    	at org.apache.axis2.transport.http.server.HttpServiceProcessor.run(HttpServiceProcessor.java:82)
    	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    	at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.RuntimeException
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:102)
    	... 18 more
    Caused by: java.lang.NullPointerException
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:65)
    	... 18 more
    [ERROR] Exception occurred while trying to invoke service method getItems
    org.apache.axis2.AxisFault: Exception occurred while trying to invoke service method getItems
    	at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
    	at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
    	at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:114)
    	at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:173)
    	at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngine(RESTUtil.java:135)
    	at org.apache.axis2.transport.http.util.RESTUtil.processURLRequest(RESTUtil.java:130)
    	at org.apache.axis2.transport.http.HTTPWorker.service(HTTPWorker.java:245)
    	at org.apache.axis2.transport.http.server.AxisHttpService.doService(AxisHttpService.java:281)
    	at org.apache.axis2.transport.http.server.AxisHttpService.handleRequest(AxisHttpService.java:187)
    	at org.apache.axis2.transport.http.server.HttpServiceProcessor.run(HttpServiceProcessor.java:82)
    	at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    	at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.reflect.InvocationTargetException
    	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.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
    	at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
    	... 12 more
    Caused by: java.lang.RuntimeException
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:102)
    	... 18 more
    Caused by: java.lang.NullPointerException
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:65)
    	... 18 more
    Si quelqu'un pouvait éclairer ma lenterne...

  2. #2
    Futur Membre du Club
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    12
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 12
    Points : 8
    Points
    8
    Par défaut
    Toujours en train de chercher...

    J'ai testé sous axis 1.4.1 au lieu de 1.5.1 et l'erreur est légèrement différente :

    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
     
    [ERROR] TODO
    java.lang.reflect.InvocationTargetException
    	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.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
    	at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
    	at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
    	at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:100)
    	at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:176)
    	at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngine(RESTUtil.java:136)
    	at org.apache.axis2.transport.http.util.RESTUtil.processURLRequest(RESTUtil.java:130)
    	at org.apache.axis2.transport.http.HTTPWorker.service(HTTPWorker.java:257)
    	at org.apache.axis2.transport.http.server.AxisHttpService.doService(AxisHttpService.java:281)
    	at org.apache.axis2.transport.http.server.AxisHttpService.handleRequest(AxisHttpService.java:187)
    	at org.apache.axis2.transport.http.server.HttpServiceProcessor.run(HttpServiceProcessor.java:82)
    	at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1061)
    	at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:575)
    	at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.RuntimeException: TODO
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:121)
    	... 18 more
    Caused by: javax.xml.ws.soap.SOAPFaultException: TODO
    	at org.apache.axis2.jaxws.marshaller.impl.alt.MethodMarshallerUtils.createSystemException(MethodMarshallerUtils.java:1249)
    	at org.apache.axis2.jaxws.marshaller.impl.alt.MethodMarshallerUtils.demarshalFaultResponse(MethodMarshallerUtils.java:975)
    	at org.apache.axis2.jaxws.marshaller.impl.alt.DocLitWrappedMethodMarshaller.demarshalFaultResponse(DocLitWrappedMethodMarshaller.java:546)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.getFaultResponse(JAXWSProxyHandler.java:413)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.createResponse(JAXWSProxyHandler.java:384)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invokeSEIMethod(JAXWSProxyHandler.java:308)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invoke(JAXWSProxyHandler.java:158)
    	at $Proxy10.itemSearch(Unknown Source)
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:97)
    	... 18 more
    [ERROR] TODO
    org.apache.axis2.AxisFault: TODO
    	at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:158)
    	at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
    	at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:100)
    	at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:176)
    	at org.apache.axis2.transport.http.util.RESTUtil.invokeAxisEngine(RESTUtil.java:136)
    	at org.apache.axis2.transport.http.util.RESTUtil.processURLRequest(RESTUtil.java:130)
    	at org.apache.axis2.transport.http.HTTPWorker.service(HTTPWorker.java:257)
    	at org.apache.axis2.transport.http.server.AxisHttpService.doService(AxisHttpService.java:281)
    	at org.apache.axis2.transport.http.server.AxisHttpService.handleRequest(AxisHttpService.java:187)
    	at org.apache.axis2.transport.http.server.HttpServiceProcessor.run(HttpServiceProcessor.java:82)
    	at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1061)
    	at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:575)
    	at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.reflect.InvocationTargetException
    	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.apache.axis2.rpc.receivers.RPCUtil.invokeServiceClass(RPCUtil.java:194)
    	at org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:102)
    	... 12 more
    Caused by: java.lang.RuntimeException: TODO
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:121)
    	... 18 more
    Caused by: javax.xml.ws.soap.SOAPFaultException: TODO
    	at org.apache.axis2.jaxws.marshaller.impl.alt.MethodMarshallerUtils.createSystemException(MethodMarshallerUtils.java:1249)
    	at org.apache.axis2.jaxws.marshaller.impl.alt.MethodMarshallerUtils.demarshalFaultResponse(MethodMarshallerUtils.java:975)
    	at org.apache.axis2.jaxws.marshaller.impl.alt.DocLitWrappedMethodMarshaller.demarshalFaultResponse(DocLitWrappedMethodMarshaller.java:546)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.getFaultResponse(JAXWSProxyHandler.java:413)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.createResponse(JAXWSProxyHandler.java:384)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invokeSEIMethod(JAXWSProxyHandler.java:308)
    	at org.apache.axis2.jaxws.client.proxy.JAXWSProxyHandler.invoke(JAXWSProxyHandler.java:158)
    	at $Proxy10.itemSearch(Unknown Source)
    	at edu.conception.services.impl.ItemFacadeImpl.getItems(ItemFacadeImpl.java:97)
    	... 18 more
    Pour info, je met mon services.xml si l'erreur peut venir de là

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
     
    <?xml version="1.0" encoding="UTF-8"?>
    <serviceGroup>
        <service name="ItemFacadeImpl" scope="application">
            <description>ItemFacadeImpl service</description>
            <messageReceivers>
                <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only" class="org.apache.axis2.rpc.receivers.RPCInOnlyMessageReceiver"/>
                <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out" class="org.apache.axis2.rpc.receivers.RPCMessageReceiver"/>
            </messageReceivers>
            <parameter name="ServiceClass">edu.conception.services.impl.ItemFacadeImpl</parameter>
     
        </service>
    </serviceGroup>

  3. #3
    Membre régulier Avatar de maya
    Profil pro
    Étudiant
    Inscrit en
    Novembre 2006
    Messages
    140
    Détails du profil
    Informations personnelles :
    Âge : 38
    Localisation : Algérie

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Novembre 2006
    Messages : 140
    Points : 90
    Points
    90
    Par défaut
    Bonjour ,

    Teste avec Axis2 c'est mieux , je ne suis pas sure mais je pense avoir lu qu' Axis 1.x pose toujours des problèmes avec les vecteurs et les list

    A+

  4. #4
    Futur Membre du Club
    Profil pro
    Inscrit en
    Juin 2007
    Messages
    12
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2007
    Messages : 12
    Points : 8
    Points
    8
    Par défaut
    C'est bien Axis2 que j'utilise ^^

  5. #5
    Nouveau membre du Club
    Inscrit en
    Mars 2004
    Messages
    44
    Détails du profil
    Informations forums :
    Inscription : Mars 2004
    Messages : 44
    Points : 37
    Points
    37
    Par défaut AXIS2
    Bonjour,

    J'ai un problème similaire (enfin je crois).

    Je travaille sous Eclipse avec Axis2. En ce qui me concerne l'erreur est provoqué par le fait d'utiliser un wsdl que j'ai modifié (je change des minOccurs).

    As-tu trouvé une solution?
    Narfnaaaarf!!!!!!!!

  6. #6
    Futur Membre du Club
    Inscrit en
    Novembre 2008
    Messages
    6
    Détails du profil
    Informations forums :
    Inscription : Novembre 2008
    Messages : 6
    Points : 5
    Points
    5
    Par défaut meme pbm
    svp comment vous avez resolu votre problème?

Discussions similaires

  1. Réponses: 5
    Dernier message: 13/07/2009, 14h42
  2. comment passer un ArrayList comme paramètre d'une méthode
    Par itmak dans le forum Collection et Stream
    Réponses: 7
    Dernier message: 22/11/2008, 10h31
  3. Réponses: 1
    Dernier message: 30/01/2008, 19h41
  4. [POO] Deux paramètres dans une méthode ?
    Par SBL69 dans le forum Langage
    Réponses: 2
    Dernier message: 18/09/2007, 11h54
  5. Limite de paramètres d'une méthode SOAP
    Par Thierry67 dans le forum Delphi
    Réponses: 1
    Dernier message: 23/08/2006, 11h15

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