Guest User

Untitled

a guest
May 17th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. include "../../../../../etc/domains/artix.cfg";
  2.  
  3. demos {
  4. corba_soap_http {
  5.  
  6. server {
  7. orb_plugins = ["xmlfile_log_stream", "soap", "at_http"];
  8. };
  9.  
  10. corba {
  11. orb_plugins = ["iiop_profile", "giop", "iiop"];
  12. };
  13.  
  14. router {
  15. # Plugins are needed to communicate with the Web service clients and servers
  16. # The routing plugin implements the routing functionality
  17. orb_plugins = ["local_log_stream", "routing", "iiop_profile", "giop", "iiop", "soap", "http", "artix_security" ];
  18.  
  19. plugins:artix_security:shlib_name = "it_security_plugin";
  20. binding:artix:client_request_interceptor_list = "security+principal_context";
  21.  
  22. principal_sponsor:wsse:use_principal_sponsor = "true";
  23. principal_sponsor:wsse:auth_method_id = "USERNAME_PASSWORD";
  24. principal_sponsor:wsse:auth_method_data = ["username=test_username", "password=test_password"];
  25.  
  26.  
  27. # The path to the WSDL file that includes the routing element
  28. plugins:routing:wsdl_url="../../etc/router.wsdl";
  29. event_log:filters = ["*=*"];
  30. plugins:local_log_stream:filename="router.log";
  31.  
  32.  
  33. };
  34.  
  35. };
  36. };
Add Comment
Please, Sign In to add comment