⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testorderrequest.java

📁 j2ee API 开发重要工具 免费下载 欢迎使用
💻 JAVA
字号:
/* * Copyright (c) 2003 Sun Microsystems, Inc.  All rights reserved.  U.S. * Government Rights - Commercial software.  Government users are subject * to the Sun Microsystems, Inc. standard license agreement and * applicable provisions of the FAR and its supplements.  Use is subject * to license terms. * * This distribution may include materials developed by third parties. * Sun, Sun Microsystems, the Sun logo, Java and J2EE are trademarks * or registered trademarks of Sun Microsystems, Inc. in the U.S. and * other countries. * * Copyright (c) 2003 Sun Microsystems, Inc. Tous droits reserves. * * Droits du gouvernement americain, utilisateurs gouvernementaux - logiciel * commercial. Les utilisateurs gouvernementaux sont soumis au contrat de * licence standard de Sun Microsystems, Inc., ainsi qu'aux dispositions * en vigueur de la FAR (Federal Acquisition Regulations) et des * supplements a celles-ci.  Distribue par des licences qui en * restreignent l'utilisation. * * Cette distribution peut comprendre des composants developpes par des * tierces parties. Sun, Sun Microsystems, le logo Sun, Java et J2EE * sont des marques de fabrique ou des marques deposees de Sun * Microsystems, Inc. aux Etats-Unis et dans d'autres pays. */package com.sun.cb;import java.net.*;import java.io.*;import java.util.*;import javax.xml.soap.*;public class TestOrderRequest {    public static void main(String [] args) {            try {            SOAPConnectionFactory scf = SOAPConnectionFactory.newInstance();            SOAPConnection con = scf.createConnection();            MessageFactory mf = MessageFactory.newInstance();                    SOAPMessage msg = mf.createMessage();            // Access the SOABBody object            SOAPPart part = msg.getSOAPPart();            SOAPEnvelope envelope = part.getEnvelope();            SOAPBody body = envelope.getBody();            // Create the appropriate elements and add them            Name bodyName = envelope.createName("coffee-order", "PO",                            "http://sonata.coffeebreak.com");            SOAPBodyElement order = body.addBodyElement(bodyName);            // orderID            Name orderIDName = envelope.createName("orderID");            SOAPElement orderID =                order.addChildElement(orderIDName);            orderID.addTextNode("1234");            // customer            Name childName = envelope.createName("customer");            SOAPElement customer = order.addChildElement(childName);            childName = envelope.createName("last-name");            SOAPElement lastName = customer.addChildElement(childName);            lastName.addTextNode("Pental");            childName = envelope.createName("first-name");            SOAPElement firstName = customer.addChildElement(childName);            firstName.addTextNode("Ragni");            childName = envelope.createName("phone-number");            SOAPElement phoneNumber = customer.addChildElement(childName);            phoneNumber.addTextNode("908 983-6789");            childName = envelope.createName("email-address");            SOAPElement emailAddress =                 customer.addChildElement(childName);            emailAddress.addTextNode("ragnip@aol.com");            // address            childName = envelope.createName("address");            SOAPElement address = order.addChildElement(childName);            childName = envelope.createName("street");            SOAPElement street = address.addChildElement(childName);            street.addTextNode("9876 Central Way");            childName = envelope.createName("city");            SOAPElement city = address.addChildElement(childName);            city.addTextNode("Rainbow");            childName = envelope.createName("state");            SOAPElement state = address.addChildElement(childName);            state.addTextNode("CA");            childName = envelope.createName("zip");            SOAPElement zip = address.addChildElement(childName);            zip.addTextNode("99999");                // line-item 1            childName = envelope.createName("line-item");            SOAPElement lineItem = order.addChildElement(childName);            childName = envelope.createName("coffeeName");            SOAPElement coffeeName = lineItem.addChildElement(childName);            coffeeName.addTextNode("arabica");            childName = envelope.createName("pounds");            SOAPElement pounds = lineItem.addChildElement(childName);            pounds.addTextNode("2");            childName = envelope.createName("price");            SOAPElement price = lineItem.addChildElement(childName);            price.addTextNode("10.95");            // line-item 2            childName = envelope.createName("coffee-name");            SOAPElement coffeeName2 = lineItem.addChildElement(childName);            coffeeName2.addTextNode("espresso");            childName = envelope.createName("pounds");            SOAPElement pounds2 = lineItem.addChildElement(childName);            pounds2.addTextNode("3");            childName = envelope.createName("price");            SOAPElement price2 = lineItem.addChildElement(childName);            price2.addTextNode("10.95");            // total            childName = envelope.createName("total");            SOAPElement total = order.addChildElement(childName);            total.addTextNode("21.90");                URL endpoint = new URL(                URLHelper.getSaajURL() + "/orderCoffee");            SOAPMessage reply = con.call(msg, endpoint);            con.close();            // extract content of reply            //Extracting order ID and ship date            SOAPBody sBody = reply.getSOAPPart().getEnvelope().getBody();            Iterator bodyIt = sBody.getChildElements();            SOAPBodyElement sbEl = (SOAPBodyElement)bodyIt.next();            Iterator bodyIt2 = sbEl.getChildElements();            // get orderID            SOAPElement ID = (SOAPElement)bodyIt2.next();            String id = ID.getValue();            // get ship date            SOAPElement sDate = (SOAPElement)bodyIt2.next();            String shippingDate = sDate.getValue();            System.out.println("");            System.out.println("");            System.out.println("Confirmation for order #" + id);            System.out.print("Your order will be shipped on ");            System.out.println(shippingDate);            } catch(Exception e) {            e.printStackTrace();        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -