Dear all
I have built rapaportprices service client using CXF and it is working well.
The login and getprice methods works well, but the getPriceChanges method returns NULL value for XMLChanges although request is successful and getting proper old & new date.
I am expecting single XML document with data for all diamonds having price changed.
RapaportPrices rapaportPricesService = new RapaportPrices();
RapaportPricesSoap rapaportPricesSoap = rapaportPricesService
.getRapaportPricesSoap12();
Holder<AuthenticationTicketHeader> authenticationHeader = new Holder<AuthenticationTicketHeader>();
rapaportPricesSoap.login("xxxxx", "xxxxx", authenticationHeader);
RapaportPrice rp = rapaportPricesSoap.getPrice("Round", 0.4F, "D", "VS1", authenticationHeader.value);
PriceChanges priceChanges = rapaportPricesSoap.getPriceChanges(
Shapes.ROUND, authenticationHeader.value);
Need Help.