You are viewing the documentation for Blueriq 17. Documentation for other versions is available in our documentation directory.

Setup

The example project consists of three parts. 

  1. A Blueriq model that contains two projects where the AQ_SoapServiceClient services are modeled. (Blue)
  2. A soap service with different endpoints that can be called by the projects. (Grey)
  3. The application.properties and keystore. (Pink)



Encore

Import the attached branch in Blueriq Encore. The branch contains two projects, one internal library and three external libraries.

The two projects have the same module structure with different WSDL's. One project contains a WSDL for SOAP 1.1 and the other project contains a WSDL for SOAP 1.2.

Web service security stub

The web service security stub application can be downloaded here (in parts):

web-service-security-stub-0.0.32.zip.001web-service-security-stub-0.0.32.zip.002 and web-service-security-stub-0.0.32.zip.003

To start the web-service-security-stub use start-web-service-security-stub.bat (Java 11 is needed)

Runtime

To be able to run these projects the following configurations have to be made:

  1. The path for the filesystemconnection and the path for the keystore have to be set in the application.properties file. 
  2. The various connections used by the example project have to be configured (see example below)

The application.properties and the keystore can be downloaded here.

blueriq.connection.filesystemconnection.filesystem.path=D:/path/to/uploads

# timeout
blueriq.connection.GetPerson11.soap.timeout=2000
blueriq.connection.GetPerson12.soap.timeout=2000

# dynamic urls
blueriq.connection.TenantA11.soap.url=http://localhost:8080/soap11/a
blueriq.connection.TenantB11.soap.url=http://localhost:8080/soap11/b
blueriq.connection.TenantA12.soap.url=http://localhost:8080/soap12/a
blueriq.connection.TenantB12.soap.url=http://localhost:8080/soap12/b

# security: basic authentication
blueriq.connection.basic11.soap.url=http://localhost:8080/soap11/basicAuthentication
blueriq.connection.basic11.soap.username=user
blueriq.connection.basic11.soap.password=password
blueriq.connection.basic12.soap.url=http://localhost:8080/soap12/basicAuthentication
blueriq.connection.basic12.soap.username=user
blueriq.connection.basic12.soap.password=password

# (NOTE: username token is no longer implemented in Blueriq 15)

# security: signature
blueriq.connection.signing11.soap.url=http://localhost:8080/soap11/signature
blueriq.connection.signing11.soap.interceptors=SignatureInterceptor
blueriq.connection.signing12.soap.url=http://localhost:8080/soap12/signature
blueriq.connection.signing12.soap.interceptors=SignatureInterceptor

# security: timestamp
blueriq.connection.timestamp11.soap.url=http://localhost:8080/soap11/timestamp
blueriq.connection.timestamp11.soap.interceptors=TimestampInterceptor
blueriq.connection.timestamp12.soap.url=http://localhost:8080/soap12/timestamp
blueriq.connection.timestamp12.soap.interceptors=TimestampInterceptor

# security: encryption
blueriq.connection.encryption11.soap.url=http://localhost:8080/soap11/encryption
blueriq.connection.encryption11.soap.interceptors=EncryptionInterceptor
blueriq.connection.encryption12.soap.url=http://localhost:8080/soap12/encryption
blueriq.connection.encryption12.soap.interceptors=EncryptionInterceptor

# security: signature + timestamp + encryption
blueriq.connection.signingTimestampEncryption11.soap.url=http://localhost:8080/soap11/x509
blueriq.connection.signingTimestampEncryption11.soap.interceptors=SignatureInterceptor,TimestampInterceptor,EncryptionInterceptor
blueriq.connection.signingTimestampEncryption12.soap.url=http://localhost:8080/soap12/x509
blueriq.connection.signingTimestampEncryption12.soap.interceptors=SignatureInterceptor,TimestampInterceptor,EncryptionInterceptor

# security interceptors (NOTE: username token is no longer implemented in Blueriq 15)
blueriq.soap.interceptors.security.SignatureInterceptor.request.signature.enabled=true
blueriq.soap.interceptors.security.SignatureInterceptor.request.signature.key-alias=web-service

blueriq.soap.interceptors.security.TimestampInterceptor.request.timestamp.enabled=true  blueriq.soap.interceptors.security.EncryptionInterceptor.request.encryption.enabled=true
blueriq.soap.interceptors.security.EncryptionInterceptor.request.encryption.key-alias=web-service

# NOTE: update the path to the keystore
blueriq.security.keystore.location=D:/path/to/keystore.jks
blueriq.security.keystore.password=welcome

NOTE

In production, the passwords should be encrypted.

REMINDER

Do not forget to updated the paths for the filesystemconnection connection and the keystore.

Now the project can be started.

Optional Port Change

In case there is a need to change the port number the following needs to be done:

  • Change the value of property server.port in the application.properties file you just downloaded to the desired port number.
  • When this port is changed also the connections of the runtime in the application.properties file you just downloaded have to be changed.
  • Additionally as we are dealing with a WSDL the contract also has to be altered. So the soap service location has to be overruled with the correct URL and port number (search for <soap:address location="..."/>). This location is created when importing the WSDL into Blueriq. To change the WSDL there are two options:
    • Import a new WSDL with the port number changed beforehand
    • Provide the actual location as a URL parameter for each AQ_SoapServiceClient call. This is a change to all occurrences of AQ_SoapServiceClient calls in your model.


  • No labels

3 Comments

  1. The link to the soap-service application is broken

  2. Unknown User (jp.vossen)

    Link is fixed by Geert Graat, thanks!


  3. The soap-service application only works with java 8.