إنشاء ونشر Simple Web Service و Web Service Client في Eclipse
نشرت: 2019-10-20اتبع الخطوات البسيطة التالية لإنشاء ونشر Web Service
بسيطة Web Service Client
في Eclipse IDE.
الخطوة 1
قم بتثبيت Apache Tomcat وإضافته إلى Eclipse في Server Tab - أنا أستخدم Tomcat version 9.0.10
.
الخطوة 2
قم بإنشاء مشروع ويب ديناميكي (الاسم: CrunchifyWS
)

الخطوه 3
أنشئ ملف جافا ضمن مجلد /src
. انقر بزر الماوس الأيمن / مجلد src -> جديد -> Class.
- الحزمة:
crunchify.com.web.service
- الاسم:
CrunchifyHelloWorld.java

الخطوة 4
افتح ملف CrunchifyHelloWorld.java
وأنشئ طريقة رئيسية بسيطة.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
package crunchify . com . web . service ; /** * @author Crunchify.com */ public class CrunchifyHelloWorld { public float addValue ( float value ) { return ( value + 10 ) ; } public float subtractValue ( float value ) { return ( value - 10 ) ; } } |
الخطوة 5
- انقر بزر الماوس الأيمن على ملف
CrunchifyHelloWorld.java -> Web Services -> Create Web Service
- حدد الخيارات كما هو مذكور في الرسم البياني أدناه.
- انقر فوق إنهاء

الخطوة 6
قد يستغرق الأمر بعض الوقت لإنهاء جميع العمليات ويجب أن ترى مشروعًا جديدًا " CrunchifyWSClient
" تم إنشاؤه. هنا هيكل المشروع النهائي:

الخطوة 7
يجب نشر كلا المشروعين CrunchifyWS
و CrunchifyWSClient
تلقائيًا على الخادم.
أيضًا ، يفتح Eclipse تلقائيًا Web Service Test Client Window
بعنوان URL: http: // localhost: 8080 / CrunchifyWSClient / sampleCrunchifyHelloWorldProxy / TestClient.jsp؟ endpoint = http: // localhost: 5922 / CrunchifyWS / services / CrunchifyHelloWorld
الخطوة 8
انقر الآن على addValue(float)
، subtractValue(float)
وتوفير إدخال للتحقق من النتيجة المحدثة.

وأنت على أتم استعداد. لا تخبرني إذا رأيت أي صعوبة في هذه الخطوات.
هل تحصل على الخطأ أدناه بعد النقر فوق الزر "استدعاء"؟
1 2 |
Result Exception : java . net . ConnectException : Connection refused ( Connection refused ) Message : ; nested exception is : java . net . ConnectException : Connection refused ( Connection refused ) |

اتبع الخطوات أدناه:
- انقر بزر الماوس الأيمن على Tomcat
- انقر فوق "إضافة وإزالة" لمشاهدة التطبيق المضاف
- انقر فوق تنظيف ...
- انقر فوق نشر
- انقر فوق إعادة التشغيل

كيف يتم إعادة تشغيل WebService بعد إعادة تشغيل التطبيق أو في وقت لاحق؟
هنا عنوان URL مفيد: http: // localhost: 8080 / CrunchifyWSClient / sampleCrunchifyHelloWorldProxy / TestClient.jsp

إذا كنت تريد تنزيل CrunchifyHelloWorld.wsdl ، فإليك ما يلي:

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
<? xml version = "1.0" encoding = "UTF-8" ?> < wsdl : definitions targetNamespace = "http://service.web.com.crunchify" xmlns : apachesoap = "http://xml.apache.org/xml-soap" xmlns : impl = "http://service.web.com.crunchify" xmlns : intf = "http://service.web.com.crunchify" xmlns : wsdl = "http://schemas.xmlsoap.org/wsdl/" xmlns : wsdlsoap = "http://schemas.xmlsoap.org/wsdl/soap/" xmlns : xsd = "http://www.w3.org/2001/XMLSchema" > < ! -- WSDL created by Apache Axis version : 1.4 Built on Apr 22 , 2006 ( 06 : 55 : 48 PDT ) -- > < wsdl : types > < schema elementFormDefault = "qualified" targetNamespace = "http://service.web.com.crunchify" xmlns = "http://www.w3.org/2001/XMLSchema" > < element name = "subtractValue" > < complexType > < sequence > < element name = "value" type = "xsd:float" / > < / sequence > < / complexType > < / element > < element name = "subtractValueResponse" > < complexType > < sequence > < element name = "subtractValueReturn" type = "xsd:float" / > < / sequence > < / complexType > < / element > < element name = "addValue" > < complexType > < sequence > < element name = "value" type = "xsd:float" / > < / sequence > < / complexType > < / element > < element name = "addValueResponse" > < complexType > < sequence > < element name = "addValueReturn" type = "xsd:float" / > < / sequence > < / complexType > < / element > < / schema > < / wsdl : types > < wsdl : message name = "subtractValueResponse" > < wsdl : part element = "impl:subtractValueResponse" name = "parameters" > < / wsdl : part > < / wsdl : message > < wsdl : message name = "addValueResponse" > < wsdl : part element = "impl:addValueResponse" name = "parameters" > < / wsdl : part > < / wsdl : message > < wsdl : message name = "addValueRequest" > < wsdl : part element = "impl:addValue" name = "parameters" > < / wsdl : part > < / wsdl : message > < wsdl : message name = "subtractValueRequest" > < wsdl : part element = "impl:subtractValue" name = "parameters" > < / wsdl : part > < / wsdl : message > < wsdl : portType name = "CrunchifyHelloWorld" > < wsdl : operation name = "subtractValue" > < wsdl : input message = "impl:subtractValueRequest" name = "subtractValueRequest" > < / wsdl : input > < wsdl : output message = "impl:subtractValueResponse" name = "subtractValueResponse" > < / wsdl : output > < / wsdl : operation > < wsdl : operation name = "addValue" > < wsdl : input message = "impl:addValueRequest" name = "addValueRequest" > < / wsdl : input > < wsdl : output message = "impl:addValueResponse" name = "addValueResponse" > < / wsdl : output > < / wsdl : operation > < / wsdl : portType > < wsdl : binding name = "CrunchifyHelloWorldSoapBinding" type = "impl:CrunchifyHelloWorld" > < wsdlsoap : binding style = "document" transport = "http://schemas.xmlsoap.org/soap/http" / > < wsdl : operation name = "subtractValue" > < wsdlsoap : operation soapAction = "" / > < wsdl : input name = "subtractValueRequest" > < wsdlsoap : body use = "literal" / > < / wsdl : input > < wsdl : output name = "subtractValueResponse" > < wsdlsoap : body use = "literal" / > < / wsdl : output > < / wsdl : operation > < wsdl : operation name = "addValue" > < wsdlsoap : operation soapAction = "" / > < wsdl : input name = "addValueRequest" > < wsdlsoap : body use = "literal" / > < / wsdl : input > < wsdl : output name = "addValueResponse" > < wsdlsoap : body use = "literal" / > < / wsdl : output > < / wsdl : operation > < / wsdl : binding > < wsdl : service name = "CrunchifyHelloWorldService" > < wsdl : port binding = "impl:CrunchifyHelloWorldSoapBinding" name = "CrunchifyHelloWorld" > < wsdlsoap : address location = "http://localhost:8080/CrunchifyWS/services/CrunchifyHelloWorld" / > < / wsdl : port > < / wsdl : service > < / wsdl : definitions > |
اسمحوا لي أن أعرف إذا كنت تواجه أي مشكلة في تشغيل هذا.
