How do you manage deploying InfoPath forms to different sharepoint servers? Is there a better way to deal all the data connections being site-specific without opening the forms, editing the data connections and republishing for each environment?
|
1
|
|
|
|
|
|
If I understand your scenario correctly: You have an InfoPath form, with data connections that submit your data. You wish to deploy this form on multiple SharePoint Servers and have those data connections submit data to the currently deployed server. You can't really get around needing to do work on every SharePoint server that you would want to deploy the form to. However, you can get around needing to modify the InfoPath Form Template. If you use the SharePoint Data Connection Library (DCL), and create a UDC file from your data connection, on every SharePoint Server that you would want to use...then your InfoPath Template can just talk to the UDC file. Here's a link to an article about integrating InfoPath with SharePoint's DCL: |
||
|
|
If you go into the submit options, there is an option to perform custom action using rules. If you have all of the data connections set up, you can configure rules to select which connection to submit to. |
||
|
|
|
|
This is a common problem, if you are working on a dev-system and need deployments to a productive system from time to time. I use a script that performs (plain text) replacements based on regular expressions. on each deploy:
I use a script that does all the replacements. That works fine and already saved me a lot of work. |
||||
|
|
|
re: speedfox's answer, try to stay away from editing the manifest whenever possible. It'll just lead to head aches. If I understand your problem, you're deploying to multiple servers (DEV, UAT, Production) and need to edit the data connection manually every time you go from one environment to another? Forgive me if I've over simplified the problem I've found the best way to make data connections site relative is to:
|
||
|
|
|
|
By site-specific, do you mean that the data connections in your forms refer to the server the form is deployed to? If that's the case perhaps you could tweak your connections to use localhost instead of the server name for the hostname part of the data connection URLs. |
||
|
|
|
|
In my scenario, I am not using the built-in "save" button. I have a data connection that I use to "post" the data to another list. Yes, that's what I mean by site-specific. I don't think you can use localhost 'cos then when a user saves the form, it'll try to post to the user's computer (i.e. localhost). I have tried to use relative paths but that doesn't seem to work. |
||
|
|
