Testing Quik! Updates in a UAT Environment

When possible, the Quik! development team pushes any product updates to our User Acceptance Testing (UAT) environment for customer testing prior to a production release. Follow the instructions below to test your Quik! implementation in this non-production environment.

HOW TO TEST UAT

Credentials

When testing in the UAT environment, customers must add "uat" to the beginning of the username for the account credentials used to call UAT APIs. For example, if a customer's production username is johnsmith, their username to be used when testing in UAT would be uatjohnsmith. Customer ID and password remain the same.

When calling Quik! APIs directly

Everything in our UAT environment is available by prefixing web service URLs with “uat” or by replacing “www” with “uat”. For example, a web service such as “https://websvcs.quikforms.com/rest/QuikFormsEngine/qfe/execute/html” becomes “https://uatwebsvcs.quikforms.com/rest/QuikFormsEngine/qfe/execute/html” where “uat” is added after the https:// and before the existing URL. Apply this same pattern to all URLs for accessing them in the UAT environment. 

When using the Quik! DLL

If you are using the Quik! Forms Engine DLL, it is difficult for Quik! to provide a new version that points to our UAT environment. Instead it is more reliable and easier if you override its settings by applying different configuration settings within your application. If you are running a .NET web application, then these settings can be added to the web.config. Other .NET applications will have these settings applied in the app.config file. Take note of the UAT endpoint URLs in the config settings below as these changes will tell the QFE.dll to call against our UAT environment.

Here's how to override URLs in a web/app config:

1) At the very top of the file, under <configuration>, copy the following tags:

configuarationSettings
<configuration> THIS TAG IS FOR YOUR REFERENCE – DO NOT DUPLICATE IT IN YOUR CONFIG FILE
    <configSections>
       <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral,               PublicKeyToken=b77a5c561934e089">
          <section name="QuikFormsEngine.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
      </sectionGroup>
</configSections>
..
..


REST OF THE FILE HERE

2) At the very bottom, just before closing </configuration>, place the following:

applicationSettings
<applicationSettings>
    <QuikFormsEngine.My.MySettings>
      <setting name="ProductID" serializeAs="String">
        <value>14</value>
      </setting>
      <setting name="QuikFormsEngine_websvcs_FormViewHTML_FormViewHTML" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/FormViewHTMLVersion/5500/FormViewHTML.asmx</value>
      </setting>
      <setting name="QuikFormsEngine_websvcs_HTMLFormViewTransaction_HTMLFormViewTransaction" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/HTMLFormViewTrans/v5400/HTMLFormViewTransaction.asmx</value>
      </setting>
      <setting name="QuikFormsEngine_websvcs_RoutingRules_RoutingRules" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/HTMLFormViewTrans/v5400/RoutingRules.asmx</value>
      </setting>
      <setting name="HTMLFormViewTransactionURL" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/HTMLFormViewTrans/v5400/HTMLFormViewTransaction.asmx</value>
      </setting>
      <setting name="QuikURLForSignCallBackMethod" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/rest/ESignature/docusign/sign</value>
      </setting>
      <setting name="RefreshTokenURL" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/REST_Authentication/token</value>
      </setting>
      <setting name="REST_QuikFormsEngine_Endpoint" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/rest/QuikFormsEngine/</value>
      </setting>
      <setting name="HTMLFormViewURL" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/HTMLFormViewTrans/v5400</value>
      </setting>
      <setting name="SignixSignEndPoint" serializeAs="String">
        <value>https://uatwebsvcs.quikforms.com/rest/ESignature/signix/sign</value>
      </setting>
    </QuikFormsEngine.My.MySettings>
 </applicationSettings>

</configuration>

For help regarding Quik! Forms and the Quik! API
Email: support@quikforms.com | Phone: (877) 456-QUIK