Package org.apache.jmeter.protocol.jms
Class Utils
java.lang.Object
org.apache.jmeter.protocol.jms.Utils
Utility methods for JMS protocol.
WARNING - the API for this class is likely to change!
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
addJMSProperties
(javax.jms.Message msg, Map<String, Object> map) Set JMS Properties to msgstatic void
close
(javax.jms.Connection closeable, org.slf4j.Logger log) static void
close
(javax.jms.MessageConsumer closeable, org.slf4j.Logger log) static void
close
(javax.jms.MessageProducer closeable, org.slf4j.Logger log) static void
close
(javax.jms.Session closeable, org.slf4j.Logger log) static JMSProperties
ConvertsArguments
toJMSProperties
defaulting to String type Used to convert version <= 2.10 test plansstatic javax.jms.Connection
getConnection
(Context ctx, String factoryName) Obtain the queue connection from the context and factory name.static String
getFromEnvironment
(Context context, String key) Get value from Context environment taking into account non fully compliant JNDI implementationsstatic javax.jms.Destination
lookupDestination
(Context context, String name) Method will lookup a given destination (topic/queue) using JNDI.static StringBuilder
messageProperties
(StringBuilder sb, javax.jms.Message msg) static String
messageProperties
(javax.jms.Message msg) static StringBuilder
requestHeaders
(StringBuilder sb, javax.jms.Message msg)
-
Field Details
-
DEFAULT_PRIORITY_4
- See Also:
-
DEFAULT_NO_EXPIRY
- See Also:
-
-
Constructor Details
-
Utils
public Utils()
-
-
Method Details
-
close
public static void close(javax.jms.MessageConsumer closeable, org.slf4j.Logger log) -
close
public static void close(javax.jms.Session closeable, org.slf4j.Logger log) -
close
public static void close(javax.jms.Connection closeable, org.slf4j.Logger log) -
close
public static void close(javax.jms.MessageProducer closeable, org.slf4j.Logger log) - Parameters:
closeable
-MessageProducer
log
-Logger
-
messageProperties
-
messageProperties
-
requestHeaders
-
lookupDestination
public static javax.jms.Destination lookupDestination(Context context, String name) throws NamingException Method will lookup a given destination (topic/queue) using JNDI.- Parameters:
context
- context to use for lookupname
- the destination name- Returns:
- the destination, never null
- Throws:
NamingException
- if the name cannot be found as a Destination
-
getFromEnvironment
Get value from Context environment taking into account non fully compliant JNDI implementations- Parameters:
context
- context to usekey
- key to lookup in contexts environment- Returns:
- String or
null
if context.getEnvironment() is not compliant - Throws:
NamingException
- if a naming problem occurs while getting the environment
-
getConnection
public static javax.jms.Connection getConnection(Context ctx, String factoryName) throws javax.jms.JMSException, NamingException Obtain the queue connection from the context and factory name.- Parameters:
ctx
- context to usefactoryName
- name of the object factory to look up incontext
- Returns:
- the queue connection
- Throws:
javax.jms.JMSException
- when creation of the connection failsNamingException
- when lookup in context fails
-
addJMSProperties
public static void addJMSProperties(javax.jms.Message msg, Map<String, Object> map) throws javax.jms.JMSExceptionSet JMS Properties to msg- Parameters:
msg
- Message to operate onmap
- Map of Properties to be set on the message- Throws:
javax.jms.JMSException
- whenmsg
throws aJMSException
while the properties get set
-
convertArgumentsToJmsProperties
ConvertsArguments
toJMSProperties
defaulting to String type Used to convert version <= 2.10 test plans- Parameters:
args
-Arguments
to be converted- Returns:
- jmsProperties The converted
JMSProperties
-