While working on a rather large BizTalk 2010 project I came across this very strange behaviour and wanted to post a solution to it here in case anyone else may experience this.

When attempting to open an orchestration in the orchestration designer within Visual Studio 2010, I noticed the orchestration opened in text only view and I was unable to view the orchestration designer. This was for one orchestration only, all other orchestrations in the project opened properly. The project also compiled properly without any errors. I right-clicked on the affected orchestration and choose Open With -> BizTalk Orchestration Designer. I also clicked Set as Default. I could then view the orchestration in design mode as expected. However upon closing and re-opening the solution, I noticed that once again the orchestration was opening in a text only view.

I then opened the .btproj file in a text editor and noticed the following (this is a snippet of my .btproj file):

    <ItemGroup>
        <XLang Include="OrderCancel.odx">
            <TypeName>OrderCancel</TypeName>          
            <Namespace>MyNamespace.Orchestrations</Namespace>      
            <SubType>Designer</SubType>
        </XLang>
    </ItemGroup>
    <ItemGroup>
        <XLang Include="OrderModify.odx">
            <TypeName>OrderModify</TypeName>
            <Namespace>Mynamespace.Orchestrations</Namespace>
        </XLang>
    </ItemGroup>

Note the tag:

<SubType>Designer</SubType>

I simply removed the SubType tag, saved the .btproj file and reopened the solution in Visual Studio and the orchestration opened normally again.

link|improve this question
1  
Thanks for posting this. I'm sure it will help someone – hugh Feb 22 at 8:34
feedback

2 Answers

That is weird, I have not seen that before. It sounds like the default editor for the .odx file type is set to text. I think this preference must be stored somewhere in the user profile or perhaps as a VS preference. If it is a VS preference, you might have to elevate to Administrator when opening VS to get the preference to save between times that VS is open.

This is just a guess because I have not seen this problem before.

Thanks,

link|improve this answer
feedback

I would prefer to add a comment, but it appears I am too new to the site to be able to do that. This "question" was the exact solution that I was looking for, so thanks for submitting this. The only thing that I can add is that the orchestration did open in a "designer" mode, because there were three tabs at the bottom "design", "split" and "source" but as the original poster points out, only the text of the orchestration content was visible. The designer options at the bottom lead me to believe that VS was using the HTML WYSIWYG designer, rather than the Orchestration designer.

Removing the tag from the btproj file solved the issue so I want to thank Ian again for posting the solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.