Package com.sosnoski.seismic.common

Examples of com.sosnoski.seismic.common.Query


            throw new RuntimeException("Error: " + ex.getMessage(), ex);
        }
    }

    protected Object runQuery(QueryData data, Object stub) {
        Query query = new Query();
        query.setMinDateTime(new Date(data.m_timeMin));
        query.setMaxDateTime(new Date(data.m_timeMax));
        query.setMinLatitude(new Float(data.m_latMin));
        query.setMaxLatitude(new Float(data.m_latMax));
        query.setMinLongitude(new Float(data.m_longMin));
        query.setMaxLongitude(new Float(data.m_longMax));
        Response response = null;
        try {
//            SoapClient client = (SoapClient)stub;
//            client.setOperationName("urn:query");
            Client client = (Client)stub;
View Full Code Here

TOP

Related Classes of com.sosnoski.seismic.common.Query

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.