jboss-fuse / wsdl2rest

A tool allowing quick migration from existing JAX-WS services to REST
Apache License 2.0
25 stars 22 forks source link

provide an option to select transport #97

Open ffang opened 4 years ago

ffang commented 4 years ago

currently in the generated camel-context.xml, the jetty transport is used like

<restConfiguration component="jetty" host="localhost" port="8080" bindingMode="json">
        </restConfiguration>

Would be handy to provide an option so that we can select which transport whe want to use for Rest DSL(undertow/servlet, etc) like

<restConfiguration component="servlet" host="localhost" port="8080" bindingMode="auto">
        </restConfiguration>