Package org.switchyard.quickstarts.http.binding

Source Code of org.switchyard.quickstarts.http.binding.HttpBindingClient

/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat, Inc. and/or its affiliates, and individual
* contributors by the @authors tag. See the copyright.txt in the
* distribution for a full listing of individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.switchyard.quickstarts.http.binding;

import org.switchyard.component.test.mixins.http.HTTPMixIn;

/**
* Client for HTTP binding.
*
* @author Magesh Kumar B <mageshbk@jboss.com> (C) 2012 Red Hat Inc.
*/
public class HttpBindingClient {

    private static final int DEFAULT_PORT = 8080;
    private static final String KEY_PORT = "org.switchyard.component.http.client.port";

    public static void main(String[] args) throws Exception {
        if (args.length == 0) {
            System.out.println("Usage: HttpBindingClient stock-quote-symbol");
            return;
        } else {
            int port = DEFAULT_PORT;
            String portstr = System.getProperty(KEY_PORT);
            if (portstr != null) {
                port = Integer.parseInt(portstr);
            }
            HTTPMixIn http = new HTTPMixIn();
            http.initialize();
            String endpointURL = "http://localhost:" + port + "/http-binding/quote";
            System.out.println(" Request: " + endpointURL + " -> " + args[0]);
            String response = http.sendString(endpointURL, args[0], HTTPMixIn.HTTP_POST);
            System.out.println("Response: " + response);
        }
    }
}
TOP

Related Classes of org.switchyard.quickstarts.http.binding.HttpBindingClient

TOP
Copyright © 2018 www.massapi.com. 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.