I've got a VCL form that's working with XData and I'm looking to replicate it in WebCore. I realize this straddles two different technologies, but it's mostly the XData Client part that concerns me here. It seems expressions like this:
List := Client.IService<ISomeServiceOfYours>.myservice(Quote1, Quote2, Quote3, Quote4, NumVariants);
won't compile in WebCore because they depend on the interface units that require XData.Server.xxx units that then depend on VCL (or FMX?) System units. So different calls are needed.
Are there any discussions of this topic anywhere? Something like what's involved in migrating a VCL form into WebCore from an XData Client perspective? Or in general?