473,320 Members | 2,145 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Disadvantages/Cons of web services?

Can someone tell me the Disadvantages/Cons of web services?

Thanks,

EmJ.
Nov 23 '05 #1
21 11137
That's a broad question and it would help to know what
you want to compare to?

some disadvantages compared to .net remoting,
disadvantages are:

1) lack of type fidelity when making to web service (e.g.
you cannot pass IDictionary)
2) performance (can use binary formatting with tcp
channel for optimum speed)

-----Original Message-----
Can someone tell me the Disadvantages/Cons of web services?
Thanks,

EmJ.
.

Nov 23 '05 #2
That's a broad question and it would help to know what
you want to compare to?


compared to anything
Nov 23 '05 #3
> 1) lack of type fidelity when making to web service (e.g.
you cannot pass IDictionary)
Some might say that is an advantage of XML web services, as tight binding is
the achilles heel of Remoting (i.e. versioning, etc). But I get your point.
2) performance (can use binary formatting with tcp
channel for optimum speed)


True. But the wire overhead is still small compared to overall app time
(i.e. business objects, db lookups, etc.). That is one reason nobody is in
a hurry at MS to do a binary xml (BXML) wire format.

--
William Stacey, MVP
http://mvp.support.microsoft.com
Nov 23 '05 #4
Can you give any disadvantages of web services then?
Nov 23 '05 #5
I don't really see any. In reality (in a MS world) you have socket,
Remoting, and WS/WSE. If you use raw sockets, you end up reinventing much
of what is already their in web services. Today, I think the decision point
is if to use WSE or plain IIS web services. With WSE you get all the
security stuff (and other WS-xxx) and can "touch" it if you have special
needs. With WS you can automatic broad reach for your SOA, even if you
don't expose it right away. Also, you have server tools like SQL and
BizTalk that all use xml web services so you can integrate with those. Also
you will be in good position for Indigo if it ever goes RTM. In a MSDN
video I saw, Don Box asked the audience if anyone had successfully rolled
out a Enterprise Remoting app and *nobody raised there hands. Remoting is a
great tech, but is not the future and versioning issue pretty much is the
killer IMO. WS is now and the future so the case should be "what should I
use if not Web services?". That would depend on your needs.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:5O********************@fe1.news.blueyonder.co .uk...
Can you give any disadvantages of web services then?


Nov 23 '05 #6
Hi,

Please explain what you mean by the "versioning issues"
with .NET remoting,

Thanks,

Jon Paugh
-----Original Message-----
I don't really see any. In reality (in a MS world) you have socket,Remoting, and WS/WSE. If you use raw sockets, you end up reinventing muchof what is already their in web services. Today, I think the decision pointis if to use WSE or plain IIS web services. With WSE you get all thesecurity stuff (and other WS-xxx) and can "touch" it if you have specialneeds. With WS you can automatic broad reach for your SOA, even if youdon't expose it right away. Also, you have server tools like SQL andBizTalk that all use xml web services so you can integrate with those. Alsoyou will be in good position for Indigo if it ever goes RTM. In a MSDNvideo I saw, Don Box asked the audience if anyone had successfully rolledout a Enterprise Remoting app and *nobody raised there hands. Remoting is agreat tech, but is not the future and versioning issue pretty much is thekiller IMO. WS is now and the future so the case should be "what should Iuse if not Web services?". That would depend on your needs.
--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:5O********************@fe1.news.blueyonder.c o.uk...
Can you give any disadvantages of web services then?


.

Nov 23 '05 #7
Your types are bound at both sides. So if you change a return class (for
example) or add something you need to change all the clients. With xml, you
can send document containing a,b,c,d even if service only uses a,b. Or
return a,b,c,d even if your client only needs a. Also, you can get any type
into XML, which is not always true with remoting. So things are a lot more
flexible. Others may have better examples for you.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"Jon Paugh" <an*******@discussions.microsoft.com> wrote in message
news:1a****************************@phx.gbl...
Hi,

