Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: just some reflowing

...

Code Block
xml
xml
 <conduit name="{http://example.com/}HelloWorldServicePort.http-conduit"
   xmlns="http://cxf.apache.org/transports/http/configuration">
   <authorization>
      <AuthorizationType>Basic</AuthorizationType>
      <UserName>myuser</UserName>
      <Password>mypasswd</Password>
   </authorization>
 </conduit>

...

Code Block
xml
xml
titleHTTP conduit configuration for spnego with single sign on
 ...
 <conduit name="{http://example.com/}HelloWorldServicePort.http-conduit"
   xmlns="http://cxf.apache.org/transports/http/configuration">
   <authorization>
      <AuthorizationType>Negotiate</AuthorizationType>
      <Authorization>CXFClient</Authorization>
   </authorization>
 </conduit>
 ...

...