private Map<String, String> getTransportProperties(ProtocolStackConfigurator config)
{
Map<String, String> tpProps = null;
ProtocolData[] protocols= ProtocolStackUtil.getProtocolData(config);
ProtocolData transport=protocols[0];
@SuppressWarnings("unchecked")
Map<String,ProtocolParameter> tmp=transport.getParameters();
tpProps = new HashMap<String,String>();
for(Map.Entry<String,ProtocolParameter> entry: tmp.entrySet())
{
tpProps.put(entry.getKey(), entry.getValue().getValue());
}