Advertisement
Guest User

Untitled

a guest
Mar 9th, 2017
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <http:request-config name="HTTPs_Request_Configuration" protocol="HTTPS" host="host name here" port="443" doc:name="HTTP Request Configuration">
  2. <http:basic-authentication username="xxxxx" password="xxxxxx" preemptive="true"/>
  3. <tls:context>
  4. <tls:key-store type="jks" path="certificate.jks" keyPassword="changeit" password="changeit"/>
  5. </tls:context>
  6. </http:request-config>
  7.  
  8. <flow name="degreeworksFlow">
  9. <http:listener config-ref="HTTP_Listener_Configuration" path="/test" doc:name="HTTP"/>
  10. <logger message="Started Calling" level="INFO" doc:name="Logger"/>
  11. <http:request config-ref="HTTPs_Request_Configuration" path="/Path is here" method="GET" doc:name="HTTP">
  12. <http:request-builder>
  13. <http:query-param paramName="studentId" value="324552223"/>
  14. <http:query-param paramName="school" value="G"/>
  15. <http:query-param paramName="degree" value="MS"/>
  16. </http:request-builder>
  17. </http:request>
  18. <set-payload value="#[payload]" doc:name="Set Payload"/>
  19. </flow>
  20.  
  21. org.mule.module.http.internal.request.ResponseValidatorException: Response code 404 mapped as failure.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement