Re: [wsjt-devel] LoTW error

2018-10-17 Thread Black Michael via wsjt-devel
Please ignore thisclicked the wrong button.Mike


 

On Wednesday, October 17, 2018, 4:11:25 PM CDT, Black Michael via 
wsjt-devel  wrote:  
 
 That path is only taken if the file does not exist or forced_fetcth is true.


 

 On Wednesday, October 17, 2018, 11:38:56 AM CDT, Bill Somerville 
 wrote:  
 
  On 17/10/2018 17:29, Black Michael via wsjt-devel wrote:
  
  Problem is likely related to the fact that redirect_count only gets reset to 
zero if the file does not exist or forced_fetch==true
  Should be reset on every attempt.
  
   if (!QFileInfo::exists (csv_file_name) || forced_fetch)   { 
current_url_.setUrl (url); redirect_count_ = 0; download 
(current_url_);   } And the initial download call doesn't force it since 
the force argument defaults to false.
  
  lotw_users_.load (ui_->LotW_CSV_URL_line_edit->text ());
   
   de Mike W9MDB

  
 
Hi Mike,
 
I don't follow, the count is set to zero just before download() is invoked, how 
is that not setting it to zero every time a download cycle is attempted? It's 
right there in the code fragment you quoted.

  
73
 Bill
 G4WJS.
 
 ___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel
  ___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Black Michael via wsjt-devel
That path is only taken if the file does not exist or forced_fetcth is true.


 

 On Wednesday, October 17, 2018, 11:38:56 AM CDT, Bill Somerville 
 wrote:  
 
  On 17/10/2018 17:29, Black Michael via wsjt-devel wrote:
  
  Problem is likely related to the fact that redirect_count only gets reset to 
zero if the file does not exist or forced_fetch==true
  Should be reset on every attempt.
  
   if (!QFileInfo::exists (csv_file_name) || forced_fetch)   { 
current_url_.setUrl (url); redirect_count_ = 0; download 
(current_url_);   } And the initial download call doesn't force it since 
the force argument defaults to false.
  
  lotw_users_.load (ui_->LotW_CSV_URL_line_edit->text ());
   
   de Mike W9MDB

  
 
Hi Mike,
 
I don't follow, the count is set to zero just before download() is invoked, how 
is that not setting it to zero every time a download cycle is attempted? It's 
right there in the code fragment you quoted.

  
73
 Bill
 G4WJS.
 
 ___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Bill Somerville

On 17/10/2018 18:22, Black Michael via wsjt-devel wrote:

OK...does appear all paths should reset to zero.

So perhaps building a string of all the redirects and showing that on 
the the error message for somebody to test that can show what it's 
doing might be useful.  I can't seem to reproduce the error now.



de Mike W9MDB


Hi Mike,

the too many redirects issue is that WSJT-X correctly detects that Qt 
has no SSL/TLS support (no OpenSSL libraries that it can use - it needs 
v1.0.x) and tries an http request. Sane web servers would serve the URL 
as http but the ARRL have stopped serving http, I assume as part of 
their updates to drop TLS v1.0. They redirect http requests to an https 
equivalent URL which the code dutifully retries as http because it can't 
talk SSL/TLS. That endless loop is terminated by a hard limit on 
redirect attempts.


I should probably change the code to only try http if SSL/TLS is not 
available and not on redirects but that will not get the file, just a 
different error.


The other error about a failed SSL handshake is where an old OpenSSL 
v1.0.x library is used that does not support TLS v1.1 or later, the ARRL 
web server will reject attempts at SSL v* or TLS v1.0 connection handshakes.


73
Bill
G4WJS.



___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread David Fisher
Window 10, 1809



File was not found using “where libeay32.dll”.



Dave / NX6D






From: Bill Somerville 
Sent: Wednesday, October 17, 2018 8:54:29 AM
To: wsjt-devel@lists.sourceforge.net
Subject: Re: [wsjt-devel] LoTW error

On 17/10/2018 16:51, Chuck Furman wrote:
> I'm seeing the same LoTW message like others are seeing:
>
Hi All,

can those of you seeing the LotW Users Data download error please report
which operating system and operating system version you are using please?

73
Bill
G4WJS.



___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://nam01.safelinks.protection.outlook.com/?url=https%3A%2F%2Flists.sourceforge.net%2Flists%2Flistinfo%2Fwsjt-develdata=02%7C01%7C%7C5b3aa2b605c84a5415a108d63449361c%7C84df9e7fe9f640afb435%7C1%7C0%7C636753886377106860sdata=Knti90PPBLCVigAm0Iw%2FFoKTFqInA8BUbvJP78V8OJs%3Dreserved=0
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Black Michael via wsjt-devel
OK...does appear all paths should reset to zero.
So perhaps building a string of all the redirects and showing that on the the 
error message for somebody to test that can show what it's doing might be 
useful.  I can't seem to reproduce the error now.

de Mike W9MDB




 

 On Wednesday, October 17, 2018, 11:38:56 AM CDT, Bill Somerville 
 wrote:  
 
  On 17/10/2018 17:29, Black Michael via wsjt-devel wrote:
  
  Problem is likely related to the fact that redirect_count only gets reset to 
