You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Elena Tatarintseva (JIRA)" <ji...@apache.org> on 2012/07/26 15:58:34 UTC

[jira] [Created] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Elena Tatarintseva created CAMEL-5471:
-----------------------------------------

             Summary: Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
                 Key: CAMEL-5471
                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
             Project: Camel
          Issue Type: Bug
          Components: camel-blueprint
    Affects Versions: 2.9.3
         Environment: Windows 7
            Reporter: Elena Tatarintseva
            Priority: Minor
         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml

Install apache-karaf-2.2.8.
Start karaf container

features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
features:install cxf
features:install camel-cxf
features:install camel-blueprint
features:install camel-stream

Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header />
<soap:Body>
<ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
<incidentId>111</incidentId>
<incidentDate>2011-03-05</incidentDate>
<givenName>Christian</givenName>
<familyName>Mueller</familyName>
<summary>Bla</summary>
<details>Bla bla</details>
<email>cmueller@apache.org</email>
<phone>0049 69 1234567</phone>
</ns2:inputReportIncident>
</soap:Body>
</soap:Envelope>

Response is:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<soap:Fault>
<faultcode>soap:Server</faultcode>
<faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
</soap:Fault>
</soap:Body>
</soap:Envelope>

And the exception in karaf console.



--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13433136#comment-13433136 ] 

Daniel Kulp commented on CAMEL-5471:
------------------------------------


You likely need to add the allowStreaming=false to the cxf component (which will then involve DOM parsing and all the downsides that entails).   I THINK you could also force a conversion of the body to a String or similar prior to the multicast.
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13424727#comment-13424727 ] 

Elena Tatarintseva commented on CAMEL-5471:
-------------------------------------------

I search the reason of Talend bug: http://jira.talendforge.org/browse/TESB-6587.
In current version the TESB runtime include Apache Camel 2.9.3-SNAPSHOT and apache-karaf-2.2.8.

I found that this bug can be reproduced not only in our ServiceProxy example, but on Camel example too, if I use <multicast>.
If I don't use <multicast> I have no this exception.

So, if it can not be fixed on Camel side, please just provide information for TESB Runtime team, what kind of versions of Camel and Karaf can be used.
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

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

Elena Tatarintseva updated CAMEL-5471:
--------------------------------------

    Attachment: error.log.txt
                example.xml
                camel-example-cxf-blueprint-2.9.2.jar
    
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13425688#comment-13425688 ] 

Elena Tatarintseva commented on CAMEL-5471:
-------------------------------------------

I tried Camel 2.9.2, Java 6 and karaf 2.2.8. No "Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE" exception. 

                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Daniel Kulp (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426590#comment-13426590 ] 

Daniel Kulp commented on CAMEL-5471:
------------------------------------


One more request:  can you also try with the latest CXF snaphost?  I ran into similar errors two weeks ago with some Camel routes I was working with and ended up fixing a bunch of things in CXF along with some issues in Camel.

                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Christian Müller (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13423988#comment-13423988 ] 

Christian Müller commented on CAMEL-5471:
-----------------------------------------

Apache Camel 2.9.x was tested with Karaf 2.2.5 [1]
Apache Camel 2.9.x doesn't support Windows 7 [2]

Why did you install Camel 2.9.3-SNAPSHOT and use the Camel 2.9.2 example?
Could you try it with Camel 2.9.2 and Java 6 or Camel 2.10.0 and Java 7?

[1] http://camel.apache.org/karaf.html
[2] https://issues.apache.org/jira/browse/CAMEL-4955
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426387#comment-13426387 ] 

Elena Tatarintseva commented on CAMEL-5471:
-------------------------------------------

The same exception on Camel 2.9.3-SNAPSHOT (and camel-example-cxf-blueprint-2.9.3-SNAPSHOT) with Java 1.6_33:

java version "1.6.0_33"
Java(TM) SE Runtime Environment (build 1.6.0_33-b05)
Java HotSpot(TM) 64-Bit Server VM (build 20.8-b03, mixed mode)


<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <soap:Fault>
         <faultcode>soap:Server</faultcode>
         <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
      </soap:Fault>
   </soap:Body>
</soap:Envelope>
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13424745#comment-13424745 ] 

Elena Tatarintseva commented on CAMEL-5471:
-------------------------------------------

I use:

java version "1.6.0_20"
Java(TM) SE Runtime Environment (build 1.6.0_20-b02)
Java HotSpot(TM) Client VM (build 16.3-b01, mixed mode, sharing)
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426676#comment-13426676 ] 

Elena Tatarintseva commented on CAMEL-5471:
-------------------------------------------

With 2.7.0.SNAPSHOT the same error: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE.

   ID   State         Blueprint      Spring    Level  Name
[ 153] [Active     ] [            ] [       ] [   50] Apache CXF Compatibility Bundle Jar (2.7.0.SNAPSHOT)
[ 154] [Active     ] [            ] [       ] [   50] camel-core (2.9.3.SNAPSHOT)
[ 155] [Active     ] [Created     ] [       ] [   50] camel-karaf-commands (2.9.3.SNAPSHOT)
[ 156] [Active     ] [            ] [       ] [   50] camel-spring (2.9.3.SNAPSHOT)
[ 157] [Active     ] [            ] [       ] [   50] camel-cxf-transport (2.9.3.SNAPSHOT)
[ 158] [Active     ] [Created     ] [       ] [   50] camel-cxf (2.9.3.SNAPSHOT)
[ 159] [Active     ] [Created     ] [       ] [   50] camel-blueprint (2.9.3.SNAPSHOT)
[ 160] [Active     ] [            ] [       ] [   50] camel-stream (2.9.3.SNAPSHOT)
[ 161] [Active     ] [Created     ] [       ] [   80] camel-example-cxf-blueprint (2.9.3.SNAPSHOT)
[ 162] [Active     ] [Created     ] [       ] [   80] example.xml (0.0.0)

I installed next features:

features:addurl mvn:org.apache.cxf.karaf/apache-cxf/2.7.0-SNAPSHOT/xml/features
features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
features:install cxf
features:install camel-cxf
features:install camel-blueprint
features:install camel-stream

Is it test what did you mean?
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Assigned] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Christian Müller (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Christian Müller reassigned CAMEL-5471:
---------------------------------------

    Assignee: Christian Müller
    
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Comment Edited] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13433971#comment-13433971 ] 

Elena Tatarintseva edited comment on CAMEL-5471 at 8/14/12 7:24 PM:
--------------------------------------------------------------------

    <camelContext xmlns="http://camel.apache.org/schema/blueprint">
        <route>
            <from uri="routerEndpointFrom"/>
            <convertBodyTo type="java.lang.String" />
            <multicast>
                <to uri="log:proxyLog?level=INFO"/>
                <to uri="routerEndpointTo"/>
            </multicast>
        </route>
    </camelContext>

works ok. Thank you. Will discuss to our team do we need to change codegeneration of our example.


                
      was (Author: etatarintseva):
    Only strange that the same example works ok on Camel 2.9.2 and Camel 2.10.0. And only on Camel 2.9.3-SNAPSHOT we receive this exception.
But ok, I will try to make this changes.
                  
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Updated] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Christian Müller (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Christian Müller updated CAMEL-5471:
------------------------------------

    Attachment: camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar
    
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Comment Edited] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426676#comment-13426676 ] 

Elena Tatarintseva edited comment on CAMEL-5471 at 8/1/12 3:01 PM:
-------------------------------------------------------------------

With 2.7.0.SNAPSHOT the same error: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE.

   ID   State         Blueprint      Spring    Level  Name
