Hi,
I am working on open source project iFolder (www.ifolder.com)
In that I am using gSoap for communication between server and client.
I have a porblem with Makefile.....
I am having following code:
SIMIAS_WSDL = ../Discovery/DiscoveryService.wsdl ../WebService/Simias.wsdl
.
.
.
.
.
.
libsimias.h: $(srcdir)/stdsoap2.c $(SIMIAS_WSDL)
$(GSOAP_PATH)/wsdl2h -c -o $@ $(SIMIAS_WSDL)
GSOAP_PATH and srcdir are valid paths and both stdsoap2.c and wsdl2h are available in required locations.
My problem is that compiler is picking up only Simias.wsdl and not DiscoveryService.wsdl. I tried by rearranging both files as
SIMIAS_WSDL = ../WebService/Simias.wsdl ../Discovery/DiscoveryService.wsdl
Now it is reading only DiscoveryService.wsdl only
Can some body tell me how to solve this problem?
Regards,
Satyam.
I am working on open source project iFolder (www.ifolder.com)
In that I am using gSoap for communication between server and client.
I have a porblem with Makefile.....
I am having following code:
SIMIAS_WSDL = ../Discovery/DiscoveryService.wsdl ../WebService/Simias.wsdl
.
.
.
.
.
.
libsimias.h: $(srcdir)/stdsoap2.c $(SIMIAS_WSDL)
$(GSOAP_PATH)/wsdl2h -c -o $@ $(SIMIAS_WSDL)
GSOAP_PATH and srcdir are valid paths and both stdsoap2.c and wsdl2h are available in required locations.
My problem is that compiler is picking up only Simias.wsdl and not DiscoveryService.wsdl. I tried by rearranging both files as
SIMIAS_WSDL = ../WebService/Simias.wsdl ../Discovery/DiscoveryService.wsdl
Now it is reading only DiscoveryService.wsdl only
Can some body tell me how to solve this problem?
Regards,
Satyam.