You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Glen Mazza (Created) (JIRA)" <ji...@apache.org> on 2011/11/21 18:32:52 UTC

[jira] [Created] (CAMEL-4701) Simplifications to camel-example-cxf

Simplifications to camel-example-cxf
------------------------------------

                 Key: CAMEL-4701
                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
             Project: Camel
          Issue Type: Improvement
          Components: examples
    Affects Versions: 2.9.0
            Reporter: Glen Mazza
            Priority: Minor
             Fix For: 2.9.0


Patch makes following changes to the camel-example-cxf example:

1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
    created during testing.
3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
5.) Reformatted the pom to 4-space no tab indentation.


--
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-4701) Simplifications to camel-example-cxf

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

Hadrian Zbarcea commented on CAMEL-4701:
----------------------------------------

@Glen, thanks for the patch; svn patches including moved files, renames, etc. are kinda unpleasant. Will apply it tomorrow.
                
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Glen Mazza commented on CAMEL-4701:
-----------------------------------

Hold off on this, I'm resubmitting a patch...
                
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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] [Issue Comment Edited] (CAMEL-4701) Simplifications to camel-example-cxf

Posted by "Glen Mazza (Issue Comment Edited) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/CAMEL-4701?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13155836#comment-13155836 ] 

Glen Mazza edited comment on CAMEL-4701 at 11/23/11 12:47 PM:
--------------------------------------------------------------

But those three files are only used during JUnit testing, not deployment (the configuration is done within the Java code for the latter).  They're not being removed but moved to test/main/resources/META-INF.  Resources that are needed only during testing should only be in the latter folder, to save the user the confusion of wondering of why they are in the src/ branch but unused.

                
      was (Author: gmazza):
    But those three files are only used during JUnit testing, not deployment (the configuration is done within the Java code for the latter).  They're not being removed but moved to test/main/resources/META-INF.  Resources that are needed only during testing should only be in the latter folder, to save the user the confusion of wondering what they are there for.

                  
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Glen Mazza updated CAMEL-4701:
------------------------------

    Attachment: camelExampleCXF2.patch
    
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch, camelExampleCXF2.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Willem Jiang commented on CAMEL-4701:
-------------------------------------

Just one comment for the change 1.
The spring files in the src/main/resources/META-INF are used for the Karaf or ServiceMix. In this way, we could deploy the example bundle into the OSGi container without any trouble. Please don't remove them.

                
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Glen Mazza updated CAMEL-4701:
------------------------------

    Description: 
Patch makes following changes to the camel-example-cxf example:

1.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
    created during testing.
2.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
3.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
4.) Reformatted the pom to 4-space no tab indentation.


  was:
Patch makes following changes to the camel-example-cxf example:

1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
    created during testing.
3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
5.) Reformatted the pom to 4-space no tab indentation.


    
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch, camelExampleCXF2.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 2.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 3.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 4.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Glen Mazza commented on CAMEL-4701:
-----------------------------------

But those three files are only used during JUnit testing, not deployment (the configuration is done within the Java code for the latter).  They're not being removed but moved to test/main/resources/META-INF.  Resources that are needed only during testing should only be in the latter folder, to save the user the confusion of wondering what they are there for.

                
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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] [Resolved] (CAMEL-4701) Simplifications to camel-example-cxf

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

Claus Ibsen resolved CAMEL-4701.
--------------------------------

    Resolution: Fixed

Thanks Glen for the patch.

Yeah patch rename does not go so well. So I frankly just removed the old files, and added the new ones.
                
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch, camelExampleCXF2.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 2.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 3.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 4.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Glen Mazza commented on CAMEL-4701:
-----------------------------------

OK, new patch (camelExampleCXF2.patch) completely replaces the earlier one, and retains those config files under src/main/resources/META-INF.  Also a comment added to three of the config files that are not used in standalone deployment.



                
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch, camelExampleCXF2.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Hadrian Zbarcea reassigned CAMEL-4701:
--------------------------------------

    Assignee: Hadrian Zbarcea
    
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Glen Mazza commented on CAMEL-4701:
-----------------------------------

OK, I think I see what you're saying -- the "main" classes used for standalone deployment aren't activated when you deploy as an OSGi bundle, so, indeed, the three configuration files are being used for OSGi deployment.  Those three config files should be retained in main/resources/META-INF then.  In a subsequent patch I can add a comment that those three files are used only for JUnit testing and OSGi deployment so a standalone deployer won't get confused why those files are being ignored.

                
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Assignee: Hadrian Zbarcea
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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-4701) Simplifications to camel-example-cxf

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

Glen Mazza updated CAMEL-4701:
------------------------------

    Attachment: camelExampleCXF.patch
    
> Simplifications to camel-example-cxf
> ------------------------------------
>
>                 Key: CAMEL-4701
>                 URL: https://issues.apache.org/jira/browse/CAMEL-4701
>             Project: Camel
>          Issue Type: Improvement
>          Components: examples
>    Affects Versions: 2.9.0
>            Reporter: Glen Mazza
>            Priority: Minor
>             Fix For: 2.9.0
>
>         Attachments: camelExampleCXF.patch
>
>
> Patch makes following changes to the camel-example-cxf example:
> 1.) To reduce user confusion, src/main/resources/META-INF spring resources used only during testing moved to test/main/resources instead.
> 2.) In JAXRS testing, switched the default auto-created book ID from 123 to 101 so it doesn't conflict with the 123-id'ed book subsequently
>     created during testing.
> 3.) Moved the httptojms example from root CXF folder to its own folder (...example.cxf.httptojms) as a sibling folder to the other three samples.
> 4.) To simplify, moved the JmsBroker class to the httptojms folder, as it is only that sample using it.
> 5.) Reformatted the pom to 4-space no tab indentation.

--
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