You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@synapse.apache.org by "Laurent CHARTIER (JIRA)" <ji...@apache.org> on 2008/07/07 13:07:31 UTC

[jira] Created: (SYNAPSE-393) Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()

Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()
--------------------------------------------------------------------

                 Key: SYNAPSE-393
                 URL: https://issues.apache.org/jira/browse/SYNAPSE-393
             Project: Synapse
          Issue Type: Bug
          Components: Core
    Affects Versions: 1.1.1
         Environment: OS: Windows XP SP2
            Reporter: Laurent CHARTIER


When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.

Before using the method:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <soapenv:Fault>
         <faultcode>soapenv:Client</faultcode>
         <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
         <faultactor>Referentiel des Conventions.</faultactor>
         <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

After using the method:
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
   <soapenv:Body>
      <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <faultcode>soapenv:Client</faultcode>
         <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
         <faultactor>Referentiel des Conventions.</faultactor>
         <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


[jira] Updated: (SYNAPSE-393) Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()

Posted by "George Sanchez (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-393?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

George Sanchez updated SYNAPSE-393:
-----------------------------------

    Attachment: SOAPUtils.patch

Here is the patch for SOAPUtils. Let me know your comments

> Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()
> --------------------------------------------------------------------
>
>                 Key: SYNAPSE-393
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-393
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: OS: Windows XP SP2
>            Reporter: Laurent CHARTIER
>         Attachments: SOAPUtils.patch
>
>
> When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
> The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.
> Before using the method:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> After using the method:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> It should be:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <soapenv:Code>
>             <soapenv:Value>soapenv:Client</soapenv:Value>
>          </soapenv:Code>
>          <soapenv:Reason>
>             <soapenv:Text>Erreur relative au referentiel des conventions. [Fichier de convention]</soapenv:Text>
>          </soapenv:Reason>
>          <soapenv:Role>Referentiel des Conventions.</soapenv:Role>
>          <soapenv:Detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</soapenv:Detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


[jira] Updated: (SYNAPSE-393) Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()

Posted by "Laurent CHARTIER (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-393?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Laurent CHARTIER updated SYNAPSE-393:
-------------------------------------

    Description: 
When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.

Before using the method:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <soapenv:Fault>
         <faultcode>soapenv:Client</faultcode>
         <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
         <faultactor>Referentiel des Conventions.</faultactor>
         <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

After using the method:
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
   <soapenv:Body>
      <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <faultcode>soapenv:Client</faultcode>
         <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
         <faultactor>Referentiel des Conventions.</faultactor>
         <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

It should be:
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
   <soapenv:Body>
      <soapenv:Fault>
         <soapenv:Code>
            <soapenv:Value>soapenv:Client</soapenv:Value>
         </soapenv:Code>
         <soapenv:Reason>
            <soapenv:Text>Erreur relative au referentiel des conventions. [Fichier de convention]</soapenv:Text>
         </soapenv:Reason>
         <soapenv:Role>Referentiel des Conventions.</soapenv:Role>
         <soapenv:Detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</soapenv:Detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

  was:
When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.

Before using the method:
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <soapenv:Fault>
         <faultcode>soapenv:Client</faultcode>
         <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
         <faultactor>Referentiel des Conventions.</faultactor>
         <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>

After using the method:
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
   <soapenv:Body>
      <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
         <faultcode>soapenv:Client</faultcode>
         <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
         <faultactor>Referentiel des Conventions.</faultactor>
         <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
      </soapenv:Fault>
   </soapenv:Body>
</soapenv:Envelope>


> Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()
> --------------------------------------------------------------------
>
>                 Key: SYNAPSE-393
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-393
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: OS: Windows XP SP2
>            Reporter: Laurent CHARTIER
>
> When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
> The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.
> Before using the method:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> After using the method:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> It should be:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <soapenv:Code>
>             <soapenv:Value>soapenv:Client</soapenv:Value>
>          </soapenv:Code>
>          <soapenv:Reason>
>             <soapenv:Text>Erreur relative au referentiel des conventions. [Fichier de convention]</soapenv:Text>
>          </soapenv:Reason>
>          <soapenv:Role>Referentiel des Conventions.</soapenv:Role>
>          <soapenv:Detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</soapenv:Detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


[jira] Commented: (SYNAPSE-393) Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()

Posted by "Saliya Ekanayake (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SYNAPSE-393?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12618957#action_12618957 ] 

Saliya Ekanayake commented on SYNAPSE-393:
------------------------------------------

I tried to recreate your issue but was unsuccessful. I used a simple proxy service in Synapse with a SOAP 1.1. endpoint. Then I sent a SOAP 1.2 message to synapse which simply results in a SOAP fault (I intentionally sets a wrong EPR). I tracked the SOAP messages using TCPMon and the SOAP fault seems to get converted nicely. I even did a simple debug, yet it came out clean. See the SOAP faults given below.

SOAP 1.1 fault returned by the back end server.

