Defining The Integration Framework Connection Form

The Integration Framework project comes preconfigured with a very basic Connection UI already coded. Custom fields are configured based on the information you entered in the Integration Framework Wizard that you ran when you started the project. Both the preconfigured fields and the custom fields are available on the Connection dialog in TIBCO Scribe® to configure a connection between TIBCO Scribe® and a specific application.

Preconfigured Fields

public class MegaTechApplicationConnectionInfo : HttpClientConnectionInfoBase<MegaTechApplicationConnectionInfo>
{
public string Username { get; set; }
public string Password { get; set; }
public string BaseUrl { get; set; }

Additional Fields

If you did not add all of the necessary fields on the Integration Framework Wizard, follow the model of the existing fields to insert additional fields as needed. For example, if the connection to the API for your application requires an email address in addition to Username, modifiy the sample to include the additional field.

public class MegaTechApplicationConnectionInfo : HttpClientConnectionInfoBase<MegaTechApplicationConnectionInfo>
{
public string Username { get; set; }
public string Email { get; set; }
public string Password { get; set; }
public string BaseUrl { get; set; }

See Also

Fast Connector Framework (FCF)