I'm trying to generate an SSL cert.
But I've run into this error while doing so:
The ordinal 372 could not be located in the dynamic link library C:\wamp64\bin\apache\apache2.4.7\bin\openssl.exe
I've been searching around for awhile but the solutions aren't detailed enough. I've also no experience in generating SSL certs.
I've also tried using dependency walker and it generated:
Error: At least one required implicit or forwarded dependency was not found.
Error: At least one module has an unresolved import due to a missing export function in an implicitly dependent module.
Warning: At least one delay-load dependency module was not found.
But I don't know how to continue from here.
Please provide detailed solution on how to resolve this and generate an SSL cert. Thanks.
Related
I am trying to use Xtensa cross compiler to build a simple embedded application.
And I got 2 mysterious issues.
The first issue is probably a license issue:
The Xtensa toolchain always reports below error:
License checkout failed: No such feature exists.
Feature: XTENSA_XCC_TIE
License path: 84300#xtensa03p.xxx.xxx.com:/root/xtensa/XtDevTools/install/tools/RG-2019.12-linux/XtensaTools/Tools/lic/license.dat:
FLEXnet Licensing error:-5,147
For further information, refer to the FLEXnet Licensing documentation,
available at "www.macrovision.com".
This looks like a license issue.
According to here, the -5 error code means No such feature exists. But I didn't find what 147 means. And I am not sure about how FLEXnet works. It seems to be a popular licensing mechanism.
But I can ping through the xtensa03p.xxx.xxx.com server. So I think the license server is alive.
The second issue:
When I try to check the cross compiler xt-xcc version:
/root/xtensa/XtDevTools/install/tools/RG-2019.12-linux/XtensaTools/bin/xt-xcc --version
I got below warning:
Warning: The location of this program does not match the Xtensa Tools
location specified in the Xtensa registry entry:
program prefix: /root/xtensa/XtDevTools/install/tools/RG-2019.12-linux/XtensaTools/bin/..
registry value: /root/xtensa/XtDevTools/install/tools/RI-2021.7-linux/XtensaTools
Either the current Xtensa configuration is not properly installed or you
are using Xtensa Tools from a different location than you specified when
installing the configuration.
xt-xcc version 12.0.12
Thread model: single
I don't know where the Xtensa registry entry is. Should I modify it to match my xt-xcc installation path?
Could anyone shed some light?
Using urllib3 library at work throws an SSL verification error.
When I explicitly use urllib3, I know how to avoid it using
import urllib3
c = urllib3.HTTPSConnectionPool('10.0.3.168', port=9001, cert_reqs='CERT_NONE', assert_hostname=False)
c.request('GET', '/')
as explained in Ignore certificate validation with urllib3
But a library calls another library and it calls another and uses urllib3 inside it, I don't know how to avoid SSL verification. I think revising the code inside the .py files in the folder /somepath/anaconda3/lib/site-packages/urllib3 solves the problem but cannot find which part I should revise.
Try changing connectionpool.py file. Look for super().init method and change this line:
self.assert_hostname = assert_hostname
to
self.assert_hostname = False
My app uses MSBuild 12.0 to build our samples in batch. I'm getting error APPX0101 that states, in part, "A signing key is required in order to package this project."
I can specifically filter out this error message by filtering out any error with the APPX0101 substring in it.
My question is, what is the "correct" way to suppress this error message or - better yet - specify that the project being built is not supposed to be signed?
With no details about your project is really difficult to provide an answer...
Have a look at this answer on MSDN forums regarding Metro-style applications: they are suggesting to configure a signing certificate to your package.
Assuming it is your case, you can verify the issue by opening your project with a text editor. The following lines should be present and not empty:
<PackageCertificateThumbprint><some thumbprint></PackageCertificateThumbprint>
<PackageCertificateKeyFile>FilePicker_TemporaryKey.pfx</PackageCertificateKeyFile>
Hope it helps
I am trying to user gsoapssl in a web service client and I have been using gsoap with out ssl up to now. I have included gsoap++ ssl crypto and gsoapssl and I also tried including stdsoap2.h in the main class.My issue is I am still getting
/home/user/cppworkspace/XXXXXProject/Debug/../API.cpp:494: undefined reference to `soap_ssl_init'
Can Some one point me where to check.
I am using eclipse CDT in ubuntu 12.04 LTS. My openssl version is 1.0.1
According to the documentation http://www.cs.fsu.edu/~engelen/soapdoc2.html#tth_sEc19.22. You need to install OPENSSL first (or ) and compile all the sources of your application with option -DWITH_OPENSSL. If the error still exists, try to add stdsoap2.cpp into your project.
I get errors from both build and website precompile on App Harbor that seem to originate from multiple versions of the C# dynamic assemblies. They both start with warnings that look like:
2>CSC : warning CS1685: The predefined type 'System.Runtime.CompilerServices.CallSite' is defined in multiple assemblies in the global alias; using definition from 'd:\temp\qb3ydb5o.xoq\input\packages\IronJS.Core.0.2.0.1\lib\net40\Microsoft.Scripting.Core.dll' [D:\temp\qb3ydb5o.xoq\input\...csproj]
The build passes, but website precompile has these warnings but fails:
(0): error CS0656: Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.Binder.InvokeMember'
d:\temp\qb3ydb5o.xoq\output\_PublishedWebsites\...cshtml(4): error CS1969: One or more types required to compile a dynamic expression cannot be found. Are you missing a reference?
I wonder if it has anything to do with how IronJS is packaged? Can someone help me troubleshoot this error?
I fixed this by removing references to Microsoft.Scripting.Core and Microsoft.Scripting.ExtensionAttribute. These were added by the IronJS NuGet package. I still have AppHarbor build errors, but those are because AppHarbor isn't doing a clean build (different problem).
Edit: I submitted an issue with IronJS: https://github.com/fholm/IronJS/issues/92