Package samples.databinding

Source Code of samples.databinding.StockClient2

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 samples.databinding;

import org.apache.axiom.om.OMAbstractFactory;
import org.apache.axiom.om.OMDataSource;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMOutputFormat;
import org.apache.axiom.om.ds.AbstractPushOMDataSource;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.input.StAXBuilder;
import org.jdom.output.StAXOutputter;
import org.jdom.xpath.XPath;

import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import javax.xml.stream.XMLStreamWriter;

import java.io.IOException;
import java.io.OutputStream;
import java.io.Writer;

public final class StockClient2 {
    public static void main(String[] args) throws Exception {
        if (args.length != 2) {
            System.err.println("Usage: StockClient <url> <symbol>");
            return;
        }
        final String url = args[0];
        final String symbol = args[1];

        System.out.println();
        System.out.println("Getting Stock Quote for " + symbol);

        StockQuoteServiceStub stub =
                new StockQuoteServiceStub(url);
        stub._getServiceClient().getOptions().setAction("getStockQuote");

        Element element1 = new Element(
            "getStockQuote", "nsl", "http://w3.ibm.com/schemas/services/2002/11/15/stockquote");
        Element element2 = new Element("symbol");
        element2.addContent(symbol);
        element1.addContent(element2);

        OMFactory factory = OMAbstractFactory.getOMFactory();
        org.apache.axiom.om.OMDataSource src = new JDOMDataSource(element1);
        org.apache.axiom.om.OMNamespace appns = factory.createOMNamespace("http://w3.ibm.com/schemas/services/2002/11/15/stockquote", "ns1");
        OMElement child = factory.createOMElement(src, "getStockQuote", appns);

        OMElement response = stub.getStockQuote(child);

        StAXBuilder builder = new StAXBuilder();
        Document doc = builder.build(response.getXMLStreamReader());
        XPath path = XPath.newInstance("//price");
        Element price = (Element) path.selectSingleNode(doc.getRootElement());
        System.out.println("Price = " + price.getText());
    }

    private static class JDOMDataSource extends AbstractPushOMDataSource {
        private final Element data;

        private JDOMDataSource(Element data) {
            this.data = data;
        }

        public void serialize(XMLStreamWriter xmlWriter) throws XMLStreamException {
            StAXOutputter outputter = new StAXOutputter(xmlWriter);
            try {
                outputter.outputFragment(data);
            } catch (JDOMException e) {
                throw new XMLStreamException(e);
            }
        }
    }
}
TOP

Related Classes of samples.databinding.StockClient2

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.