ผมเข้าใจปัญหาของคุณเดือดลงไปวิธีการเรียกสบู่ (JAX-WS) บริการเว็บจาก Java และได้รับวัตถุกลับมาของมัน ในกรณีนี้คุณมีสองแนวทางที่เป็นไปได้:
- สร้างคลาส Java ผ่าน
wsimport
และใช้งาน หรือ
- สร้างไคลเอนต์ SOAP ที่:
- ทำให้พารามิเตอร์ของบริการเป็นอนุกรมเป็น XML
- เรียกใช้วิธีการเว็บผ่านการจัดการ HTTP และ
- แยกวิเคราะห์การตอบกลับ XML ที่ส่งคืนกลับเป็นอ็อบเจ็กต์
เกี่ยวกับแนวทางแรก (ใช้wsimport
):
ฉันเห็นว่าคุณมีคลาสธุรกิจของบริการ (เอนทิตีหรืออื่น ๆ ) อยู่แล้วและเป็นความจริงที่ว่าคลาสนี้wsimport
สร้างชุดคลาสใหม่ทั้งหมด (ซึ่งซ้ำกับคลาสที่คุณมีอยู่แล้ว)
ฉันกลัวว่าในสถานการณ์นี้คุณทำได้เพียง:
- ปรับ (แก้ไข)
wsimport
โค้ดที่สร้างขึ้นเพื่อให้ใช้คลาสธุรกิจของคุณ (ซึ่งเป็นเรื่องยากและไม่คุ้มค่า - โปรดจำไว้ว่าทุกครั้งที่ WSDL เปลี่ยนแปลงคุณจะต้องสร้างใหม่และอ่านโค้ดใหม่) หรือ
- ยอมแพ้และใช้
wsimport
คลาสที่สร้างขึ้น (ในโซลูชันนี้รหัสธุรกิจของคุณสามารถ "ใช้" คลาสที่สร้างขึ้นเป็นบริการจากเลเยอร์สถาปัตยกรรมอื่นได้)
เกี่ยวกับแนวทางที่สอง (สร้างไคลเอนต์ SOAP แบบกำหนดเองของคุณ):
ในการใช้แนวทางที่สองคุณจะต้อง:
- โทรออก:
- ใช้เฟรมเวิร์ก SAAJ (SOAP with Attachments API สำหรับ Java) (ดูด้านล่างซึ่งมาพร้อมกับ Java SE 1.6 ขึ้นไป) เพื่อทำการโทร หรือ
- คุณสามารถทำได้ผ่าน
java.net.HttpUrlconnection
(และการjava.io
จัดการบางอย่าง)
- เปลี่ยนวัตถุเข้าและกลับจาก XML:
- ใช้เฟรมเวิร์ก OXM (Object to XML Mapping) เช่น JAXB เพื่อทำให้เป็นอนุกรม / deserialize XML จาก / ลงในอ็อบเจ็กต์
- หรือหากคุณต้องสร้าง / แยกวิเคราะห์ XML ด้วยตนเอง (นี่อาจเป็นวิธีแก้ปัญหาที่ดีที่สุดหากวัตถุที่ได้รับแตกต่างจากวัตถุที่ส่งไปเพียงเล็กน้อย)
การสร้างไคลเอนต์ SOAP โดยใช้แบบคลาสสิกjava.net.HttpUrlConnection
นั้นไม่ใช่เรื่องยาก (แต่ก็ไม่ใช่เรื่องง่ายเช่นกัน) และคุณจะพบโค้ดเริ่มต้นที่ดีมากในลิงค์นี้
ฉันขอแนะนำให้คุณใช้กรอบงาน SAAJ:
SOAP ที่มี Attachments API สำหรับ Java (SAAJ)ส่วนใหญ่จะใช้สำหรับจัดการโดยตรงกับ SOAP Request / Response ข้อความซึ่งเกิดขึ้นเบื้องหลังใน Web Service API ใด ๆ ช่วยให้นักพัฒนาสามารถส่งและรับข้อความสบู่ได้โดยตรงแทนที่จะใช้ JAX-WS
ดูตัวอย่างการทำงานด้านล่าง (เรียกใช้!) ของการเรียกใช้บริการเว็บ SOAP โดยใช้ SAAJ เรียกว่าบริการเว็บนี้
import javax.xml.soap.*;
public class SOAPClientSAAJ {
// SAAJ - SOAP Client Testing
public static void main(String args[]) {
/*
The example below requests from the Web Service at:
https://www.w3schools.com/xml/tempconvert.asmx?op=CelsiusToFahrenheit
To call other WS, change the parameters below, which are:
- the SOAP Endpoint URL (that is, where the service is responding from)
- the SOAP Action
Also change the contents of the method createSoapEnvelope() in this class. It constructs
the inner part of the SOAP envelope that is actually sent.
*/
String soapEndpointUrl = "https://www.w3schools.com/xml/tempconvert.asmx";
String soapAction = "https://www.w3schools.com/xml/CelsiusToFahrenheit";
callSoapWebService(soapEndpointUrl, soapAction);
}
private static void createSoapEnvelope(SOAPMessage soapMessage) throws SOAPException {
SOAPPart soapPart = soapMessage.getSOAPPart();
String myNamespace = "myNamespace";
String myNamespaceURI = "https://www.w3schools.com/xml/";
// SOAP Envelope
SOAPEnvelope envelope = soapPart.getEnvelope();
envelope.addNamespaceDeclaration(myNamespace, myNamespaceURI);
/*
Constructed SOAP Request Message:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:myNamespace="https://www.w3schools.com/xml/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<myNamespace:CelsiusToFahrenheit>
<myNamespace:Celsius>100</myNamespace:Celsius>
</myNamespace:CelsiusToFahrenheit>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
*/
// SOAP Body
SOAPBody soapBody = envelope.getBody();
SOAPElement soapBodyElem = soapBody.addChildElement("CelsiusToFahrenheit", myNamespace);
SOAPElement soapBodyElem1 = soapBodyElem.addChildElement("Celsius", myNamespace);
soapBodyElem1.addTextNode("100");
}
private static void callSoapWebService(String soapEndpointUrl, String soapAction) {
try {
// Create SOAP Connection
SOAPConnectionFactory soapConnectionFactory = SOAPConnectionFactory.newInstance();
SOAPConnection soapConnection = soapConnectionFactory.createConnection();
// Send SOAP Message to SOAP Server
SOAPMessage soapResponse = soapConnection.call(createSOAPRequest(soapAction), soapEndpointUrl);
// Print the SOAP Response
System.out.println("Response SOAP Message:");
soapResponse.writeTo(System.out);
System.out.println();
soapConnection.close();
} catch (Exception e) {
System.err.println("\nError occurred while sending SOAP Request to Server!\nMake sure you have the correct endpoint URL and SOAPAction!\n");
e.printStackTrace();
}
}
private static SOAPMessage createSOAPRequest(String soapAction) throws Exception {
MessageFactory messageFactory = MessageFactory.newInstance();
SOAPMessage soapMessage = messageFactory.createMessage();
createSoapEnvelope(soapMessage);
MimeHeaders headers = soapMessage.getMimeHeaders();
headers.addHeader("SOAPAction", soapAction);
soapMessage.saveChanges();
/* Print the request message, just for debugging purposes */
System.out.println("Request SOAP Message:");
soapMessage.writeTo(System.out);
System.out.println("\n");
return soapMessage;
}
}
เกี่ยวกับการใช้ JAXB สำหรับการทำให้เป็นอนุกรม / การแยกซีเรียลการค้นหาข้อมูลเกี่ยวกับเรื่องนี้เป็นเรื่องง่ายมาก คุณสามารถเริ่มต้นที่นี่: http://www.mkyong.com/java/jaxb-hello-world-example/