Package org.jboss.soa.esb.message

Examples of org.jboss.soa.esb.message.MessagePayloadProxy


*/
public class StringToLongConverter extends AbstractActionPipelineProcessor {
    private MessagePayloadProxy payloadProxy;

    public StringToLongConverter(ConfigTree config) {
        payloadProxy = new MessagePayloadProxy(config,
                                               new String[] {ActionUtils.POST_ACTION_DATA},
                                               new String[] {ActionUtils.POST_ACTION_DATA});
    }
View Full Code Here


        transformerConfig = createConfig(config);
        failOnWarning = config.getBooleanAttribute("failOnWarning", true);
        validation = config.getBooleanAttribute("validation", false);
        schemaFile = config.getAttribute("schemaFile");
        schemaLanguage = config.getAttribute("schemaLanguage");
        payloadProxy = new MessagePayloadProxy(config);
        transformerPoolSize = getMaxThreadsFromParentConfigTree(config);
    }
View Full Code Here

  private Map<QName,SOAPProxyTransport> binding_to_transport = new HashMap<QName,SOAPProxyTransport>();
 
  @SuppressWarnings({ "unchecked", "rawtypes" })
  public SOAPProxy(ConfigTree config) throws ConfigurationException
  {
    payloadProxy = new MessagePayloadProxy(config);
    initialiseContractPublisher(config);
    SOAPProxyWsdlLoader wsdl_loader = SOAPProxyWsdlLoader.newLoader(config);
    Definition wsdl_def;
    try
    {
View Full Code Here

            throw new MessageStoreException(e);
        }
    }

    public void setConfiguration(ConfigTree config) throws ConfigurationException {
        payloadProxy = new MessagePayloadProxy(config,
                                               new String[] {BytesBody.BYTES_LOCATION},
                                               new String[] {BytesBody.BYTES_LOCATION});
    }
View Full Code Here

            legacySetLocs = new String[] {responseLocation, ActionUtils.POST_ACTION_DATA};
        } else {
            legacySetLocs = new String[] {ActionUtils.POST_ACTION_DATA};
        }

        payloadProxy = new MessagePayloadProxy(config, legacyGetLocs, legacySetLocs);
    }
View Full Code Here

            {
                operationName = soapAction;
            }
        }
       
        payloadProxy = new MessagePayloadProxy(config);
    }
View Full Code Here

    private static final String[] legacyGetPayloadLocations = new String[] {BytesBody.BYTES_LOCATION};
    private static final String[] legacySetPayloadLocations = new String[] {BytesBody.BYTES_LOCATION};

    public ObjectMapper() {
        // Unconfigurable payload proxy...
        this.payloadProxy = new MessagePayloadProxy(new ConfigTree("null-config"),
                                                    legacyGetPayloadLocations,
                                                    legacySetPayloadLocations);
        payloadProxy.setNullGetPayloadHandling(MessagePayloadProxy.NullPayloadHandling.NONE);
    }
View Full Code Here

                                                    legacySetPayloadLocations);
        payloadProxy.setNullGetPayloadHandling(MessagePayloadProxy.NullPayloadHandling.NONE);
    }

    public ObjectMapper(ConfigTree config) {
        this.payloadProxy = new MessagePayloadProxy(config,
                                                    legacyGetPayloadLocations,
                                                    legacySetPayloadLocations);
    }
View Full Code Here

        state.setIndex(index+1) ;
        return result ;
    }

    public static MessagePayloadProxy createPayloadProxy(ConfigTree config) {
        return  new MessagePayloadProxy(config,
                new String[] {BytesBody.BYTES_LOCATION},
                new String[] {Body.DEFAULT_LOCATION, BytesBody.BYTES_LOCATION});
    }
View Full Code Here

    protected BaseWebService(final String deployment, final ServiceInvoker serviceInvoker, final String requestLocation, final String responseLocation, final String action)
        throws MessageDeliverException
    {
        this.deployment = deployment ;
        this.serviceInvoker = serviceInvoker ;
        requestProxy = new MessagePayloadProxy(null, requestLocation) ;
        responseProxy = new MessagePayloadProxy(responseLocation, null) ;
        this.action = action ;
    }
View Full Code Here

TOP

Related Classes of org.jboss.soa.esb.message.MessagePayloadProxy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.