I have a requirement to do the following.
- Pass a set of variables from a website to a backend webservice
- Apply the variables to a WPF 3D model.
- Generate an image and pass back to the website.
Is this possible?
I have a requirement to do the following.
Is this possible?
Yes - you'd need to trigger the WPF program remotely, possibly using remoting, and then you'd have to write the resulting image out to a file or stream which could then be rendered back over the pipeline as a byte array. It wouldn't be pretty code, but it is workable.