My biztalk production server does not have Visual stodio installed on the server.

Now i have to create one application in the production server which will use schema from another application which is already deployed in the production server .

I have to reference the schema from the existing application in the new application

is it necessary to have visual studio installed on the production server or there is any other option.

link|improve this question

71% accept rate
feedback

3 Answers

up vote 2 down vote accepted

No, it isn't necessary (or desirable IMO) to install VS on BizTalk Production Servers.

What you need to do is to copy the common schema assembly to your development BizTalk environment, and then reference the assembly from your new Project.

If you don't have the source to the referenced schemas, then you can get the schema assembly from the installation directory (usually %PROGRAMFILES%\Generated By BizTalk if you deploy with the basic MSI export, but may differ if it was installed with the deployment framework etc). Alternatively, the assembly will also be available in the GAC (command line C:\Windows\Assembly\GAC_MSIL\{AssemblyName}\{Version}__{GUID}\Assembly.DLL)

You can then use the referenced schemas in your new project. Do not add the referenced schema assembly as a resource to your new project as this is already deployed (and an assembly can only 'belong' to one application).

link|improve this answer
if i cant add the referenced schema assembly as a resource to new project...then how to use referenced schema in my project...As i dont have source to the referenced schema. i am able to get the dll from in the GAC_MSIL folder – user1104946 Jan 6 at 16:52
so i have the dll of the common schema....now how to ref to the new application...does right click on the project and in the properties ref to the project will work – user1104946 Jan 6 at 16:54
Hi - yes, you should add the referenced schema assembly as a normal project reference to your new project, just like you would in any other project. – nonnb Jan 9 at 7:41
1  
Thanks nonnb it worked. – user1104946 Jan 10 at 20:15
feedback

You can also get the schema definition from the BizTalk Admin Console.

Locate the required schema under Schemas, right-click and select Properties, then Schema View.

link|improve this answer
1  
This will be fine for development, but when it comes to deployment on the Production server, OP will have 2 schemas with the same xmlns#root (one in the existing app, one in the new app) – nonnb Jan 6 at 9:35
feedback

Install visual studio on a development machine, do the development work there and then deploy it to the production server.

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.