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 :

Erreur "javax.xml.ws.WebServiceException: {urn:hl7-org:v3}GDP_Service is not a valid service"


Sujet :

Services Web Java

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éprouvé
    Inscrit en
    Mai 2003
    Messages
    146
    Détails du profil
    Informations forums :
    Inscription : Mai 2003
    Messages : 146
    Par défaut Erreur "javax.xml.ws.WebServiceException: {urn:hl7-org:v3}GDP_Service is not a valid service"
    Hello,

    Est ce que le nom de service est défini dans le WSDL?
    j'ai cette erreur quand j'essayer de creer le service en lui passant le wsql et le servicename
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Service service = Service.create(wsdlURL, serviceName);

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    javax.xml.ws.WebServiceException: {urn:hl7-org:v3}GDP_Service is not a valid service
    ?

  2. #2
    Membre éprouvé
    Inscrit en
    Mai 2003
    Messages
    146
    Détails du profil
    Informations forums :
    Inscription : Mai 2003
    Messages : 146
    Par défaut
    donc le service figure bien mais je suppose que c'est le namespace qui pose problème

    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
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <!--
        DMP1 - Interfaces LPS
        WSDL de definition du service : Patient HL7 V3
        VERSION : 1.0.0
        DATE    : 03/11/2010
    -->
    <definitions name="GestionDossierPatientPartage" targetNamespace="asip:ci-sis:gdp:2010"
        xmlns:tns="asip:ci-sis:gdp:2010" 
        xmlns:wsoap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns="http://schemas.xmlsoap.org/wsdl/"
        xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:hl7="urn:hl7-org:v3">
     
        <documentation>Gestion dossier patient partage</documentation>
     
        <types>
          <xsd:schema elementFormDefault="qualified" targetNamespace="asip:ci-sis:gdp:2010">
     
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201307UV02.xsd"/>
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201308UV02.xsd"/>
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201311UV02.xsd"/>
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201312UV02.xsd"/>
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201313UV02.xsd"/>
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201314UV02.xsd"/>
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201315UV02.xsd"/>
    				<xsd:import namespace="urn:hl7-org:v3" schemaLocation="../schema/HL7V3/NE2009/multicacheschemas/PRPA_IN201316UV02.xsd"/>	
     
    				<xsd:element name="PRPA_IN201311UV02_Response" type="tns:PRPA_IN201311UV02_ResponseType" />
    		    <xsd:element name="PRPA_IN201314UV02_Response" type="tns:PRPA_IN201314UV02_ResponseType"/>  
     
    				<xsd:complexType name="PRPA_IN201311UV02_ResponseType">
    						<xsd:sequence>	
    							<xsd:choice>
    									<xsd:element ref="hl7:PRPA_IN201312UV02"/>
    									<xsd:element ref="hl7:PRPA_IN201313UV02"/>
    							</xsd:choice>
    						</xsd:sequence>	
    				</xsd:complexType>				
    				<xsd:complexType name="PRPA_IN201314UV02_ResponseType">
    						<xsd:sequence>	
    							<xsd:choice>  
    									<xsd:element ref="hl7:PRPA_IN201315UV02"/>
    									<xsd:element ref="hl7:PRPA_IN201316UV02"/>
    							</xsd:choice>
    						</xsd:sequence>
    				</xsd:complexType>	
     
    	    </xsd:schema>		
        </types>
     
        <message name="PRPA_IN201307UV02_Message">
            <part element="hl7:PRPA_IN201307UV02" name="Body"/>
        </message>
        <message name="PRPA_IN201308UV02_Message">
            <part element="hl7:PRPA_IN201308UV02" name="Body"/>
        </message>
          <message name="PRPA_IN201311UV02_Message">
            <part element="hl7:PRPA_IN201311UV02" name="Body"/>
        </message>
        <message name="PRPA_IN201312UV02_Message">
            <part element="hl7:PRPA_IN201312UV02" name="Body"/>
        </message>
           <message name="PRPA_IN201313UV02_Message">
            <part element="hl7:PRPA_IN201313UV02" name="Body"/>
        </message>
        <message name="PRPA_IN201314UV02_Message">
            <part element="hl7:PRPA_IN201314UV02" name="Body"/>
        </message>
          <message name="PRPA_IN201315UV02_Message">
            <part element="hl7:PRPA_IN201315UV02" name="Body"/>
        </message>
        <message name="PRPA_IN201316UV02_Message">
            <part element="hl7:PRPA_IN201316UV02" name="Body"/>
        </message>
    	  <message name="PRPA_IN201314UV02_Response_Message">
            <part element="tns:PRPA_IN201314UV02_Response" name="Body"/>
        </message>
        <message name="PRPA_IN201311UV02_Response_Message">
            <part element="tns:PRPA_IN201311UV02_Response" name="Body"/>
        </message>
     
        <portType name="GDP_PortType">
            <operation name="PatientRevise_PRPA_IN201314UV02">
                <input message="tns:PRPA_IN201314UV02_Message" wsaw:Action="urn:hl7-org:v3:PRPA_IN201314UV02"/>
               	<output message="tns:PRPA_IN201314UV02_Response_Message" wsaw:Action="urn:hl7-org:v3:PRPA_IN201314ResponseUV02"/>
            </operation>
            <operation name="PatientAdd_PRPA_IN201311UV02">
                <input message="tns:PRPA_IN201311UV02_Message" wsaw:Action="urn:hl7-org:v3:PRPA_IN201311UV02"/>
                <output message="tns:PRPA_IN201311UV02_Response_Message" wsaw:Action="urn:hl7-org:v3:PRPA_IN201311ResponseUV02"/>
            </operation>
            <operation name="PatientGetDemographics_PRPA_IN201307UV02">
                <input message="tns:PRPA_IN201307UV02_Message" wsaw:Action="urn:hl7-org:v3:PRPA_IN201307UV02"/>
                <output message="tns:PRPA_IN201308UV02_Message" wsaw:Action="urn:hl7-org:v3:PRPA_IN201308UV02"/>
            </operation>
        </portType>
     
    	<binding name="GDP_Binding_Soap12" type="tns:GDP_PortType">       
    	 <wsoap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
            <operation name="PatientRevise_PRPA_IN201314UV02">
                <wsoap12:operation soapAction="urn:hl7-org:v3:PRPA_IN201314UV02"/>
                <input>
                    <wsoap12:body use="literal"/>
                </input>
                <output>
                    <wsoap12:body use="literal"/>
                </output>
            </operation>
            <operation name="PatientAdd_PRPA_IN201311UV02">
                <wsoap12:operation soapAction="urn:hl7-org:v3:PRPA_IN201311UV02"/>
                <input>
                    <wsoap12:body use="literal"/>
                </input>
                <output>
                    <wsoap12:body use="literal"/>
                </output>
            </operation> 
            <operation name="PatientGetDemographics_PRPA_IN201307UV02">
                <wsoap12:operation soapAction="urn:hl7-org:v3:PRPA_IN201307UV02"/>
                <input>
                    <wsoap12:body use="literal"/>
                </input>
                <output>
                    <wsoap12:body use="literal"/>
                </output>
            </operation>
        </binding>
     
      	<service name="GDP_Service">
    			<port binding="tns:GDP_Binding_Soap12" name="GDP_Binding_Soap12">
    				<wsoap12:address location=""/>
    			</port>
    		</service>
     
    </definitions>

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Réponses: 2
    Dernier message: 16/07/2013, 11h16
  2. [Tomcat] configuration d'une page d'erreur dans web.xml
    Par Super Castor dans le forum Tomcat et TomEE
    Réponses: 3
    Dernier message: 08/04/2009, 15h58
  3. [DOM] Erreur parser fichier xml avec caractère spéciaux
    Par turcotm dans le forum Format d'échange (XML, JSON...)
    Réponses: 4
    Dernier message: 19/06/2006, 09h01
  4. Erreur d'analyse XML : entité non définie
    Par ToxiZz dans le forum XML/XSL et SOAP
    Réponses: 1
    Dernier message: 16/01/2006, 13h22
  5. [ debutant ][ Tomcat ] Erreurs fichier web.xml
    Par zsoh dans le forum Tomcat et TomEE
    Réponses: 3
    Dernier message: 13/04/2005, 11h35

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