Actually, I’d offer that the best way to move connections from one environment to another is to not do it.
Rather, it is usually better to define the connections using Administrator in each environment. Why? Because the connection parameters in each are usually different (dev IS connects to dev DB, test IS connects to test DB, etc.).
When migrating the package containing the connection, the connection parameters will obviously follow. Thus, you’ll have test IS pointing to dev DB until you go change the connection settings. Potentially worse, you’ll have prod IS pointing to test DB, which can be very bad if even for a few minutes.
Good practices:
-
Place connections in their own packages. To facilitate migration of adapter services, never put adapter services in the same package as the connection.
-
Never migrate packages containing connections. Define them manually as needed in each environment.
#webMethods#Adapters-and-E-Standards#Integration-Server-and-ESB