[ 153] [Active     ] [            ] [       ] [   50] Apache CXF Compatibility Bundle Jar (2.7.0.SNAPSHOT)
[ 154] [Active     ] [            ] [       ] [   50] camel-core (2.9.3.SNAPSHOT)
[ 155] [Active     ] [Created     ] [       ] [   50] camel-karaf-commands (2.9.3.SNAPSHOT)
[ 156] [Active     ] [            ] [       ] [   50] camel-spring (2.9.3.SNAPSHOT)
[ 157] [Active     ] [            ] [       ] [   50] camel-cxf-transport (2.9.3.SNAPSHOT)
[ 158] [Active     ] [Created     ] [       ] [   50] camel-cxf (2.9.3.SNAPSHOT)
[ 159] [Active     ] [Created     ] [       ] [   50] camel-blueprint (2.9.3.SNAPSHOT)
[ 160] [Active     ] [            ] [       ] [   50] camel-stream (2.9.3.SNAPSHOT)
[ 161] [Active     ] [Created     ] [       ] [   80] camel-example-cxf-blueprint (2.9.3.SNAPSHOT)
[ 162] [Active     ] [Created     ] [       ] [   80] example.xml (0.0.0)

I installed next features:

features:addurl mvn:org.apache.cxf.karaf/apache-cxf/2.7.0-SNAPSHOT/xml/features
features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
features:install cxf
features:install camel-cxf
features:install camel-blueprint
features:install camel-stream

It is that test which you meant?
                
      was (Author: etatarintseva):
    With 2.7.0.SNAPSHOT the same error: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE.

   ID   State         Blueprint      Spring    Level  Name
[ 153] [Active     ] [            ] [       ] [   50] Apache CXF Compatibility Bundle Jar (2.7.0.SNAPSHOT)
[ 154] [Active     ] [            ] [       ] [   50] camel-core (2.9.3.SNAPSHOT)
[ 155] [Active     ] [Created     ] [       ] [   50] camel-karaf-commands (2.9.3.SNAPSHOT)
[ 156] [Active     ] [            ] [       ] [   50] camel-spring (2.9.3.SNAPSHOT)
[ 157] [Active     ] [            ] [       ] [   50] camel-cxf-transport (2.9.3.SNAPSHOT)
[ 158] [Active     ] [Created     ] [       ] [   50] camel-cxf (2.9.3.SNAPSHOT)
[ 159] [Active     ] [Created     ] [       ] [   50] camel-blueprint (2.9.3.SNAPSHOT)
[ 160] [Active     ] [            ] [       ] [   50] camel-stream (2.9.3.SNAPSHOT)
[ 161] [Active     ] [Created     ] [       ] [   80] camel-example-cxf-blueprint (2.9.3.SNAPSHOT)
[ 162] [Active     ] [Created     ] [       ] [   80] example.xml (0.0.0)

I installed next features:

features:addurl mvn:org.apache.cxf.karaf/apache-cxf/2.7.0-SNAPSHOT/xml/features
features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
features:install cxf
features:install camel-cxf
features:install camel-blueprint
features:install camel-stream

Is it test what did you mean?
                  
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13433061#comment-13433061 ] 

Claus Ibsen commented on CAMEL-5471:
------------------------------------

When using streaming you need to use stream caching to ensure the stream can be re-read when doing multicast etc.
http://camel.apache.org/stream-caching.html

I guess maybe camel-cxf got some recent optimizations in streaming mode, so its not re-readable out of the box anymore.
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Comment Edited] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13425688#comment-13425688 ] 

Elena Tatarintseva edited comment on CAMEL-5471 at 7/31/12 12:26 PM:
---------------------------------------------------------------------

I tried Camel 2.9.2, Java 6 and karaf 2.2.8. No "Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE" exception. 
And Camel 2.10.0, Java 6 and karaf 2.2.8. No "Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE" exception too.

So, this exception exists only in Camel 2.9.3-SNAPSHOT version.

                
      was (Author: etatarintseva):
    I tried Camel 2.9.2, Java 6 and karaf 2.2.8. No "Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE" exception. 

                  
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13427151#comment-13427151 ] 

Elena Tatarintseva commented on CAMEL-5471:
-------------------------------------------

Of course incident service works ok.

The problem is in route with <multicast>. 

Please copy example.xml from attachment of this bug to deploy folder with camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar 
and from soapUI send request to the route:

http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident

