HTTP POST to a backbase application -


i need implement requirement in other non-backbase applications send http post request bb application. there pre processing & validation done , based on result client has redirected login page or error page.

what best way implement in backbase?

you need check documentation integration services. full documentation can find here: https://my.backbase.com/docs/product-documentation/documentation//portal/5.6.2/develop_integrationservices.html

the documentation develop own service (i prefer use camel java dsl way), , url like:

http://localhost:7777/portalserver/services/rest/v1/myservice.

here example of java implementation of service:

public class mycamelservice extends routebuilder {     @override     public void configure() throws exception {         from("restlet:/v1/myservice")           .setbody().constant("<html><body><b>hello world!</b></body></html>")           .setheader("content-type", constant("text/html"));     } } 

Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -