richeso / dataloadercliq

Automatically exported from code.google.com/p/dataloadercliq
0 stars 0 forks source link

Error on Login step of wizard #16

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Enter proxy info on cliq.properties
2.Run the batch file
3.Enter Operation/Process name, press Next
4.Enter credentials, click "Verify Username and Password"

What is the expected output? What do you see instead?
Expect: Log in confirmation
See: Result shows error message ";nested exception 
is:javax.net.SSLException: Unrecognized SSL message, plaintext connection?"

What version of the product are you using? On what operating system?
1.2, Windows XP Pro

Please provide any additional information below.
The other issue I logged is relevant as well as this one. Experienced on 
separate PCs on the same network.

Original issue reported on code.google.com by goo...@bankie.com on 5 Feb 2010 at 3:01

GoogleCodeExporter commented 9 years ago
Hello,
What are the proxy settings you use in your browser? Do you know if you have 
different 
proxy ports for HTTP and HTTPS?

Original comment by vijay.swamidass@gmail.com on 5 Feb 2010 at 8:41

GoogleCodeExporter commented 9 years ago
Unfortunately, I can't see the settings on my browser as these are locked down 
(I 
work for a large organisation, so do not have control of these things). 
However, the 
settings I've been told show that HTTP and HTTPS are the same. I have been 
given an 
IP address and port (8080), and this works with the data loader.

Original comment by goo...@bankie.com on 11 Feb 2010 at 4:46

GoogleCodeExporter commented 9 years ago
I think there is an issue in CLIq with HTTPS only proxy server -  I'll have to 
review 
the code.  Can you attach your cliq.properties file?

Thanks.

Original comment by vijay.swamidass@gmail.com on 18 Feb 2010 at 6:50

GoogleCodeExporter commented 9 years ago
Issue 15 has been merged into this issue.

Original comment by vijay.swamidass@gmail.com on 10 Jun 2010 at 5:10

GoogleCodeExporter commented 9 years ago
Recieving and error when trying to log in.

java.lang.NoClassDefFoundError: 
com/salesforce/dataloader/security/EncryptionUtil

Original comment by dtrain...@gmail.com on 23 Jul 2010 at 8:16

Attachments:

GoogleCodeExporter commented 9 years ago
"NoClassDefFoundError" means that your Data Loader Version does not match the 
version of CLIq.  Download the appropriate version of CLIq for your version of 
Data Loader here:
http://code.google.com/p/dataloadercliq/downloads/list

Ideally, you should go to the latest version.

Original comment by vijay.swamidass@gmail.com on 23 Jul 2010 at 8:32

GoogleCodeExporter commented 9 years ago
Hi All,

I need urgent help in getting CLIQ working.

I can use proxy settings, port, username and password on apex data loader 21 
and export works fine.

When I try to run CLIQ, it fails on user details screen.
It comes up with same error described as in above thread entry-
Expect: Log in confirmation
See: Result shows error message ";nested exception 
is:javax.net.SSLException: Unrecognized SSL message, plaintext connection?"

I have latest apex data loader and latest copy of cliq (matching version 21)
I have JDK 1.6 installed.

I have configured the cliq properties file as below.

Can someone please suggest a fix ASAP?

Thanks for your help.

# 
# CLIq.properties
#

# i.e. proxy.company.com
http.proxyHost=1XX.XX.XX.50
# i.e. 8080
# http.proxyPort=8080
http.proxyPort=3XXX

# Leave blank if you do not need to authenticate
# (You will be prompted for your password when you run CLIq)
http.proxyUser=XXXX@X.com

# Use https://test.salesforce.com/services/Soap/u/<YOUR DATA LOADER VERSION> 
for Sandbox instances
# NOTE: Make sure the version is equal to your version of Data Loader.
#
# For example:
# sfdc.endpoint=https://test.salesforce.com/services/Soap/u/21.0

Original comment by Gane...@gmail.com on 20 Apr 2011 at 3:06

GoogleCodeExporter commented 9 years ago
I'm getting the same error: ";nested exception 
is:javax.net.SSLException: Unrecognized SSL message, plaintext connection?"
When logging into Cliq.

Does anyone know the fix?

Original comment by premre...@gmail.com on 3 Jun 2011 at 3:46

GoogleCodeExporter commented 9 years ago
I am unable to reproduce this - do you have information about what kind of 
proxy you are using?

Original comment by vijay.swamidass@gmail.com on 4 Jun 2011 at 6:11

GoogleCodeExporter commented 9 years ago
I am unable to reproduce this - do you have information about what kind of 
proxy you are using?

Original comment by vijay.swamidass@gmail.com on 4 Jun 2011 at 6:11

GoogleCodeExporter commented 9 years ago
Here's my Cliq.Properties file

# 
# CLIq.properties
#

# i.e. proxy.company.com
http.proxyHost=proxy.xxxxxxxxxx.net
# i.e. 8080
http.proxyPort=9090

# Leave blank if you do not need to authenticate
# (You will be prompted for your password when you run CLIq)
http.proxyUser=xxxxxxx

# Use https://test.salesforce.com/services/Soap/u/<YOUR DATA LOADER VERSION> 
for Sandbox instances
# NOTE: Make sure the version is equal to your version of Data Loader.
#
# For example:
# sfdc.endpoint=https://test.salesforce.com/services/Soap/u/21.0

