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

Can't build a project with Chilkat library

Can't build a project with Chilkat library in Xcode10, compilation fails with error: library not found for -lstdc++.6 Apple Forum shows: libstdc++ was deprecated about 5 years ago (note that it hasn't been available in tvOS nor watchOS). …
Dmitry Klimkin
  • 445
  • 3
  • 15
0
votes
1 answer

Chilkat parsing XML - Looping problem

I'm using the Chilkat to parse the XML response from an external API. This works perfectly when XML is formed as…
0
votes
1 answer

Get index number using value of item in array

I need to get the index number for an item in array using the items value. I can't seem to see in the documentation how to achieve this. $json = New-Object Chilkat.JsonObject $jsonStr = "{ `"id`": 1, `"name`": `"A green door`", `"tags`":…
user1513388
  • 7,165
  • 14
  • 69
  • 111
0
votes
1 answer

Replicating Asp.net Identity Password Hash to Chilkat

Hi I want to replicate the password hashing that is done in asp.net identity such that, the resulting value of password hashed by asp.net identity and the password hashed by Chilkat are same. Is that even possible? In C# asp.net, we use…
Samra
  • 1,815
  • 4
  • 35
  • 71
0
votes
1 answer

chilkat method for reading a email message body

How to get the message body using chilkat .What is the method to retrieve the message body ?
SpongeBob SquarePants
  • 1,035
  • 12
  • 26
  • 46
0
votes
1 answer

Upload zip files to a SFTP server using chilkat python

I am using the following script to upload a zip file on a SFTP server. Though I see the file on server, but it always shows that it's 0 Kb #Code to upload file to a SFTP server abc.com import chilkat sftp = chilkat.CkSFtp() success =…
0
votes
1 answer

ChilkatDotNet2: connect to server SFTP

In my C# project I have included ChilkatDotNet2.dll in order to connect to a SFTP server. For the moment, I have tried to implemt a simple connection method like the following: Chilkat.Ftp2 F = null; F = (Chilkat.Ftp2)new Chilkat.Ftp2(); F.Hostname…
SagittariusA
  • 5,289
  • 15
  • 73
  • 127
0
votes
1 answer

Chilkat error in QT (C++)

I wanna send a simple email with Qt. I tried a lot of libraries but the one that I found the simplest was chilkat libraries. Here is my code... CkMailMan mailman; bool success = mailman.UnlockComponent("xxxxxxxxxxxxx"); if (success != true) { …
0
votes
1 answer

Unable to run Zip 2 Secure EXE (Free) Version 14.5.0

I am using free version of Zip 2 Secure EXE and I keep getting the following error. I had done this 2 years ago without an issue. Also the Version created by is stamped as 15.0.0. Is the current download for 14.5.0 or 15.0.0? Can I get older…
PAS
  • 1,791
  • 16
  • 20
0
votes
0 answers

Converting Java BouncyCastle to C# Chilkat

I have the following JAVA and I am trying to convert into C# using ChilKat (or BouncyCastle) I have a working version in ChilKat, but not sure how to validate Here is the JAVA code: private SecretKey symmKey = null; public String encrypt(String…
Danimal111
  • 1,976
  • 25
  • 31
0
votes
0 answers

C# Encryption of querystring using randomly generated symmetric key

My C# .NET 4.6 Framework Code, ChilKat (64 Bit Nuget package) works and returns an encrypted string, and when I submit it to my "black box" it tells me "Invalid padding string (or incorrect password)". The box was built in JAVA 11 years ago or so. I…
Danimal111
  • 1,976
  • 25
  • 31
0
votes
1 answer

how can i check if a compressed file(of all formats- zip/rar/tar/uue) is password protected, without extracting it in c#?

I am developing a small utility in c#, where I am inserting many compressed files. These files are in different extensions(such as .zip, .rar, .tar, .uue) Now I do not want to extract these files, but I just want to check if these files are password…
Divya
  • 416
  • 5
  • 10
0
votes
1 answer

MIME "From:" header with national characters

What is the correct format of "From:" header when From Name contains national characters and dot (.) character? We generate (using C# Chilkat lib) this: From: =?utf-8?Q?Micha=C5=82_from_domain.com?= (where From Name = Michał…
Marcin
  • 1
  • 2
0
votes
0 answers

how to download a zip file from ftps server using python

I need to download a zip file from my implict ftps server. Here is the code which I tried to download the file: import sys import chilkat ftp = chilkat.CkFtp2() # Any string unlocks the component for the 1st 30-days. success =…
shilpa
  • 159
  • 1
  • 1
  • 12
0
votes
0 answers

Get email body c# .net

Im using the chilkat component Available Here to display the subject and sender of the email in a listbox.Is there a way that when a user clicks the subject of the message in the list box that the body will display in a texbox below. Thanks in…
Shane121
  • 423
  • 1
  • 7
  • 17