webservices in C++

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
 
Y

Yakov

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.
 
T

Tarek Madkour [MSFT]

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,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top