Original comment by premre...@gmail.com on 6 Jun 2011 at 2:09

GoogleCodeExporter commented 9 years ago
I have the same issue with the latest Cliq version (downloaded today) on Win7. 

It apparently happens only when the proxy uses the same port both for http and 
https (in my case 8080). Because I work in a large corporation, I am not able 
to change the proxy settings or call another port.

Original comment by lukas.ve...@gmail.com on 6 Jun 2011 at 2:31

GoogleCodeExporter commented 9 years ago
Can you try editting cliq.sh or cliq.bat and add this to the java command:
-Dhttps.proxyHost=<proxyhost> -Dhttps.proxyPort=<proxyport> 

In cliq.sh, it would look like:
java -Dhttps.proxyHost=<proxyhost> -Dhttps.proxyPort=<proxyport> DataLoaderCliq 
$@

It is possible the https proxy port is getting set incorrectly, and this may 
help.  Let me know if you see any progress.

Thanks!

Original comment by vijay.swamidass@gmail.com on 7 Jun 2011 at 5:16

GoogleCodeExporter commented 9 years ago
Hi, 

I tried your proposed approach, but apparently I made somewhere a mistake. 
Because I'm not sure, where in the cliq.bat should I paste the code, I would 
like to ask you, if you can attached the enhanced cliq.bat file here.

Thank you in advance.

Original comment by lukas.ve...@gmail.com on 7 Jun 2011 at 10:57

GoogleCodeExporter commented 9 years ago
The java line in cliq.bat could be changed like this:
..\_jvm\bin\java.exe -cp 
cliq.jar;..\DataLoader.jar;lib\miglayout-3.7.1.jar;lib\jaf-1.0.2\activation.jar;
lib\javamail-1.4.2\mail.jar;lib\commons-discovery-0.2.jar;lib\axis.jar;lib\axis-
ant.jar;lib\jaxrpc.jar;lib\log4j-1.2.8.jar;lib\saaj.jar;lib\wsdl4j-1.5.1.jar;. 
-Dhttps.proxyHost=<proxyhost> -Dhttps.proxyPort=<proxyport> DataLoaderCliq %1

Change <proxyhost> and <proxyport> to your own settings.

Original comment by vijay.swamidass@gmail.com on 10 Jun 2011 at 5:03

GoogleCodeExporter commented 9 years ago
Sorry for the late answer, but this approach hasn't unfortunately helped. For 
detailed error see attachment, please.

Thank you

Original comment by lukas.ve...@gmail.com on 17 Jun 2011 at 6:52

Attachments:

GoogleCodeExporter commented 9 years ago
In this issue I also have great trouble.
Result of examining among other things, I think of that does not support 
authentication in NTLM.
By looking at the source, NTCredentials () did not like being used.

Original comment by takasn77...@gmail.com on 24 Aug 2011 at 10:37

GoogleCodeExporter commented 9 years ago
when i run iam getting this error,can any body told me  why?
Salesforce Data Loader Command Line Interface Quickstart (CLIq)
===============================================================
 .oOOOo.  o       ooOoOOo
.O     o  O          O
o         o          o
o         o          O
o         O          o    .oOoO'
O         O          O    O   o
`o     .o o     .    O    o   O
 `OoooO'  OOoOooO ooOOoOo `OoOo
                              O
                              `o
===============================================================
Checking for newer versions...You have the most current version: 1.4.22
Loading GUI...
- Unable to find required classes (javax.activation.DataHandler and javax.mail.i
nternet.MimeMultipart). Attachment support is disabled.

in password section what shall add pwd+token or only pwd

Original comment by sm23...@gmail.com on 5 Sep 2011 at 5:28

GoogleCodeExporter commented 9 years ago
You can ignore that message.  It is because the javax libraries are not present.
I am looking into a way to bundle them within the licensing policy, but the 
error does not affect the program.

Original comment by vijay.swamidass@gmail.com on 7 Sep 2011 at 7:17

GoogleCodeExporter commented 9 years ago
If you were getting the "javax.net.SSLException: Unrecognized SSL message, 
plaintext connection?" errors or seeing warnings in the console, please try the 
2.0 version of CLIq.  Those problems *should* all be fixed now.

Original comment by vijay.swamidass@gmail.com on 19 Oct 2011 at 5:24

GoogleCodeExporter commented 9 years ago
hello, 
I am using some proxy settings in command line data loader and set all the 
possible parameters (proxyusername,proxypassword,host,port) but getting some 
ntlm authentication error(invalid name credentials). I am working in a 
corporate network. Does this ntlm auth. has something to do with 
sfdc.proxyntlmdomain settings?? 

Although i tried it keeping proxy ntlm domain blank and data loader works fine 
through user interface but not with command line.
Please suggest any solution.

Original comment by itsmemoh...@gmail.com on 18 Dec 2014 at 6:04

GoogleCodeExporter commented 9 years ago
Hi - I am not familiar with the proxyntlmdomain setting.   When you use the 
Data Loader UI, what settings do you enter?  That should be copied to the 
corresponding commandline option.

Original comment by vijay.swamidass@gmail.com on 25 Dec 2014 at 11:45