webservices in C++

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hello,

i'm wondering if i can write webservices in c++ ? instead of VB or C# ...
if this is a case how do some specify a WebMethod attribute ?

tnx
 
it seems if you don't use Managed Extensions you have to code your own
method
to read and write data from/to client. MS uses SOAP - an HTTP-based protocol
to
do these.
 
Yakov said:
it seems if you don't use Managed Extensions you have to code
your own method
to read and write data from/to client. MS uses SOAP - an
HTTP-based protocol to
do these.

The ASP.NET web service wizard contains sample code on how to do
this in C++ (using .NET features just like C# and VB).

Thanks,
 
Back
Top