I've set up idp ping and redshift according to the instructions on https://aws.amazon.com/blogs/big-data/federating-single-sign-on-access-to-your-amazon-redshift-cluster-with-pingidentity/, but on trying to connect get
com.amazon.redshift.Driver.connect: com.amazonaws.SdkClientException: SAML error: Invalid base64 SAMLResponse (Service: AWSOpenIdDiscoveryService; Status Code: 400; Error Code: AuthSamlInvalidSamlResponseException; Request ID: b3c22382-c3cd-4a5f-8f1c-b8e7fa2cb948; Proxy: null) (Service: AWSSecurityTokenService; Status Code: 400; Error Code: InvalidIdentityToken; Request ID: 5e5080db-f5d6-4fb5-b1f9-0ca9a6ea3ec4; Proxy: null)
I've set debug on the driver and response can be decoded to the expected saml response attributes.
I did get this working a few months ago but it seems to no longer work
Any help or indication that others have this working gratefully received.
Related
I am trying to integrate CCAvenue payment Gateway in Laravel.
my error is:
Error Code: 10001 Invalid Request - Encrypted request invalid/not present. Don't worry... It happens to the best of us.CCAvenue Error
I'm using Grafana with Prometheus as DataSource. Those environments are behind a proxy, the communication was already open and I can test Telegram notification with success, but testing an alert in a dashboard I get the following error:
"tsdb.HandleRequest() error client_error: client error: 407"
Any ideia why is this happening?
HTTP 407 status code = Proxy Authentication Required, so it looks like your proxy doesn't like that request for some reason. I guess you can check proxy logs to see more details.
I'm trying to learn load testing with JMeter(Very new). Using the tutorial to Build a Web Test Plan on the JMeter website and another youtube tutorial, I created an HTTP GET request to hit www.google.com/ but I get the following result:
Thread Name: Thread Group 1-1
Sample Start: 2018-07-16 12:44:09 CDT
Load time: 64018
Connect Time: 64018
Latency: 0
Size in bytes: 2390
Sent bytes:0
Headers size in bytes: 0
Body size in bytes: 2390
Sample Count: 1
Error Count: 1
Data type ("text"|"bin"|""): text
Response code: Non HTTP response code: java.net.ConnectException
Response message: Non HTTP response message: Connection timed out: connect
Here's my request:
link to image since I don't have 10 reputation yet
Looking around other people are getting this issue but their issue is after 250+ users: Response code: Non HTTP response code: java.net.ConnectException Response message: Non HTTP response message: Connection timed out: connect
However, I'm only trying to use one user and one thread, and I couldn't find anyone having the same error with only one user.
I set the Client implementation to HttpClient4 like the second answer suggests from jmeter Non HTTP response code: java.net.ConnectException but I still get the same issue.
Thanks in advance!
Answer Turns out it was because of our proxy server. Which was strange because I'm able to send request via postman and get responses. But I switched to a computer not on the proxy and everything is working now.
The problem you try to connect with HTTPS protocol on non HTTPS port as 80
there is a strong convention to send http over port 80 and https over port 443
Remove port number value and it'll use default 443 port
Looking at the screenshot , you are using 80 as port number for https connection that is the reason why you are getting non http response code. Give port number as 443 or leave it blank ..
TO know more about Load testing with JMeter please follow this link
I am using wss (secured web sockets) with spring 4.2.x from backend and STOMP for javascript client. I can run it successfully under http, but failed when under https.
The only error I met is:
ERROR o.s.w.s.s.s.DefaultHandshakeHandler - Handshake failed due to invalid Upgrade header: null
The JS error is:
WebSocket connection to 'wss://.example.com/.../websocket' failed: Error during WebSocket handshake: Unexpected response code: 400
I googled a lot and understand that I should do some configuration on wildfly to make it support wss requests. But I don't know how. Thanks in advance if someone can give any idea!
I was trying to accesss goggle map webservice from ORACLE PL/SQL in following way but receiving error : ORA-29273: HTTP request failed ORA-29268: HTTP client error 403 - Forbidden
select httpuritype('http://maps.googleapis.com/maps/api/geocode/xml?address=30+Rockefeller+center,New+York,NY,USA&sensor=false').getclob() from dual
Kindly suggest