<?xml version='1.0' encoding='UTF-8'?>
   <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
      <soapenv:Body>
         <soapenv:Fault xmlns:axis2ns3="http://schemas.xmlsoap.org/soap/envelope/">
            <faultcode>axis2ns3:Client</faultcode>
            <faultstring>The service cannot be found for the endpoint reference (EPR) http://localhost:8086/axis2/services/EechoService&lt;/faultstring>
            <detail />
         </soapenv:Fault>
      </soapenv:Body>
   </soapenv:Envelope>

SOAP 1.2 fault returned by Synapse after converting the previous one

<?xml version='1.0' encoding='UTF-8'?>
   <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
      <soapenv:Body>
         <soapenv:Fault>
            <soapenv:Code>
               <soapenv:Value>axis2ns3:Client</soapenv:Value>
            </soapenv:Code>
            <soapenv:Reason>
               <soapenv:Text xml:lang="en">The service cannot be found for the endpoint reference (EPR) http://localhost:8086/axis2/services/EechoService&lt;/soapenv:Text>
            </soapenv:Reason>
         </soapenv:Fault>
      </soapenv:Body>
   </soapenv:Envelope>


Thanks,
Saliya

> Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()
> --------------------------------------------------------------------
>
>                 Key: SYNAPSE-393
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-393
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: OS: Windows XP SP2
>            Reporter: Laurent CHARTIER
>
> When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
> The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.
> Before using the method:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> After using the method:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> It should be:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <soapenv:Code>
>             <soapenv:Value>soapenv:Client</soapenv:Value>
>          </soapenv:Code>
>          <soapenv:Reason>
>             <soapenv:Text>Erreur relative au referentiel des conventions. [Fichier de convention]</soapenv:Text>
>          </soapenv:Reason>
>          <soapenv:Role>Referentiel des Conventions.</soapenv:Role>
>          <soapenv:Detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</soapenv:Detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


[jira] Commented: (SYNAPSE-393) Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()

Posted by "Laurent CHARTIER (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/SYNAPSE-393?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12611060#action_12611060 ] 

Laurent CHARTIER commented on SYNAPSE-393:
------------------------------------------

It seems that only code and reason are obtained from the original SOAPFault to create the new SOAP 1.2 SOAPFault.
It would be great to have the role and the detail to be translated too.
(http://svn.apache.org/viewvc/synapse/tags/1.1.1/modules/core/src/main/java/org/apache/synapse/core/axis2/SOAPUtils.java?revision=615753&view=markup)


> Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()
> --------------------------------------------------------------------
>
>                 Key: SYNAPSE-393
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-393
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: OS: Windows XP SP2
>            Reporter: Laurent CHARTIER
>
> When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
> The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.
> Before using the method:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> After using the method:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org


[jira] Assigned: (SYNAPSE-393) Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()

Posted by "Hiranya Jayathilaka (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SYNAPSE-393?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Hiranya Jayathilaka reassigned SYNAPSE-393:
-------------------------------------------

    Assignee: Ruwan Linton

> Convertion not complete when using SOAPUtils.convertSOAP11toSOAP12()
> --------------------------------------------------------------------
>
>                 Key: SYNAPSE-393
>                 URL: https://issues.apache.org/jira/browse/SYNAPSE-393
>             Project: Synapse
>          Issue Type: Bug
>          Components: Core
>    Affects Versions: 1.1.1
>         Environment: OS: Windows XP SP2
>            Reporter: Laurent CHARTIER
>            Assignee: Ruwan Linton
>         Attachments: SOAPUtils.patch
>
>
> When using org.apache.synapse.core.axis2.SOAPUtils.convertSOAP11toSOAP12() to convert a SOAP 1.1 message containing a SOAPFault to a SOAP 1.2 message, the method only converts the Envelope, the Header and the Body elements.
> The Fault element is not converted ans its structure is not transformed into a SOAP 1.2 Fault structure.
> Before using the method:
> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> After using the method:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
>          <faultcode>soapenv:Client</faultcode>
>          <faultstring>Erreur relative au referentiel des conventions. [Fichier de convention]</faultstring>
>          <faultactor>Referentiel des Conventions.</faultactor>
>          <detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>
> It should be:
> <soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope">
>    <soapenv:Body>
>       <soapenv:Fault>
>          <soapenv:Code>
>             <soapenv:Value>soapenv:Client</soapenv:Value>
>          </soapenv:Code>
>          <soapenv:Reason>
>             <soapenv:Text>Erreur relative au referentiel des conventions. [Fichier de convention]</soapenv:Text>
>          </soapenv:Reason>
>          <soapenv:Role>Referentiel des Conventions.</soapenv:Role>
>          <soapenv:Detail>Il n'y a pas de convention qui corresponde aux issuer, supplier et service</soapenv:Detail>
>       </soapenv:Fault>
>    </soapenv:Body>
> </soapenv:Envelope>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@synapse.apache.org
For additional commands, e-mail: dev-help@synapse.apache.org