Search
Search titles only
By:
Search titles only
By:
Log in
Register
Search
Search titles only
By:
Search titles only
By:
Menu
Install the app
Install
Forums
New posts
All threads
Latest threads
New posts
Trending threads
Trending
Search forums
What's new
New posts
New ads
New profile posts
Latest activity
Free Ads
Latest reviews
Search ads
Members
Current visitors
New profile posts
Search profile posts
Contact us
Latest ads
Ad icon
Sell your Land, House on idamata.lk for FREE
sajith.xp.pk
Updated:
Thursday at 9:03 AM
Handmade Character Soft Toys
anil1961
Updated:
Tuesday at 2:11 PM
Bodim.lk out now !
Manoj Suranga Bandara
Updated:
Sunday at 3:05 AM
Power Lifting Lever Belt
SkullVamp
Updated:
Jun 13, 2026
Ad icon
port.lk Domain for sale
Lankan-Tech
Updated:
Jun 13, 2026
Electronics
Vehicles
Property
Search
Reply to thread
Forums
Computers & Internet
Software Development
What is da Best Technoly in WEB
Get the App
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Message
<blockquote data-quote="x-pert" data-source="post: 562773" data-attributes="member: 837"><p>Machang... umbata web services kiyanne mokakda kiyala kohenda bung patan ganne.... <img src="/styles/default/xenforo/smilies/default/D.gif" class="smilie" loading="lazy" alt=":D" title="Big grin :D" data-shortname=":D" /> </p><p></p><p>Hari Ela... First of all I ll tel some thing about SOAP. ok ok got a way to tell...</p><p></p><p>Ryt....</p><p></p><p></p><p>SOAP - Simple Object access protocol.</p><p>As the name it self says machang, this provides a way to access objects. </p><p>This is a simple and more universal method. (Uses HTTP and XML)</p><p>ee kiyanne machang, umbata eka thanaka idala thawath thanaka thiyana object ekak invoke karanna puluwan through htt protocol</p><p></p><p>What SOAP does?</p><p>SOAP just sends and receive messages in a typical request / response cycle (I assume you know these stuff buddy)</p><p></p><p>SOAP DEFINES AN XML STRUCTURE TO CALL METHODS AND PASS METHOD PARAMETERS AND TO RETURN THE VALUE </p><p></p><p>This is a small example</p><p><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"></p><p><soap:Body></p><p><getProductDetails xmlns="http://warehouse.example.com/ws"></p><p><productID>827635</productID></p><p></getProductDetails></p><p></soap:Body></p><p></soap:Envelope></p><p></p><p>We can invoke this coding part when the user presses a button in the web interface machang. </p><p>Now in the above example the user has requested the product details of the product ID 827635. (just an xml structure)</p><p></p><p>As the response you will get some thing like :</p><p><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"></p><p><soap:Body></p><p><getProductDetailsResponse xmlns="http://warehouse.example.com/ws"></p><p><getProductDetailsResult></p><p><productName>Toptimate 3-Piece Set</productName></p><p><productID>827635</productID></p><p><description>3-Piece luggage set. Black Polyester.</description></p><p><price currency="NIS">96.50</price></p><p><inStock>true</inStock></p><p></getProductDetailsResult></p><p></getProductDetailsResponse></p><p></soap:Body></p><p></soap:Envelope></p><p></p><p>With all the details like description, price about the requested product.</p><p></p><p>Simple machang.... Thats it... So as you can see it uses xml to communicate between the systems which is really good because these days people use different platforms and different systems, versions, etc. That is the advantage of using SOAP.</p><p></p><p>Now lets see what are web services...</p><p></p><p>WEB SERVICE IS A SOFTWARE COMPONENT THAT :</p><p>supports interoperability between machines (PCs) over a network</p><p>receives and sends messages using SOAP which I discussed earlier</p><p>totally independent of the platform</p><p></p><p>There are 3 parts in a web service</p><p>Service Broker</p><p>Service requester</p><p>Service provider</p><p></p><p>Service broker:</p><p>Just like a directory service (Which we use to find tel. nos.)</p><p>Service providers can bublish their services and requesters can find a service</p><p></p><p>Service requester is the person who presses the button on the web interface in my earlier example. </p><p></p><p>Service providers are the person who has created the web service. </p><p>(Some common publishes : BEA web Logic, Cape Clear, HP, Oracle dynamic services, Sun. my services.ONE)</p><p></p><p></p><p>So we can wrap even the existing programs as web services and send them across the network as they are platform independent.</p><p></p><p>hari amaarui pictures nathuwa kiyanna machang.. This is the best I can explain it to you... Hope you got atleast a small idea by reading this machang... <img src="/styles/default/xenforo/smilies/default/D.gif" class="smilie" loading="lazy" alt=":D" title="Big grin :D" data-shortname=":D" /> <img src="/styles/default/xenforo/smilies/default/D.gif" class="smilie" loading="lazy" alt=":D" title="Big grin :D" data-shortname=":D" /></p></blockquote><p></p>
[QUOTE="x-pert, post: 562773, member: 837"] Machang... umbata web services kiyanne mokakda kiyala kohenda bung patan ganne.... :D Hari Ela... First of all I ll tel some thing about SOAP. ok ok got a way to tell... Ryt.... SOAP - Simple Object access protocol. As the name it self says machang, this provides a way to access objects. This is a simple and more universal method. (Uses HTTP and XML) ee kiyanne machang, umbata eka thanaka idala thawath thanaka thiyana object ekak invoke karanna puluwan through htt protocol What SOAP does? SOAP just sends and receive messages in a typical request / response cycle (I assume you know these stuff buddy) SOAP DEFINES AN XML STRUCTURE TO CALL METHODS AND PASS METHOD PARAMETERS AND TO RETURN THE VALUE This is a small example <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <getProductDetails xmlns="http://warehouse.example.com/ws"> <productID>827635</productID> </getProductDetails> </soap:Body> </soap:Envelope> We can invoke this coding part when the user presses a button in the web interface machang. Now in the above example the user has requested the product details of the product ID 827635. (just an xml structure) As the response you will get some thing like : <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <getProductDetailsResponse xmlns="http://warehouse.example.com/ws"> <getProductDetailsResult> <productName>Toptimate 3-Piece Set</productName> <productID>827635</productID> <description>3-Piece luggage set. Black Polyester.</description> <price currency="NIS">96.50</price> <inStock>true</inStock> </getProductDetailsResult> </getProductDetailsResponse> </soap:Body> </soap:Envelope> With all the details like description, price about the requested product. Simple machang.... Thats it... So as you can see it uses xml to communicate between the systems which is really good because these days people use different platforms and different systems, versions, etc. That is the advantage of using SOAP. Now lets see what are web services... WEB SERVICE IS A SOFTWARE COMPONENT THAT : supports interoperability between machines (PCs) over a network receives and sends messages using SOAP which I discussed earlier totally independent of the platform There are 3 parts in a web service Service Broker Service requester Service provider Service broker: Just like a directory service (Which we use to find tel. nos.) Service providers can bublish their services and requesters can find a service Service requester is the person who presses the button on the web interface in my earlier example. Service providers are the person who has created the web service. (Some common publishes : BEA web Logic, Cape Clear, HP, Oracle dynamic services, Sun. my services.ONE) So we can wrap even the existing programs as web services and send them across the network as they are platform independent. hari amaarui pictures nathuwa kiyanna machang.. This is the best I can explain it to you... Hope you got atleast a small idea by reading this machang... :D :D [/QUOTE]
Insert quotes…
Verification
Payakata winadi keeyak tibeda?
Post reply
Top
Bottom