Parameter passing become pointer for integer
Posted
by Kangkan
on Stack Overflow
See other posts from Stack Overflow
or by Kangkan
Published on 2010-03-25T06:07:18Z
Indexed on
2010/03/25
6:13 UTC
Read the original article
Hit count: 461
I am working on a c/Linux app for a device. I consume a web service (in WCF/c#) and use gSOAP for the same. The issue is that the parameters in the service methods become pointers for simple data types like int, short etc also. I initially used the same service exposed as ASMX web service and the client proxy generated using gSOAP created methods with parameters passed as values. But once the service has been upgraded to WCF, all the parameters became pointers.
Can somebody help?
© Stack Overflow or respective owner