I'm trying to determine the correct API calls on FacesContext to do the following when processing a backing bean action:
- Within the action method construct a URL of dynamic parameters
- Send the constructed URL to service
- Parse the returned service response parameters
- Continue with action method processing based on reponse string from request.
Any suggestions on the highlevel API calls for steps 2 and 3 to send me in the right direction would be very appreicated. Note, the service I'm calling is external to this application in a blackbox. Instructions are: send URL in specified format, parse response to see what happened.