Please explain what you mean by the "versioning issues"
with .NET remoting,

Thanks,

Jon Paugh
-----Original Message-----
I don't really see any. In reality (in a MS world) you

have socket,
Remoting, and WS/WSE. If you use raw sockets, you end

up reinventing much
of what is already their in web services. Today, I

think the decision point
is if to use WSE or plain IIS web services. With WSE

you get all the
security stuff (and other WS-xxx) and can "touch" it if

you have special
needs. With WS you can automatic broad reach for your

SOA, even if you
don't expose it right away. Also, you have server tools

like SQL and
BizTalk that all use xml web services so you can

integrate with those. Also
you will be in good position for Indigo if it ever goes

RTM. In a MSDN
video I saw, Don Box asked the audience if anyone had

successfully rolled
out a Enterprise Remoting app and *nobody raised there

hands. Remoting is a
great tech, but is not the future and versioning issue

pretty much is the
killer IMO. WS is now and the future so the case should

be "what should I
use if not Web services?". That would depend on your

needs.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:5O********************@fe1.news.blueyonder.c o.uk...
Can you give any disadvantages of web services then?


.


Nov 23 '05 #8
Really? That's cool. I have not tried that. Will have to
give that a try and see for myself. Thanks
-----Original Message-----
Your types are bound at both sides. So if you change a return class (forexample) or add something you need to change all the clients. With xml, youcan send document containing a,b,c,d even if service only uses a,b. Orreturn a,b,c,d even if your client only needs a. Also, you can get any typeinto XML, which is not always true with remoting. So things are a lot moreflexible. Others may have better examples for you.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"Jon Paugh" <an*******@discussions.microsoft.com> wrote in messagenews:1a****************************@phx.gbl...
Hi,

Please explain what you mean by the "versioning issues"
with .NET remoting,

Thanks,

Jon Paugh
>-----Original Message-----
>I don't really see any. In reality (in a MS world) you
have socket,
>Remoting, and WS/WSE. If you use raw sockets, you end

up reinventing much
>of what is already their in web services. Today, I

think the decision point
>is if to use WSE or plain IIS web services. With WSE

you get all the
>security stuff (and other WS-xxx) and can "touch" it
if you have special
>needs. With WS you can automatic broad reach for your

SOA, even if you
>don't expose it right away. Also, you have server
tools like SQL and
>BizTalk that all use xml web services so you can

integrate with those. Also
>you will be in good position for Indigo if it ever
goes RTM. In a MSDN
>video I saw, Don Box asked the audience if anyone had

successfully rolled
>out a Enterprise Remoting app and *nobody raised there

hands. Remoting is a
>great tech, but is not the future and versioning issue

pretty much is the
>killer IMO. WS is now and the future so the case
should be "what should I
>use if not Web services?". That would depend on your

needs.
>
>--
>William Stacey, MVP
>http://mvp.support.microsoft.com
>
>"EmJayEm" <Wo*@eookie.com> wrote in message
>news:5ObGd.141236

$4********@fe1.news.blueyonder.co.uk... >> Can you give any disadvantages of web services then?
>>
>>
>
>.
>


.

Nov 23 '05 #9
Can you tell me the enablers, prohibitors of development and deployment of
XML web services in real industry standard applications?

Thanks,

EmJ
Nov 23 '05 #10
Kinda an open ended question. If you want to get started, I would start
with WSE and do some TCP web services. That way, you don't need to dink
with IIS and all that just get Hello World to work. As for standards, that
is the best part as XML, Soap, and WS-xx are all standards. I would get
hold of WSE and start playing with it. If you Java, can't really say what
to use, but they have ton of web stuff too. All the WS players seem to be
working really hard to interop and stick to the specs from what I see. It
is really amazing to see this many folks buy into the same standards. This
is probably because no one org can say they invented them. Then again,
maybe Al Gore invented XML and Soap too? :-)
--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:Wz******************@fe1.news.blueyonder.co.u k...
Can you tell me the enablers, prohibitors of development and deployment of
XML web services in real industry standard applications?

