wsif.properties 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # wsif.properties is used to configure WSIF.
  3. #
  4. # Two properties are used to override which WSIFProvider is selected when there
  5. # exists multiple providers supporting the same namespace URI. These properties are:
  6. #
  7. # wsif.provider.default.CLASSNAME=N
  8. # wsif.provider.uri.M.CLASSNAME=URI
  9. #
  10. # CLASSNAME is the WSIFProvider class name
  11. # N is the number of following default wsif.provider.uri.M.CLASSNAME properties
  12. # M is a number from 1 to N to uniquely identify each wsif.provider.uri.M.CLASSNAME
  13. # property key.
  14. # For example the following two properties would override the default SOAP provider
  15. # to be the Apache SOAP provider:
  16. #
  17. # wsif.provider.default.org.apache.wsif.providers.soap.apachesoap.WSIFDynamicProvider_ApacheSOAP=1
  18. # wsif.provider.uri.1.org.apache.wsif.providers.soap.apachesoap.WSIFDynamicProvider_ApacheSOAP=\
  19. # http://schemas.xmlsoap.org/wsdl/soap/
  20. #
  21. # maximum number of milliseconds to wait for a response to a synchronous request.
  22. # Default value if not defined is to wait forever.
  23. wsif.syncrequest.timeout=60000
  24. # maximum number of seconds to wait for a response to an async request.
  25. # if not defined on invalid defaults to no timeout
  26. wsif.asyncrequest.timeout=60
  27. wsif.servicefactory=customfactory.client.CustomServiceFactoryImpl
  28. # whether WSIF supports unreferenced attachments. Either on or off. Default is off.
  29. wsif.unreferencedattachments=off
  30. # The class name of an implementation of WSIFTransactionControl that will suspend
  31. # and resume a global transaction around a JMS put (for instance).
  32. #wsif.transactioncontrol.impl=""