Question

I am interested in the best practice of the following scenario. I have a CustomAction method that hits a web service and returns some information that I use to populate a combo box. Later in the install process in another CustomAction method, I need to access some of the meta data returned from that first web service call.

In the first method, I create a List that is a public static member of my CustomAction class. In my second method when I access the list its empty.

My thoughts were to serialize it using xaml serialization into a session variable then deserialize it in my second method.

Am I way off here? Is there a better way?

Was it helpful?

Solution

I will assume that your second custom action is making configuration changes to the machine and running in the execute sequence as deferred with no impersonation. This means it can only access the CustomActionData property.

This means your first custom action will have to serialize the CustomActionData property for the second one to deserialize. Now the CustomActionData is a Key:Value collection and what you do with it ( including have a Key with a Value that is yet another serialized datatype ) is completely up to you.

Be sure to read the DTF documentation to understand how to use the CustomActionData type and members off the Session class to your advantage.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top