Thanks,

EmJ


Nov 23 '05 #11
I am just wanting a list of enablers and a list of prohibitors of
development and deployment of XML web services in real industry standard
applications.

Could you provide me with a list?

Thanks,

EmJ.

"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eF**************@TK2MSFTNGP11.phx.gbl...
Kinda an open ended question. If you want to get started, I would start
with WSE and do some TCP web services. That way, you don't need to dink
with IIS and all that just get Hello World to work. As for standards,
that
is the best part as XML, Soap, and WS-xx are all standards. I would get
hold of WSE and start playing with it. If you Java, can't really say what
to use, but they have ton of web stuff too. All the WS players seem to be
working really hard to interop and stick to the specs from what I see. It
is really amazing to see this many folks buy into the same standards.
This
is probably because no one org can say they invented them. Then again,
maybe Al Gore invented XML and Soap too? :-)
--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:Wz******************@fe1.news.blueyonder.co.u k...
Can you tell me the enablers, prohibitors of development and deployment
of
XML web services in real industry standard applications?

Thanks,

EmJ

Nov 23 '05 #12
Can you tell me what an enabler and prohibitor is in relation to XML web
services?

Help appriciated,

EmJ.

"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eF**************@TK2MSFTNGP11.phx.gbl...
Kinda an open ended question. If you want to get started, I would start
with WSE and do some TCP web services. That way, you don't need to dink
with IIS and all that just get Hello World to work. As for standards,
that
is the best part as XML, Soap, and WS-xx are all standards. I would get
hold of WSE and start playing with it. If you Java, can't really say what
to use, but they have ton of web stuff too. All the WS players seem to be
working really hard to interop and stick to the specs from what I see. It
is really amazing to see this many folks buy into the same standards.
This
is probably because no one org can say they invented them. Then again,
maybe Al Gore invented XML and Soap too? :-)
--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:Wz******************@fe1.news.blueyonder.co.u k...
Can you tell me the enablers, prohibitors of development and deployment
of
XML web services in real industry standard applications?

Thanks,

EmJ

Nov 23 '05 #13
School project?

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:uO********************@fe1.news.blueyonder.co .uk...
Can you tell me what an enabler and prohibitor is in relation to XML web
services?

Help appriciated,

EmJ.

"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eF**************@TK2MSFTNGP11.phx.gbl...
Kinda an open ended question. If you want to get started, I would start
with WSE and do some TCP web services. That way, you don't need to dink
with IIS and all that just get Hello World to work. As for standards,
that
is the best part as XML, Soap, and WS-xx are all standards. I would get
hold of WSE and start playing with it. If you Java, can't really say what to use, but they have ton of web stuff too. All the WS players seem to be working really hard to interop and stick to the specs from what I see. It is really amazing to see this many folks buy into the same standards.
This
is probably because no one org can say they invented them. Then again,
maybe Al Gore invented XML and Soap too? :-)
--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:Wz******************@fe1.news.blueyonder.co.u k...
Can you tell me the enablers, prohibitors of development and deployment
of
XML web services in real industry standard applications?

Thanks,

EmJ



Nov 23 '05 #14
yes please help.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:Oa**************@TK2MSFTNGP14.phx.gbl...
School project?

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:uO********************@fe1.news.blueyonder.co .uk...
Can you tell me what an enabler and prohibitor is in relation to XML web
services?

Help appriciated,

EmJ.

