This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

In this sample demonstration, we will use the RDBMS Sample to show how we can validate the input parameters given in a request sent to the service. The "addEmployeeQuery" operation of this service has a length validator for the "lastName" field, where the length of the value should be between 3 and 20. Also, the "email" field is validated using a pattern validator that uses a regular expression to check if it is a real email address.

Follow the steps below to demonstrate this functionality using the TryIt tool:

  1. Ensure that RDBMSSample is deployed as described in Samples Setup.
  2. Log in to the management console of your server and click List under Services in the navigator. The RDBMSSample will be listed here.
  3. Click Try this service to open the TryIt tool.
  4. Select the "addEmployee" operation and enter the following parameter values to the request:
    • employeeNumber: 6001
    • lastName: AB
    • firstName: Nick 
    • email: test@test.com
    • salary: 1500
  5. Click Send to execute the operation. Note that you are not getting any results. A validation error will show as the response because the "addEmployee" operation has failed. This is because the lastName only has 2 characters.
  6. Now, change the lastName and the email address in the request as shown below and execute the operation again.
    • employeeNumber: 6001
    • lastName: ABC
    • firstName: Nick 
    • email: test-test.com
    • salary: 1500
    Note that the operation will fail again because the email address is invalid.
  7. Next, execute the "addEmployee" operation again with parameter values for email address and lastName as shown below:
    • employeeNumber: 6001
    • lastName: ABC 
    • firstName: Nick 
    • email: test@test.com 
    • salary: 1500.

      Note that the entry will be successfully added and you will get a result.
  • No labels