-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using HttpRequest.dll and WinsockTls.ocx in the same VBA project #49
Comments
Can you dump |
I think I was able to reproduce the issue here and fixed it in commit 6413ce7 Try downloading/updating both ZIP files from Releases section. |
Unfortunately, still getting the same error...
Err.Source is |
Just pushed alternative fix in aa9c546 which allows running both class and user-control from binaries (your case) and allows mixing running projects from the IDE too (the original fix). Both ZIPs updated. |
Yes, all works fine now. Thanks for the fix! |
This case looks weird for me, but i try to explain what i discovered.
I have Access VBA project, where i use
WinsockTls.ocx
for local connection to Asterisk PBX, and WBA-web framework withHttpRequest.dll
instead ofWinHttp.WinHttpRequest.5.1
object for API requests.So.... When i try to use HttpRequest.dll with active connection, made wth WinsockTls.ocx - i got strange error after HttpRequest.Send Method:
5: Invalid procedure call or argument
It seems like for all requests, even the basic ones.
If i drop WinsockTls.ocx connection - all executed perfectly.
Is it make any sense?.. =)
The text was updated successfully, but these errors were encountered: