Package com.fuelkiosk.camture.streamsws

Examples of com.fuelkiosk.camture.streamsws.ConnectionType


     * the correct address once returned
     * @param port
     * @return
     */
    public ConnectionType createConnection(final int port) {
        final ConnectionType connection = factory.createConnectionType();
        String host;
        try {
            host = InetAddress.getLocalHost().getHostAddress();           
        } catch (UnknownHostException ex) {
            logger.warning(ex.getLocalizedMessage());
            host = "";
        }
        connection.setHostAddress(host);
        connection.setPort(BigInteger.valueOf(port));
        return connection;
    }
View Full Code Here

TOP

Related Classes of com.fuelkiosk.camture.streamsws.ConnectionType

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.