Port 8182.



                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Christian Müller (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13424735#comment-13424735 ] 

Christian Müller commented on CAMEL-5471:
-----------------------------------------

More interesting would be to know whether you can reproduce it with Java 6? Java 7 is not supported for that version.
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Christian Müller (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426126#comment-13426126 ] 

Christian Müller commented on CAMEL-5471:
-----------------------------------------

Could you check Camel 2.9.3-SNAPSHOT with a newer JDK 6 version. 1.6.0_20 is a bit outdated. The actual version is 1.6.0_33.
I use:
Christian-Muellers-MacBook-Pro:~ cmueller$ java -version
java version "1.6.0_33"
Java(TM) SE Runtime Environment (build 1.6.0_33-b03-424-11M3720)
Java HotSpot(TM) 64-Bit Server VM (build 20.8-b03-424, mixed mode)
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Christian Müller (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426913#comment-13426913 ] 

Christian Müller commented on CAMEL-5471:
-----------------------------------------

I build Camel 2.9.3-SNAPSHOT (rev 1366594) on my machine:

{noformat}
Apache Maven 3.0.4 (r1232337; 2012-01-17 09:44:56+0100)
Maven home: /Applications/apache-maven-3.0.4
Java version: 1.6.0_33, vendor: Apple Inc.
Java home: /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home
Default locale: en_US, platform encoding: MacRoman
OS name: "mac os x", version: "10.8", arch: "x86_64", family: "mac"
{noformat}

Afterwards I started Karaf 2.2.8 and executed the following commands:
{noformat}
features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
features:install cxf
features:install camel-cxf
features:install camel-blueprint
features:install camel-stream
{noformat}

Then I copied camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar into the Karaf's deploy folder (attached).
Than I stopped and started Karaf (I found some ClassNotFoundExceptions).

I used SOAPUI to send your request to the incident service and got the following result:

{code:xml}
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:outputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
         <code>Accepted</code>
      </ns2:outputReportIncident>
   </soap:Body>
</soap:Envelope>
{code}

Looks good to me so far...

Best,
Christian
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Christian Müller (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13426875#comment-13426875 ] 

Christian Müller commented on CAMEL-5471:
-----------------------------------------

I will give it a try...
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

[jira] [Commented] (CAMEL-5471) Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE

Posted by "Elena Tatarintseva (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-5471?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13433971#comment-13433971 ] 

Elena Tatarintseva commented on CAMEL-5471:
-------------------------------------------

Only strange that the same example works ok on Camel 2.9.2 and Camel 2.10.0. And only on Camel 2.9.3-SNAPSHOT we receive this exception.
But ok, I will try to make this changes.
                
> Exception: Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE 
> ----------------------------------------------------------------------------
>
>                 Key: CAMEL-5471
>                 URL: https://issues.apache.org/jira/browse/CAMEL-5471
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-blueprint
>    Affects Versions: 2.9.3
>         Environment: Windows 7
>            Reporter: Elena Tatarintseva
>            Assignee: Christian Müller
>            Priority: Minor
>         Attachments: camel-example-cxf-blueprint-2.9.2.jar, camel-example-cxf-blueprint-2.9.3-SNAPSHOT.jar, error.log.txt, example.xml
>
>
> Install apache-karaf-2.2.8.
> Start karaf container
> features:addurl mvn:org.apache.camel.karaf/apache-camel/2.9.3-SNAPSHOT/xml/features
> features:install cxf
> features:install camel-cxf
> features:install camel-blueprint
> features:install camel-stream
> Copy to deploy folder camel-example-cxf-blueprint-2.9.2.jar and example.xml.
> In SoapUI : http://localhost:8182/cxf/camel-example-cxf-blueprint/webservices/incident
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Header />
> <soap:Body>
> <ns2:inputReportIncident xmlns:ns2="http://reportincident.example.camel.apache.org">
> <incidentId>111</incidentId>
> <incidentDate>2011-03-05</incidentDate>
> <givenName>Christian</givenName>
> <familyName>Mueller</familyName>
> <summary>Bla</summary>
> <details>Bla bla</details>
> <email>cmueller@apache.org</email>
> <phone>0049 69 1234567</phone>
> </ns2:inputReportIncident>
> </soap:Body>
> </soap:Envelope>
> Response is:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>Current state not START_ELEMENT, END_ELEMENT or ENTITY_REFERENCE</faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> And the exception in karaf console.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira