Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP .Net Web Services > Web Services Architecture

Reply
Thread Tools

Web Services Architecture

 
 
Max André Bündchen
Guest
Posts: n/a
 
      04-10-2006
I'm starting a new system form a retail chain and I could use a webservices architecture to make all points online with the head
office.

I have some doubts with the architecture details but I can't find good documentation about that (the .Net have many different ways
to make systems like that). I read the Microsoft Patters but I have still some question in mind.

For example, a major question, in this system I will have stock, sales, bills and so on, in other words, if I make a single
webservice for each functionallity, I will take hundreds of that. I could make a 'proxy like' webservice, passing a id for each
function and a object for the parameters taking just one webservice. What's the pros and cons of thats architectures? There's others
options?



 
Reply With Quote
 
 
 
 
Martin Kulov [MVP]
Guest
Posts: n/a
 
      04-10-2006
"Max André Bündchen" <> wrote in message
news:%...
> I'm starting a new system form a retail chain and I could use a
> webservices architecture to make all points online with the head
> office.
>
> I have some doubts with the architecture details but I can't find good
> documentation about that (the .Net have many different ways
> to make systems like that). I read the Microsoft Patters but I have still
> some question in mind.
>
> For example, a major question, in this system I will have stock, sales,
> bills and so on, in other words, if I make a single
> webservice for each functionallity, I will take hundreds of that. I could
> make a 'proxy like' webservice, passing a id for each
> function and a object for the parameters taking just one webservice.
> What's the pros and cons of thats architectures? There's others
> options?
>


Hi Mark,

you may start with one service for each major part of your application. Many
web services however would be harder to manage and update so I would
restrain from creating a lot of them. If you combine all your services into
one, a little change on some method would require significant time for
updating the proxy class and this would slow the development process.
Separation can be useful if you need to locate the services on separate web
server, application pool or network.

my 2c

--
Martin Kulov
http://www.codeattest.com/blogs/martin

MVP, MCT, MCSD.NET Early Achiever

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
collocated architecture versus distributed architecture apngss@yahoo.com C Programming 3 09-29-2005 07:44 AM
collocated architecture versus distributed architecture apngss@yahoo.com Java 3 09-29-2005 07:44 AM
collocated architecture versus distributed architecture apngss@yahoo.com C++ 4 09-29-2005 07:44 AM
ON Linux Platform: How can we build binaries for another architecture from 0x86 architecture rashmi C Programming 2 07-05-2005 02:31 PM
how can I use a signal defined in one Architecture to another Architecture Muhammad Khan VHDL 4 07-10-2003 06:14 PM



Advertisments
 



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