473,659 Members | 2,591 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Service oriented architecture in practice.


Hello,
I need to build a new web system. It is required that i use SOA .
Can someone tell me briefly what that means in practise. I have read
some rather abstract documents, describing the idea but i yet need to find
a practical guide to kick of my project.

Any help will be highly appreciated.
Many Thanks in advance

JB
Nov 23 '05 #1
6 1475
Hi there
'
jensen bredal wrote:
Hello,
I need to build a new web system. It is required that i use SOA .
Can someone tell me briefly what that means in practise. I have read
some rather abstract documents, describing the idea but i yet need to find
a practical guide to kick of my project.


I can understand your need for a definition and some "get me started"
document. I was in need for this, too, but there's so much hype around
"services" these day, that they seem to forget the A in SOA.
In my opinion this is a matter of architecture. For instance - I have
been building services (the SOA way) for years - without using WebServices.
Bottom line:
You can have a SOA without WebServices, but it kinda difficult not have
a SOA with WebServices. Difficult because WebServices is build around
the idea of SOA.

So, you next question is: OK, I do WebServices equals I do SOA, right?

Well, ahem. You could do a lot of "bad practices", that makes you "SOA"
so not Service-Oriented that it is useless and you do not gain the
benefits, that's usually involved when runnig a SOA.

The short answer to your question is, although the info you gave was
very limited:

1)
Start out with WebServices.

2)
Build coarse-grained WebServices

3)
Pass-in and return as much as possible in one network round trip, ie.
one call to the WebService.

4)
Behind the scenes (your WebSevice interface) use common OO design and
programming.

5)
Use XML schemas to describe the structures (custom objects) you are
passing to/from the webservices, maybe including your messages
(operations). That is, use the Contract-First approach. See
www.thinktecture.com. Christian has a faaaantastic article on the topic.
Then, import these structures (.xsd files) into the .wsdl for the
webservice and generate the code you need using wsdl.exe.

That is common guidelines. I can not to into more specific parts as I do
not know what your application requirements are..? As always...It
depends... :-)

Regards

Henrik
websolver.blogs pot.com
Nov 23 '05 #2
Hi there
'
jensen bredal wrote:
Hello,
I need to build a new web system. It is required that i use SOA .
Can someone tell me briefly what that means in practise. I have read
some rather abstract documents, describing the idea but i yet need to find
a practical guide to kick of my project.


I can understand your need for a definition and some "get me started"
document. I was in need for this, too, but there's so much hype around
"services" these day, that they seem to forget the A in SOA.
In my opinion this is a matter of architecture. For instance - I have
been building services (the SOA way) for years - without using WebServices.
Bottom line:
You can have a SOA without WebServices, but it kinda difficult not have
a SOA with WebServices. Difficult because WebServices is build around
the idea of SOA.

So, you next question is: OK, I do WebServices equals I do SOA, right?

Well, ahem. You could do a lot of "bad practices", that makes you "SOA"
so not Service-Oriented that it is useless and you do not gain the
benefits, that's usually involved when runnig a SOA.

The short answer to your question is, although the info you gave was
very limited:

1)
Start out with WebServices.

2)
Build coarse-grained WebServices

3)
Pass-in and return as much as possible in one network round trip, ie.
one call to the WebService.

4)
Behind the scenes (your WebSevice interface) use common OO design and
programming.

5)
Use XML schemas to describe the structures (custom objects) you are
passing to/from the webservices, maybe including your messages
(operations). That is, use the Contract-First approach. See
www.thinktecture.com. Christian has a faaaantastic article on the topic.
Then, import these structures (.xsd files) into the .wsdl for the
webservice and generate the code you need using wsdl.exe.

That is common guidelines. I can not to into more specific parts as I do
not know what your application requirements are..? As always...It
depends... :-)

Regards

Henrik
websolver.blogs pot.com
Nov 23 '05 #3
Many thanks for an excellent input.

JB
webservice and generate the code you need using wsdl.exe.

That is common guidelines. I can not to into more specific parts as I do
not know what your application requirements are..? As always...It
depends... :-)

Regards

Henrik
websolver.blogs pot.com

Nov 23 '05 #4
Many thanks for an excellent input.

JB
webservice and generate the code you need using wsdl.exe.

That is common guidelines. I can not to into more specific parts as I do
not know what your application requirements are..? As always...It
depends... :-)

Regards

Henrik
websolver.blogs pot.com

Nov 23 '05 #5
I would like to point towards a couple of blog entries that are releveant to
this discussion and are available at

http://dotnetwizards.blogspot.com/20...demistified.ht
http://dotnetwizards.blogspot.com/20...cture-soa.html

Theres one important aspect to this discussion is: "Dont try to apply SOA
into evrry application you design"......

I read it once on TheServerSide.N ET
" ... If hammer is the only tool you have then every thing looks like a nail
.... "

Hammad Rajjoub
MVP, XML Web Services.
http://dotnetwizards.blogspot.com

"jensen bredal" wrote:
Many thanks for an excellent input.

JB
webservice and generate the code you need using wsdl.exe.

That is common guidelines. I can not to into more specific parts as I do
not know what your application requirements are..? As always...It
depends... :-)

Regards

Henrik
websolver.blogs pot.com


Nov 23 '05 #6
I would like to point towards a couple of blog entries that are releveant to
this discussion and are available at

http://dotnetwizards.blogspot.com/20...demistified.ht
http://dotnetwizards.blogspot.com/20...cture-soa.html

Theres one important aspect to this discussion is: "Dont try to apply SOA
into evrry application you design"......

I read it once on TheServerSide.N ET
" ... If hammer is the only tool you have then every thing looks like a nail
.... "

Hammad Rajjoub
MVP, XML Web Services.
http://dotnetwizards.blogspot.com

"jensen bredal" wrote:
Many thanks for an excellent input.

JB
webservice and generate the code you need using wsdl.exe.

That is common guidelines. I can not to into more specific parts as I do
not know what your application requirements are..? As always...It
depends... :-)

Regards

Henrik
websolver.blogs pot.com


Nov 23 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1650
by: Blitz Krieg | last post by:
Oh Great Gurus... The wisdom of DotNet-dom is needed... We have several applications in our test lab, that do not need peak performance, but consistent reporting. We have been using C# and VB ..NET because of the ease of use. However, each application has a significant percentage of code that is replicated in each application... true it is assembly based and not a big deal to include, but there must be a better way. We have our own...
4
1783
by: scottrm | last post by:
I am fairly new to oo design and I am looking at developing an object oriented asp.net application which will be built on top of a relational database. I have read quite a bit of the theory but find it hard to put it into practice. In particular I am confused in terms of interacting with the database. It seems to me classes map quite closely to database tables and I end up with a bunch of methods in each class which simply call stored...
0
3617
by: Barb | last post by:
Hello, I have a (C#) web service being consumed by a high volume "asp classic" site. It worked perfectly until I tried consuming a second web service from the first web service. Both services are very high-performing on their own, make inexpensive database calls and use good caching to avoid excess database hits. However, when service 1 makes a call to service 2, I get several timeout errors per minute (error is "The operation has...
0
323
by: crm-tutorial | last post by:
Service-Oriented Architecture(SOA) - Principles & Practice (October 2006) The Principles of SOA,Loosely-Coupled Architecture,The SOA Solution - How it Works,The iBOLT Flow Editor, Composite Applications,Implementing a SOA with iBOLT http://flying-rugs.com/soa
1
1563
by: fallenidol | last post by:
hi i'm looking for some heads up info regarding calling and using a web service from within another web service. is this acceptable practice? if not why? what should i be thinking about here? cheers
11
7905
by: Joseph Geretz | last post by:
I've been looking at two approaches for the maintenance of Session state for a Web Service application. One approach uses the old familiar Session object which I've used in the past for Web applications. As far as I can see, the Session approach is non-standard since Web Services are supposed to be agnostic with respect to their clients. It seems that cookies are outside the Web Service standard; therefore, such a Web Service application...
3
6615
dmjpro
by: dmjpro | last post by:
plz send me a good link which can clearify me how the J2EE framework works i want the details information .... plz help thanx
4
1419
by: =?Utf-8?B?S2F1c2hhbCBNZWh0YQ==?= | last post by:
Hi, I was reading about asynchronous transfer of control in Real Time Java Specification. I am wondering if there is any way we can do similar thing with Web Services in Service Oriented Architecture. Please let me know your opinion.
5
2739
by: ludwig_stuyck | last post by:
I'm in the process of designing a Service Oriented Architecture. At the moment I based the design on the Web Service Software factory guidelines - so a services layer, business layer and resource access layer. The services layer contains WCF services, which use the business layer, which uses the resource access layer. I'm using data contracts for data that is passed via the WCF services, and these are converted to business entitities that...
0
8851
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8751
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8629
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7360
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6181
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4176
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4338
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2757
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1739
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.