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
1
vote
1 answer

Chilkat load SSHKey without knowing the type

I'm wondering if its possible to load a SSHKey via the Chilkat library without directly knowing the type. Currently I need to do something like this: BOOL success = false; if([privateKey FromOpenSshPublicKey: privateKeyString]) { NSLog(@"key is…
Kyle
  • 17,317
  • 32
  • 140
  • 246
1
vote
0 answers

How can I upload a file using chilkat?

EDIT: Found the issue. I was not typing the entire folder structure when trying to save the file. The problem is now solved. I'm trying to upload a file using c# and chilkat to a customer, but i keep getting an error code. I work for a logistics…
1
vote
1 answer

How to send email with DKIM to BCC using Chilkat using C# .Net

My question is about sending bcc with dkim using chilkat. I have suceesfully sending emails for past several years using Chilkat. I came across a new requirement where i need to BCC sent emails. Previously, I was using I am adding bcc like…
mumair
  • 13
  • 2
1
vote
1 answer

protocol SFTP and TLS 1.2 hand shake, sending files

Question If client A is using TLS 1.2 protocol and client B is using SFTP protocol (SSH), Can client A or B, be able send files between them without having security conflict, Or do they need to be on the same protocol?
Vike4ever
  • 11
  • 1
  • 2
1
vote
1 answer

How to do a POST and GET in VBscript?

I am new to VBscript and am looking for some help to do a POST to an API and pass it a JSON string containing id, password and a scope, then get an answer and parse it. Here is the call I need to make: POST…
Ahmed
  • 19
  • 1
  • 1
  • 3
1
vote
1 answer

Exception in thread "main" java.lang.UnsupportedClassVersionError: JVMCFRE003 bad major version

Downloaded chilkat-9.5.0-jdk11-x64 from chilkat site which had the jars and a dll file. Running in Windows 10. Trying to run the code from Chilkat to connect to LinkedIn. Both my java and javac is in version 1.8. Getting the below error. Any help is…
1
vote
1 answer

CkZip.class -class file has wrong version 55.0, should be 52.0

Both my java and javac are in same version 1.8 - still I am getting the below errors - Any help is appreciated... c:\DATA\Chilkat\chilkat-9.5.0-jdk11-x64>javac -encoding utf8 -classpath ".;./chilkat.jar" Test.java Test.java:6: error: cannot access…
1
vote
2 answers

"BAD Could not parse command" is returned if mailbox name contains non-English symbols

I'm using Chilkat.IMAP components to get emails from IMAP servers. If a mailbox name contains non-English symbols, "BAD Could not parse command" is returned: ----IMAP REQUEST---- aaai LIST "[Gmail]/" "%" ----IMAP RESPONSE---- * LIST (\All…
Aleksey
  • 179
  • 1
  • 1
  • 13
1
vote
1 answer

Save a single email attachment to BLOB using Chilkat and SQL Server

Chilkat.IMAP 9.5.0.75 - ActiveX and SQL Server In SQL Server, I'm pulling all new emails from a mailbox into a SQL table and saving the UID, Subject, Body and Date. That works great. If the email has attachments, I'm trying to save them in a…
1
vote
1 answer

How many Tasks can I add to a Chilkat Task Chain?

How many Tasks can I add to a Task Chain? I'm using the ActiveX component. Specifically I'm adding emails using MailMan.SendMailAsync and will have thousands of emails queued.
1
vote
1 answer

Validating Stripe Webhook Signatures in Classic ASP

Stripe recommends using their libraries for validating the signature, but since they do not have one that will work with Classic, I have to do it manually, and I am really struggling with it.…
Digital Fusion
  • 165
  • 4
  • 19
1
vote
1 answer

Retrieve information from JSON string thru VBScript

I'm trying to get some information from that JSON-string. I found an example how to do and and tried to adapt if for my task: Dim fso, outFile Set fso = CreateObject("Scripting.FileSystemObject") Set outFile = fso.CreateTextFile("output.txt",…
The_Immortal
  • 117
  • 4
  • 10
1
vote
1 answer

SSH - Treatment of output

I'm using chilkat lib to make ssh to my raspberry pi. I want to send a command using ssh and receive the output. The problem is always I send a command I receive a pile of text. Example: The programs included with the Debian GNU/Linux system are…
Samega 7Cattac
  • 253
  • 1
  • 3
  • 16
1
vote
2 answers

FtpResponse21: 550 The process cannot access the file because it is being used by another process. Chilkat FTP and FileZilla Server

I am using Chilkat FTP component to download some files from an FTP Server running FileZilla Server. Following is the error message when I try to do so. ChilkatLog: GetFile: DllDate: Sep 10 2010 UnlockPrefix: MYFTP Username: Admin …
Imran S.
  • 935
  • 3
  • 15
  • 32
1
vote
0 answers

Execute remote commands on an SSH with Java?

I am trying to write java code to execute remote commands on an SSH, similar to the one in this library: Chilkat Android SSH Execute Remote Commands. However, I do not know where to begin. I do not need to implement the entire library, I only need…
Ryan T.
  • 197
  • 1
  • 15