Click here to Skip to main content
15,905,427 members

Comments by John Pope 2023 (Top 6 by date)

John Pope 2023 20-Oct-23 14:08pm View    
Thanks for your help and assistance... Was able to get it working by adding the HTTP activation capability to the number in the BW console...
John Pope 2023 20-Oct-23 14:06pm View    
Code works correctly now, key part is that in the BW console when configuring the number you must add HTTP activation for it to work...
John Pope 2023 12-Oct-23 17:40pm View    
I think that did the trick, using TLS 1.2 I am getting a 202 Accepted message, don't get the message on the phone but it seems to be working, when I change any of login:password it fails with an authentication message which I would expect... Will work on bandwidth.com to figure out why it's not sending out... Appreciate your help, will let you know when I have more info...
John Pope 2023 11-Oct-23 16:30pm View    
Yes I did change the 5500000 in the URL to my account ID... The error I am getting back is: "The underlying connection was closed: An unexpected error occurred on a receive."
John Pope 2023 11-Oct-23 16:13pm View    
I have the following coded like you showed and this is what I am doing to encode the user:password to base64... Is this correct???

Dim strB64Decoded As String = User & ":" & Password
Dim data As Byte() = System.Text.Encoding.UTF8.GetBytes(strB64Decoded)
Dim strB64Encoded As String = Convert.ToBase64String(data)

Appreciate your help... I think I am still much closer, it still closes the request with an error so I think it is my user:password that might not be correct...