tags:

views:

569

answers:

1

I generated the stubs and proxy classes through soapcpp2 from multiple wsdls all at once. So all the namespace bindings are in a single nsmap file. Now the problem is all the namespace bindings are being send with all the method calls I make. The http post packet is unusually large and ugly. Is there anyway i can programatically override the namespace binding ?

+1  A: 

check soapcpp2 -q option it will help you,

also you have to learn about soapcpp2 -penv option to get basic gsoap methods built without any service objects.

the -penv generated files can be shared across multiple namespace generated gsoap services.

harishvk27