Presentation is loading. Please wait.

Presentation is loading. Please wait.

Www.renad.org Contents Building Web Services כתב אקת'ם חאג' יחיא BuildingWeb Services Building Web Services www.renad.org.

Similar presentations


Presentation on theme: "Www.renad.org Contents Building Web Services כתב אקת'ם חאג' יחיא BuildingWeb Services Building Web Services www.renad.org."— Presentation transcript:

1 www.renad.org Contents Building Web Services כתב אקת'ם חאג' יחיא BuildingWeb Services Building Web Services www.renad.org

2 Contents Building Web Services  פתח את תוכנת Visual Studio  לחץ על File->New->Web Site  בחר את התבנית ASP.NET Web Service  בחר שם לפרויקט

3 www.renad.org Contents Building Web Services  הסר את הקבצים Service.asmx ו- Service.cs  הוסף קובץ חדש מסוג Web Service בשם Math.asmx

4 www.renad.org Contents Building Web Services וודא שהקובציםMath.cs ו- Math.asmx התווספו לפרויקט המבנה של הפרויקט ייראה כך:

5 www.renad.org Contents Building Web Services using System; using System.Web; using System.Web.Services; using System.Web.Services.Protocols; public class Math : System.Web.Services.WebService { public Math () { } [WebMethod] public decimal Add (decimal num1,decimal num2) { return num1+num2; { o לחץ לחיצה כפולה על הקובץ Math.cs o הוסף את הקוד הבא לקובץ שנפתח

6 www.renad.org Contents Building Web Services [WebMethod] public decimal Sub (decimal num1, decimal num2) { return num1 - num2; } [WebMethod] public decimal Mult (decimal num1, decimal num2) { return num1 * num2; } [WebMethod] public decimal Div (decimal num1, decimal num2) { return num1 / num2; } המשך לקוד של המחלקה Math.cs

7 www.renad.org Contents Building Web Services [WebService(Namespace = "http://tempuri.org/")] המלצה לשנות את מרחב השמות שנמצא כמאפיין בראש מחלקת ה- WS o הרץ את הפרויקט o בדוק אם כל המתודות נמצאות בדף

8 www.renad.org Contents Building Web Services לחיצה על הקישור Service Description שבראש הדף תציג לנו את ה- WSDL שמתאר את ה- WS

9 www.renad.org Contents Building Web Services בלחיצה על שם המתודה Add יוצג לנו הדף הבא הכנס שני ערכים לתיבות הטקסט ולחץ על Invoke כדי להפעיל את המתודה

10 www.renad.org Contents Building Web Services התוצאה היא תמיד קובץ XML זה הקובץ שמקבל הצרכן של ה- WS

11 www.renad.org Contents Building Web Services o מבנה הודעת ה - Soap o בחלק העליון נמצא בין השאר את הערכים שהמתודה מקבלת o בחלק התחתון נמצא בין השאר את הערך שהמתודה מחזירה


Download ppt "Www.renad.org Contents Building Web Services כתב אקת'ם חאג' יחיא BuildingWeb Services Building Web Services www.renad.org."

Similar presentations


Ads by Google