WPF/E Deployment
Hello,
I have created a WPF/E control that I am attempting to deploy. I have successfully deployed the control locally. However, I want to deploy it to a publicly visible server.
A strange thing seems to be occurring. I have validated, via javascript, that my wpf/e control is not null. However, I attempt to access a wpf/e element via JavaScript using control.FindName("ControlElement") and the return value is null. However, when I run the same code locally, I get the expected control.
The item that is throwing me off is the fact that the wpf/e control is not null, however, I can't seem to access the elements of the control.
I have several questions,
- Does the hosting server have to have the .NET 3.0 framework installed for hosting WPF/E applications? I would assume not because I thought all of the execution of the WPF/E code is the responsibility of the client. I do not believe the hosting server has to have the .NET 3.0 components even for XBAPs.
- If the .NET 3.0 framework is not required, are there any special settings on the server that need to be set in order to deploy a WPF/E application?
- Why would/could my wpf/e activeXControlnot be null however I would not be able to access the elements? My thought would be that the XAML file would not be loading correctly. Is this correct?
Thank you,
Chad Campbell

