Questions tagged [chilkat]

Chilkat is a company which develops libraries for a number of platforms, including Linux, MAC OS X, iOS, Android, Solaris, HP-UX, Red Hat, CentOS, FreeBSD and Windows.

Chilkat is a company which develops libraries for a number of platforms, including Linux, MAC OS X, iOS, Android, Solaris, HP-UX, Red Hat, CentOS, FreeBSD and Windows. The company's homepage is located at Chilkat Software.

316 questions
0
votes
1 answer

Chilkat RSA Encrypt fails in Windows7/IIS7

I developed a simple ASP.NET website that uses Chilkatdotnet2 (version 9.0.8.0) to generate RSA Public/Private Key pair used for encryption. Below is the sample code bool success; string UnlockChilkatRSA = "XXXXXXXXXXXXXX"; …
chris soe
  • 21
  • 3
0
votes
2 answers

using libcurl with chilkat getting errors

i'm using chilkat and libcurl in same project when i build the project with Runtime Library => Multi-threaded DLL (/MD) then i get these errors and warning: Error 4 error LNK1169: one or more multiply defined symbols found Error 1 error…
Ameer Hamza
  • 108
  • 13
0
votes
1 answer

How to remove nodes from a xml doc in VBA

Hi I'm having trouble removing a node from an XML doc. E.G: xxx zzz RemoveThis zzz RemoveThis Im using code…
J-bone
  • 1
0
votes
1 answer

android studio fails to launch app with external libs

I want to use ftp facilities in my android application, so I tried to add apache-commons-net:3.4 library. Build is done successfully but it fails when I want to run or debug the application. So I tried to use ivy-2-4-0 library and also Chilkat…
fralbo
  • 2,534
  • 4
  • 41
  • 73
0
votes
1 answer

Indy TCP/IP Server with Client using Chilkat Library

Im currently trying to use my Client with a Chilkat library since the Client has to be written in Visual C++ and not Borland C++(C++Builder). Connecting does work but as soon I try to send a string from the Client to the Server it doesn't even hit…
0
votes
1 answer

Reading xml file created with Chilkat

What I have: Xml file created with ChilkatDotNet4's Xml class, some node in that file with binary content (data in code below is byte array). zipFlag that is passed to SetBinaryContent show that content would be zipped. How file is being…
Vasyl Senko
  • 1,779
  • 20
  • 33
0
votes
0 answers

Uninitialised value was created by a heap allocation in libchilkat?

I run sudo valgrind --leak-check=full -v --track-origins=yes ./myprogram The result is: ==31734== 1 errors in context 7 of 7: ==31734== Conditional jump or move depends on uninitialised value(s) ==31734== at 0x61CCCC:…
BAE
  • 8,550
  • 22
  • 88
  • 171
0
votes
1 answer

Unwind resume error when building code including chilkat library

I'm trying to add the Chilkat C/C++ libraries into a project in CodeBlocks (32-bit, version 12.11) for Windows 7. So I went to http://www.chilkatsoft.com/downloads_mingw.asp, and downloaded the 32-bit MinGW library. Then in CodeBlocks I…
0
votes
1 answer

How to get HTML of website using chilkat component?

it can use WebRequest but i use chilkat because it support ssh but i can not get html of my website Chilkat.Http http = new Chilkat.Http(); bool success; // Any string unlocks the component for the 1st 30-days. success =…
user1950501
  • 19
  • 1
  • 5
0
votes
1 answer

Connecting via mutual SSL fails reading incoming changeCipherSpec

We need to make connect to a server using mutual SSL but for some reason we're getting the following error when trying to make a request: [...] readIncomingTls_changeCipherSpec2: processTlsRecord: processAlert: TlsAlert: level:…
Gavin
  • 2,214
  • 2
  • 18
  • 26
0
votes
1 answer

Error on using Chilkat.Zip2

Can anybody please let me know, i have used the below code to access COM object... $zip = new COM("Chilkat.Zip2"); echo $zip; but, which shows an like this... Fatal error: Uncaught exception 'com_exception' with message 'Failed to create COM…
Prabhu M
  • 2,852
  • 8
  • 37
  • 54
0
votes
1 answer

Unable to register "ChilkatMail_v7_9.dll" Version 7.9.2.0 with installer

I am using "ChilkatMail_v7_9.dll" Version 7.9.2.0 for creating EML file in C#. Using Inno Setup Version 5.2.3.I am selecting Reg Type library option while creating installer. Bit still unable to register this dll. Is it because of virus? Thanx
Preeti
  • 1,386
  • 8
  • 57
  • 112
0
votes
1 answer

PHP mcrypt // Chilkat AES encryption -- integration

I'm trying to decrypt a string using PHP which was encrypted using a Chilkat library. VB Encryption: Dim password As String password = "foobar" crypt.CryptAlgorithm = "aes" crypt.CipherMode = "cbc" crypt.KeyLength = 128 ' Generate a binary secret…
user63042
0
votes
1 answer

Chilkat ftp.SyncLocalDir with open files?

I’m having an issue with ftp.SyncLocalDir when I have an open file on the local directory. I’m using the example from http://www.example-code.com/vbnet/ftp_syncLocalTree.asp with a few minor changes. It has been working fine for a few days and then…
Steve G
  • 1
  • 1
0
votes
1 answer

Change directory and create a new file on remote using Chilkat SFTP python library

http://www.example-code.com/python/sftp_writeTextFile.asp I think I'm able to login in system using chilkat sftp sftp = chilkat.CkSFtp() 30 days trial version. now I'm in root directory(in remote machine) and there are two folders. I want to change…
xyz
  • 197
  • 3
  • 16