"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eF**************@TK2MSFTNGP11.phx.gbl...
> Kinda an open ended question. If you want to get started, I would
> start
> with WSE and do some TCP web services. That way, you don't need to
> dink
> with IIS and all that just get Hello World to work. As for standards,
> that
> is the best part as XML, Soap, and WS-xx are all standards. I would
> get
> hold of WSE and start playing with it. If you Java, can't really say what > to use, but they have ton of web stuff too. All the WS players seem to be > working really hard to interop and stick to the specs from what I see. It > is really amazing to see this many folks buy into the same standards.
> This
> is probably because no one org can say they invented them. Then again,
> maybe Al Gore invented XML and Soap too? :-)
> --
> William Stacey, MVP
> http://mvp.support.microsoft.com
>
> "EmJayEm" <Wo*@eookie.com> wrote in message
> news:Wz******************@fe1.news.blueyonder.co.u k...
>> Can you tell me the enablers, prohibitors of development and
>> deployment
>> of
>> XML web services in real industry standard applications?
>>
>> Thanks,
>>
>> EmJ
>>
>>
>


Nov 23 '05 #15
Here is link that has some ideas
http://www.zapthink.com/report.html?id=ZTR-WS102

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:XZ*******************@fe2.news.blueyonder.co. uk...
yes please help.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:Oa**************@TK2MSFTNGP14.phx.gbl...
School project?

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:uO********************@fe1.news.blueyonder.co .uk...
Can you tell me what an enabler and prohibitor is in relation to XML web services?

Help appriciated,

EmJ.

"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:eF**************@TK2MSFTNGP11.phx.gbl...
> Kinda an open ended question. If you want to get started, I would
> start
> with WSE and do some TCP web services. That way, you don't need to
> dink
> with IIS and all that just get Hello World to work. As for standards, > that
> is the best part as XML, Soap, and WS-xx are all standards. I would
> get
> hold of WSE and start playing with it. If you Java, can't really say

what
> to use, but they have ton of web stuff too. All the WS players seem to
be
> working really hard to interop and stick to the specs from what I
see. It
> is really amazing to see this many folks buy into the same standards.
> This
> is probably because no one org can say they invented them. Then

again, > maybe Al Gore invented XML and Soap too? :-)
> --
> William Stacey, MVP
> http://mvp.support.microsoft.com
>
> "EmJayEm" <Wo*@eookie.com> wrote in message
> news:Wz******************@fe1.news.blueyonder.co.u k...
>> Can you tell me the enablers, prohibitors of development and
>> deployment
>> of
>> XML web services in real industry standard applications?
>>
>> Thanks,
>>
>> EmJ
>>
>>
>



Nov 23 '05 #16
That tells me about Web Services, I have most of that information. Where
does it tell me about enablers and prohibors of web services? Please help,

EmJ.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Here is link that has some ideas
http://www.zapthink.com/report.html?id=ZTR-WS102

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:XZ*******************@fe2.news.blueyonder.co. uk...
yes please help.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:Oa**************@TK2MSFTNGP14.phx.gbl...
> School project?
>
> --
> William Stacey, MVP
> http://mvp.support.microsoft.com
>
> "EmJayEm" <Wo*@eookie.com> wrote in message
> news:uO********************@fe1.news.blueyonder.co .uk...
>> Can you tell me what an enabler and prohibitor is in relation to XML web >> services?
>>
>> Help appriciated,
>>
>> EmJ.
>>
>> "William Stacey [MVP]" <st***********@mvps.org> wrote in message
>> news:eF**************@TK2MSFTNGP11.phx.gbl...
>> > Kinda an open ended question. If you want to get started, I would
>> > start
>> > with WSE and do some TCP web services. That way, you don't need to
>> > dink
>> > with IIS and all that just get Hello World to work. As for standards, >> > that
>> > is the best part as XML, Soap, and WS-xx are all standards. I would
>> > get
>> > hold of WSE and start playing with it. If you Java, can't really
>> > say
> what
>> > to use, but they have ton of web stuff too. All the WS players seem to > be
>> > working really hard to interop and stick to the specs from what I see. > It
>> > is really amazing to see this many folks buy into the same
>> > standards.
>> > This
>> > is probably because no one org can say they invented them. Then again, >> > maybe Al Gore invented XML and Soap too? :-)
>> > --
>> > William Stacey, MVP
>> > http://mvp.support.microsoft.com
>> >
>> > "EmJayEm" <Wo*@eookie.com> wrote in message
>> > news:Wz******************@fe1.news.blueyonder.co.u k...
>> >> Can you tell me the enablers, prohibitors of development and
>> >> deployment
>> >> of
>> >> XML web services in real industry standard applications?
>> >>
>> >> Thanks,
>> >>
>> >> EmJ
>> >>
>> >>
>> >
>>
>>
>