zero if the file does not exist or forced_fetch==true
  Should be reset on every attempt.
  
   if (!QFileInfo::exists (csv_file_name) || forced_fetch)   { 
current_url_.setUrl (url); redirect_count_ = 0; download 
(current_url_);   } And the initial download call doesn't force it since 
the force argument defaults to false.
  
  lotw_users_.load (ui_->LotW_CSV_URL_line_edit->text ());
   
   de Mike W9MDB

  
 
Hi Mike,
 
I don't follow, the count is set to zero just before download() is invoked, how 
is that not setting it to zero every time a download cycle is attempted? It's 
right there in the code fragment you quoted.

  
73
 Bill
 G4WJS.
 
 ___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Dave J Barnes
Worked before status color doesn't work either.  Or, at least it works 
differently than RC2.



___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Bill Somerville

On 17/10/2018 17:45, Black Michael via wsjt-devel wrote:
I saw it just the once on Windows 10.  Tried deleting the file and 
cannot recreate the error.
Not sure if the file would have been there when I started RC3 the 1st 
time.


de Mike W9MDB


Hi Mike,

there's no need to delete the CSV file, the "Fetch" button the the 
"Settings->Colors" panel will attempt to download it regardless of 
whether it is currently in place. The file was there in v2.0.0 RC2 but 
in a different directory which was not a writeable location as it was 
packaged in the installer then.


73
Bill
G4WJS.



___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Black Michael via wsjt-devel
I saw it just the once on Windows 10.  Tried deleting the file and cannot 
recreate the error.Not sure if the file would have been there when I started 
RC3 the 1st time.
de Mike W9MDB


 

On Wednesday, October 17, 2018, 10:58:16 AM CDT, Bill Somerville 
 wrote:  
 
 On 17/10/2018 16:51, Chuck Furman wrote:
> I'm seeing the same LoTW message like others are seeing:
>
Hi All,

can those of you seeing the LotW Users Data download error please report 
which operating system and operating system version you are using please?

73
Bill
G4WJS.



___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel
  ___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Bill Somerville

On 17/10/2018 17:29, Black Michael via wsjt-devel wrote:
Problem is likely related to the fact that redirect_count only gets 
reset to zero if the file does not exist or forced_fetch==true

Should be reset on every attempt.

if(!QFileInfo::exists(csv_file_name)||forced_fetch)
{
current_url_.setUrl(url);
redirect_count_=0;
download(current_url_);
}
And the initial download call doesn't force it since the force 
argument defaults to false.


lotw_users_.load(ui_->LotW_CSV_URL_line_edit->text());

de Mike W9MDB


Hi Mike,

I don't follow, the count is set to zero just before download() is 
invoked, how is that not setting it to zero every time a download cycle 
is attempted? It's right there in the code fragment you quoted.


73
Bill
G4WJS.

___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Black Michael via wsjt-devel
Problem is likely related to the fact that redirect_count only gets reset to 
zero if the file does not exist or forced_fetch==true
Should be reset on every attempt.

 if (!QFileInfo::exists (csv_file_name) || forced_fetch)  {
current_url_.setUrl (url);redirect_count_ = 0;download 
(current_url_);  }And the initial download call doesn't force it since the 
force argument defaults to false.

lotw_users_.load (ui_->LotW_CSV_URL_line_edit->text ());

de Mike W9MDB
 

On Wednesday, October 17, 2018, 10:58:16 AM CDT, Bill Somerville 
 wrote:  
 
 On 17/10/2018 16:51, Chuck Furman wrote:
> I'm seeing the same LoTW message like others are seeing:
>
Hi All,

can those of you seeing the LotW Users Data download error please report 
which operating system and operating system version you are using please?

73
Bill
G4WJS.



___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel
  ___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread charlie
Bill

Seeing it every time I start program on Win 7 64b.

Not seeing it with Vista 32.

73

Charlie

> On 17/10/2018 16:51, Chuck Furman wrote:
>> I'm seeing the same LoTW message like others are seeing:
>>
> Hi All,
>
> can those of you seeing the LotW Users Data download error please report
> which operating system and operating system version you are using please?
>
> 73
> Bill
> G4WJS.
>
>
>
> ___
> wsjt-devel mailing list
> wsjt-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wsjt-devel
>




___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread WB5JJJ
Sorry.  Win10 Pro 1803 all updates here.

On Wed, Oct 17, 2018 at 10:58 AM Bill Somerville 
wrote:

> On 17/10/2018 16:51, Chuck Furman wrote:
> > I'm seeing the same LoTW message like others are seeing:
> >
> Hi All,
>
> can those of you seeing the LotW Users Data download error please report
> which operating system and operating system version you are using please?
>
> 73
> Bill
> G4WJS.
>
>
>
> ___
> wsjt-devel mailing list
> wsjt-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wsjt-devel
>


-- 
George Cotton, WB5JJJ
PO Box 1025
Russellville, AR  72811

479.968.7737 Home
479.857.7737 Cell

DMR K5CS (Local Repeater) - 310515, CC1, TS2
DMR Arkansas - 3105

4
___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel


Re: [wsjt-devel] LoTW error

2018-10-17 Thread Bill Somerville

On 17/10/2018 16:51, Chuck Furman wrote:

I'm seeing the same LoTW message like others are seeing:


Hi All,

can those of you seeing the LotW Users Data download error please report 
which operating system and operating system version you are using please?


73
Bill
G4WJS.



___
wsjt-devel mailing list
wsjt-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wsjt-devel