Nov 23 '05 #17
I have done the list the pros and cons. Where are the enablers and
probitors?

Ta,

EmJ.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Here is link that has some ideas
http://www.zapthink.com/report.html?id=ZTR-WS102

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:XZ*******************@fe2.news.blueyonder.co. uk...
yes please help.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:Oa**************@TK2MSFTNGP14.phx.gbl...
> School project?
>
> --
> William Stacey, MVP
> http://mvp.support.microsoft.com
>
> "EmJayEm" <Wo*@eookie.com> wrote in message
> news:uO********************@fe1.news.blueyonder.co .uk...
>> Can you tell me what an enabler and prohibitor is in relation to XML web >> services?
>>
>> Help appriciated,
>>
>> EmJ.
>>
>> "William Stacey [MVP]" <st***********@mvps.org> wrote in message
>> news:eF**************@TK2MSFTNGP11.phx.gbl...
>> > Kinda an open ended question. If you want to get started, I would
>> > start
>> > with WSE and do some TCP web services. That way, you don't need to
>> > dink
>> > with IIS and all that just get Hello World to work. As for standards, >> > that
>> > is the best part as XML, Soap, and WS-xx are all standards. I would
>> > get
>> > hold of WSE and start playing with it. If you Java, can't really
>> > say
> what
>> > to use, but they have ton of web stuff too. All the WS players seem to > be
>> > working really hard to interop and stick to the specs from what I see. > It
>> > is really amazing to see this many folks buy into the same
>> > standards.
>> > This
>> > is probably because no one org can say they invented them. Then again, >> > maybe Al Gore invented XML and Soap too? :-)
>> > --
>> > William Stacey, MVP
>> > http://mvp.support.microsoft.com
>> >
>> > "EmJayEm" <Wo*@eookie.com> wrote in message
>> > news:Wz******************@fe1.news.blueyonder.co.u k...
>> >> Can you tell me the enablers, prohibitors of development and
>> >> deployment
>> >> of
>> >> XML web services in real industry standard applications?
>> >>
>> >> Thanks,
>> >>
>> >> EmJ
>> >>
>> >>
>> >
>>
>>
>


Nov 23 '05 #18
Enablers and prohibiters in this context don't make sense. What context is
the teacher using this language? I assume you have gone over
enablers/prohibiters in class, so what does the teacher want to hear? Don't
make us guess. Pros/Cons or other? IMO, the question is wrong, confusing,
and *very vague. A "prohibiter" is a noun and is "One who prohibits or
forbids; a forbidder; an interdicter". So that does not make sense in the
context of the question IMHO.

Moreover, if teacher does want pros/cons, you need something to compare them
to. Better or worse then what? Better/worse then SneakerNet? Better/worse
then the phone? Better/worse then sockets? What?? Can not answer the
question as it is.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:oP*******************@fe2.news.blueyonder.co. uk...
I have done the list the pros and cons. Where are the enablers and
probitors?

Ta,

EmJ.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
Here is link that has some ideas
http://www.zapthink.com/report.html?id=ZTR-WS102

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:XZ*******************@fe2.news.blueyonder.co. uk...
yes please help.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:Oa**************@TK2MSFTNGP14.phx.gbl...
> School project?
>
> --
> William Stacey, MVP
> http://mvp.support.microsoft.com
>
> "EmJayEm" <Wo*@eookie.com> wrote in message
> news:uO********************@fe1.news.blueyonder.co .uk...
>> Can you tell me what an enabler and prohibitor is in relation to XML

web
>> services?
>>
>> Help appriciated,
>>
>> EmJ.
>>
>> "William Stacey [MVP]" <st***********@mvps.org> wrote in message
>> news:eF**************@TK2MSFTNGP11.phx.gbl...
>> > Kinda an open ended question. If you want to get started, I would
>> > start
>> > with WSE and do some TCP web services. That way, you don't need to >> > dink
>> > with IIS and all that just get Hello World to work. As for

standards,
>> > that
>> > is the best part as XML, Soap, and WS-xx are all standards. I would >> > get
>> > hold of WSE and start playing with it. If you Java, can't really
>> > say
> what
>> > to use, but they have ton of web stuff too. All the WS players
seem to
> be
>> > working really hard to interop and stick to the specs from what I

see.
> It
>> > is really amazing to see this many folks buy into the same
>> > standards.
>> > This
>> > is probably because no one org can say they invented them. Then

again,
>> > maybe Al Gore invented XML and Soap too? :-)
>> > --
>> > William Stacey, MVP
>> > http://mvp.support.microsoft.com
>> >
>> > "EmJayEm" <Wo*@eookie.com> wrote in message
>> > news:Wz******************@fe1.news.blueyonder.co.u k...
>> >> Can you tell me the enablers, prohibitors of development and
>> >> deployment
>> >> of
>> >> XML web services in real industry standard applications?
>> >>
>> >> Thanks,
>> >>
>> >> EmJ
>> >>
>> >>
>> >
>>
>>
>



Nov 23 '05 #19
I am creating a web services rich picture.

In the requirements it says, "illustrates pros and cons, enablers,
prohibitors of development and deployment of XML Web Services in real
industry standard applications".

I have done the pros and cons. I am guessing enablers, prohibitors are in
the same context as pros and cons. What do you think?

EmJ.

"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:%2****************@TK2MSFTNGP12.phx.gbl...
Enablers and prohibiters in this context don't make sense. What context
is
the teacher using this language? I assume you have gone over
enablers/prohibiters in class, so what does the teacher want to hear?
Don't
make us guess. Pros/Cons or other? IMO, the question is wrong,
confusing,
and *very vague. A "prohibiter" is a noun and is "One who prohibits or
forbids; a forbidder; an interdicter". So that does not make sense in the
context of the question IMHO.

Moreover, if teacher does want pros/cons, you need something to compare
them
to. Better or worse then what? Better/worse then SneakerNet?
Better/worse
then the phone? Better/worse then sockets? What?? Can not answer the
question as it is.

--
William Stacey, MVP
http://mvp.support.microsoft.com

"EmJayEm" <Wo*@eookie.com> wrote in message
news:oP*******************@fe2.news.blueyonder.co. uk...
I have done the list the pros and cons. Where are the enablers and
probitors?

Ta,

EmJ.
"William Stacey [MVP]" <st***********@mvps.org> wrote in message
news:%2****************@TK2MSFTNGP10.phx.gbl...
> Here is link that has some ideas
> http://www.zapthink.com/report.html?id=ZTR-WS102
>
> --
> William Stacey, MVP
> http://mvp.support.microsoft.com
>
> "EmJayEm" <Wo*@eookie.com> wrote in message
> news:XZ*******************@fe2.news.blueyonder.co. uk...
>> yes please help.
>>
>>
>> "William Stacey [MVP]" <st***********@mvps.org> wrote in message
>> news:Oa**************@TK2MSFTNGP14.phx.gbl...
>> > School project?
>> >
>> > --
>> > William Stacey, MVP
>> > http://mvp.support.microsoft.com
>> >
>> > "EmJayEm" <Wo*@eookie.com> wrote in message
>> > news:uO********************@fe1.news.blueyonder.co .uk...
>> >> Can you tell me what an enabler and prohibitor is in relation to
>> >> XML
> web
>> >> services?
>> >>
>> >> Help appriciated,
>> >>
>> >> EmJ.
>> >>
>> >> "William Stacey [MVP]" <st***********@mvps.org> wrote in message
>> >> news:eF**************@TK2MSFTNGP11.phx.gbl...
>> >> > Kinda an open ended question. If you want to get started, I
>> >> > would
>> >> > start
>> >> > with WSE and do some TCP web services. That way, you don't need to >> >> > dink
>> >> > with IIS and all that just get Hello World to work. As for
> standards,
>> >> > that
>> >> > is the best part as XML, Soap, and WS-xx are all standards. I would >> >> > get
>> >> > hold of WSE and start playing with it. If you Java, can't really
>> >> > say
>> > what
>> >> > to use, but they have ton of web stuff too. All the WS players seem > to
>> > be
>> >> > working really hard to interop and stick to the specs from what I
> see.
>> > It
>> >> > is really amazing to see this many folks buy into the same
>> >> > standards.
>> >> > This
>> >> > is probably because no one org can say they invented them. Then
> again,
>> >> > maybe Al Gore invented XML and Soap too? :-)
>> >> > --
>> >> > William Stacey, MVP
>> >> > http://mvp.support.microsoft.com
>> >> >
>> >> > "EmJayEm" <Wo*@eookie.com> wrote in message
>> >> > news:Wz******************@fe1.news.blueyonder.co.u k...
>> >> >> Can you tell me the enablers, prohibitors of development and
>> >> >> deployment
>> >> >> of
>> >> >> XML web services in real industry standard applications?
>> >> >>
>> >> >> Thanks,
>> >> >>
>> >> >> EmJ
>> >> >>
>> >> >>
>> >> >
>> >>
>> >>
>> >
>>
>>
>


Nov 23 '05 #20
%u
ANY ANSWERS?
--
POST BY: http://www.dotNET.us - Need .NET? Just ask, Please dotNET.us
Nov 23 '05 #21
no

"%u" <HG****@HOTMAIL.COM> wrote in message
news:On**************@TK2MSFTNGP11.phx.gbl...
ANY ANSWERS?
--
POST BY: http://www.dotNET.us - Need .NET? Just ask, Please dotNET.us

Nov 23 '05 #22

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

Similar topics

0
by: Steve | last post by:
We've recently got a new Server in. The server has 16Gb of RAM, 8 cpus etc We now have a choice of sticking with Windows 2000 Advanced Server or going with Windows 2003 Enterprise edition. ...
44
by: lester | last post by:
a pre-beginner's question: what is the pros and cons of .net, compared to ++ I am wondering what can I get if I continue to learn C# after I have learned C --> C++ --> C# ?? I think there...
1
by: andrew | last post by:
Hi, I'm a C++ newbie, so apologies for this rather basic question. I've searched for help and, while I understand the problem (that the outer class is not yet defined), I don't understand what...
8
by: Wilbur | last post by:
My company is considering using C# for a large project and it is a language I'm only just now becoming familiar with. For the most part I like it and that seems to be the most logical choice as far...
3
by: Lucas Tam | last post by:
Does anyone have a good articles that describes the pros and cons of Web Services vs. Remoting Hosted in IIS? Is there a reason to use either or? With Remoting Hosting in IIS, is it possible...
21
by: Jonathan Sachs | last post by:
I'm a programmer learning PHP. I'm looking for some input on its strong and weak points compared to other server-side programming environments, e.g., Java Server Pages. Please note, this is not...
4
by: Martin Arvidsson, Visual Systems AB | last post by:
Hi! I am currently developing my first webapplication using .net (2.x) In a couple examples seen in the helpfile that came with VS2008 i see that they are opening a connection to the sql...
0
by: Marcel Overweel | last post by:
Hi, I'm developing a set of services for a software solution. It will be broken down in several application including a few windows services. It is very likely that most of these services...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...

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.