Pages:
Author

Topic: . - page 85. (Read 491736 times)

member
Activity: 111
Merit: 10
The Future is Here; Grab it Fast Before Past
April 28, 2015, 05:21:30 AM
Topped up! And what a great time to be running a node. 700 HZ per day at the moment

688HZ today, but last day was 711HZ, highest of almost month. But seems falling again as node runner started to 'update with latest version' day by day:(

BDCoinMiner
HZ: NHZ-8GHQ-TJRL-5VUK-FTPZT
legendary
Activity: 1162
Merit: 1005
April 28, 2015, 05:21:21 AM
Curious, why nobody is using NZxchange for exchange to btc or NXT? There is no liquidity at the moment.
hero member
Activity: 575
Merit: 502
April 28, 2015, 04:30:59 AM
I would look it up in some HZ manual, but which one?

On ...:7776/test is a dead link to wiki docs.

Also, could you please run the javadoc.sh on http://api.nhz...


What are the technical rules for sending messages through HZ?
Charset?
Maximum number of characters?
Or is the fee per 1000 characters rising? How does it work? ...
Hah, I found something in the (old!) manual:
Quote
HEX_STRING is the hex-encoded message. The content and encryption method for this string are not predefined; this is up to the developer.
What are the encryption methods supported in the GUI so that the recipient can decode the msg when he receives it in his wallet?
Quote
The message size is currently capped at 1000 Bytes.
Is that also, and still, the case with HZ?
about the encryption?

The newer Nxt wiki version is talking about AES - is that the right one to use, if I want the recipient to have my message auto-decrypted in his GUI?


Yes, messages have a max length limit of 1000 byte. A message is compressed with gzip and then encrypted with aes256.
You only have to pay 1 HZ regardless of the length of the message.
hero member
Activity: 575
Merit: 502
April 28, 2015, 04:20:07 AM
Block explorer - what have you just changed?
After it worked for many hours, then about 1 hour ago, this error suddenly appeared:
Quote
urllib2.URLError:
when I python-access the page https://explorer.horizonplatform.io/api.php?page=accounts
that GeBeWolf told me to use as a workaround to get all addresses, to find my shareholders.
Code:
import urllib2
f = urllib2.urlopen("https://explorer.horizonplatform.io/api.php?page=accounts") 
It is a well known bug that is somehow connected to the cyphers that the server uses:
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/861137
http://blog.techstacks.com/2008/09/securing-ssl-in-tomcat-part-two.html
Have you updated the block explorer server in the past approx 1 hour?
Or is there a cloudflare between us, and the settings changed? Thx.
Or have you upgraded to a newer OpenSSL, or webserver last night?


Here is a solution for you to try, please try changing this on your webserver:

Quote
The solution is to restrict available ciphers in Tomcat’s https connector:
Code:
ciphers="SSL_RSA_WITH_RC4_128_SHA"
Restart Tomcat and curl will work.
http://georgik.sinusgear.com/2012/02/19/tomcat-7-and-curl-ssl23_get_server_hellotlsv1-alert-internal-error/


Quote
5 Responses:

Raghavendra Chary B says:
26. October 2012 at 13:35
It worked, thanks very much!

Sagar says:
17. May 2013 at 11:04
Thank you very much , helped me a lot.

mitra says:
21. January 2014 at 13:31
Very Cool

Beverly says:
1. July 2014 at 0:31
It worked. Thank you so much for posting this. After almost two weeks of trouble shooting.

val says:
17. July 2014 at 11:07
Cпacибo!!!

SSL2 and SSL3 are weak and should be avoided/disabled.

SSL test for explorer.horizonplatform.io seems ok. SSL2 and SSL3 are disabled:
https://www.ssllabs.com/ssltest/analyze.html?d=explorer.horizonplatform.io

Does your python script try to use SSL2 or SSL3?
legendary
Activity: 971
Merit: 1000
April 28, 2015, 03:38:43 AM
Topped up! And what a great time to be running a node. 700 HZ per day at the moment

Didn't receive for today Sad 217.17.88.5

Likely do to it running dry, it'll catch up the payment tomorrow.
legendary
Activity: 1162
Merit: 1005
April 28, 2015, 03:10:03 AM
Topped up! And what a great time to be running a node. 700 HZ per day at the moment

Didn't receive for today Sad 217.17.88.5
legendary
Activity: 971
Merit: 1000
April 28, 2015, 02:38:34 AM
Topped up! And what a great time to be running a node. 700 HZ per day at the moment
hero member
Activity: 601
Merit: 500
April 28, 2015, 12:45:14 AM
The node bounty account is dry, again.
legendary
Activity: 1470
Merit: 1000
cryptocollectorsclub.com
April 27, 2015, 06:39:06 PM
Last couple hours of the sale for HZchronos, ends Midnight tonight central standard time USA, just listed as TRUSTED asset on the Horizonplatform.io website!

https://bitcointalksearch.org/topic/annhzchronos-horizon-hz-asset-1434-colored-coins-crypto-service-asset-1022989
Bitcointalk Announcement Thread

https://www.facebook.com/groups/1610748235805154/
HZchronos Facebook Page

http://www.hzchronos.com
HZchronos Website

https://horizonplatform.io
Official Horizon Website - Get Wallets Here!

legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
April 27, 2015, 11:31:52 AM
Block explorer - what have you just changed?
After it worked for many hours, then about 1 hour ago, this error suddenly appeared:
Quote
urllib2.URLError:
...
Whatever you had done there last night, it had broken backwards compatibility.
Perhaps it was simply some automatic server updates - probably intended to force OpenSSL upgrades in clients?

To solve it, clientside, I have deinstalled, and reinstalled my whole Python environment, into a newer version.

Now this test
Code:
import urllib2, ssl; print ssl.OPENSSL_VERSION
url = "https://explorer.horizonplatform.io/api.php?page=accounts"
f=urllib2.urlopen(urllib2.Request(url, None, headers))
answer = f.read()
f.close()
print len(answer)
results in error free:

Quote
OpenSSL 1.0.1j 15 Oct 2014
263511

So all is good again.  I have caught up with your changes.
legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
April 27, 2015, 08:38:15 AM
Code:
2015-04-27 05:38:51 INFO: Scanning blockchain...
2015-04-27 05:40:19 INFO: processed block 0
2015-04-27 05:42:12 INFO: processed block 5000
2015-04-27 05:45:49 INFO: processed block 10000
...
Is there an option to tell the NRS to not scan the blockchain when starting up?
It takes many minutes, compared to only seconds with the new Nxt.
Thx.
No, the nrs has to scan the blockchain to build all objects as Java objects.
Our upcoming HZ version will have derived object in database tables.

Thanks a lot! Good to know.

legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
April 27, 2015, 08:00:54 AM
Block explorer - what have you just changed?
After it worked for many hours, then about 1 hour ago, this error suddenly appeared:
Quote
urllib2.URLError:
when I python-access the page https://explorer.horizonplatform.io/api.php?page=accounts
that GeBeWolf told me to use as a workaround to get all addresses, to find my shareholders.
Code:
import urllib2
f = urllib2.urlopen("https://explorer.horizonplatform.io/api.php?page=accounts") 
It is a well known bug that is somehow connected to the cyphers that the server uses:
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/861137
http://blog.techstacks.com/2008/09/securing-ssl-in-tomcat-part-two.html
Have you updated the block explorer server in the past approx 1 hour?
Or is there a cloudflare between us, and the settings changed? Thx.
Or have you upgraded to a newer OpenSSL, or webserver last night?


Here is a solution for you to try, please try changing this on your webserver:

Quote
The solution is to restrict available ciphers in Tomcat’s https connector:
Code:
ciphers="SSL_RSA_WITH_RC4_128_SHA"
Restart Tomcat and curl will work.
http://georgik.sinusgear.com/2012/02/19/tomcat-7-and-curl-ssl23_get_server_hellotlsv1-alert-internal-error/


Quote
5 Responses:

Raghavendra Chary B says:
26. October 2012 at 13:35
It worked, thanks very much!

Sagar says:
17. May 2013 at 11:04
Thank you very much , helped me a lot.

mitra says:
21. January 2014 at 13:31
Very Cool

Beverly says:
1. July 2014 at 0:31
It worked. Thank you so much for posting this. After almost two weeks of trouble shooting.

val says:
17. July 2014 at 11:07
Cпacибo!!!
hero member
Activity: 605
Merit: 500
April 27, 2015, 05:48:33 AM


A brutal day for Bitcoin and most alts, but not for Horizon, not today! Make sure and check out HZchronos too! Smiley

HZ rank 81.
member
Activity: 111
Merit: 10
The Future is Here; Grab it Fast Before Past
April 27, 2015, 05:34:59 AM
Cool;)

Seems more people are trying to update their node with latest version of HZ;) Last day node bounty was around 790HZ where today bounty was set to around 711 HZ /node / day.

making payment stop is most powerful tools to drive all ignorant people to update their node.


Keep the network running:)


Cheers
BDCoinMiner
HZ: NHZ-8GHQ-TJRL-5VUK-FTPZT


Sorry guys; I mention wrong number on above posting.

Node bounty was :

4/24/2015    499.00199601 HZ
4/25/2015    595.59261465 HZ
4/26/2015    709.21985816 HZ

and today's bounty was:

4/27/2015    711.23755334 HZ


Isn't it cool on node runner's point of view?


Cheers
BDCoinMiner
HZ: NHZ-8GHQ-TJRL-5VUK-FTPZT
member
Activity: 111
Merit: 10
The Future is Here; Grab it Fast Before Past
April 27, 2015, 05:30:04 AM
Cool;)

Seems more people are trying to update their node with latest version of HZ;) Last day node bounty was around 790HZ where today bounty was set to around 711 HZ /node / day.

making payment stop is most powerful tools to drive all ignorant people to update their node.


Keep the network running:)


Cheers
BDCoinMiner
HZ: NHZ-8GHQ-TJRL-5VUK-FTPZT
hero member
Activity: 575
Merit: 502
April 27, 2015, 05:17:26 AM
Code:
2015-04-27 05:38:51 INFO: Scanning blockchain...
2015-04-27 05:40:19 INFO: processed block 0
2015-04-27 05:42:12 INFO: processed block 5000
2015-04-27 05:45:49 INFO: processed block 10000
...

Is there an option to tell the NRS to not scan the blockchain when starting up?
It takes many minutes, compared to only seconds with the new Nxt.

Thx.


No, the nrs has to scan the blockchain to build all objects as Java objects.
Our upcoming HZ version will have derived object in database tables.
legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
April 26, 2015, 11:57:55 PM
Block explorer - what have you just changed?

After it worked for many hours, then about 1 hour ago, this error suddenly appeared:

Quote
urllib2.URLError:

when I python-access the page https://explorer.horizonplatform.io/api.php?page=accounts
that GeBeWolf told me to use as a workaround to get all addresses, to find my shareholders.

Code:
import urllib2
f = urllib2.urlopen("https://explorer.horizonplatform.io/api.php?page=accounts") 

It is a well known bug that is somehow connected to the cyphers that the server uses:
https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/861137
http://blog.techstacks.com/2008/09/securing-ssl-in-tomcat-part-two.html

Have you updated the block explorer server in the past approx 1 hour?
Or is there a cloudflare between us, and the settings changed? Thx.

legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
April 26, 2015, 11:47:50 PM
Code:
2015-04-27 05:38:51 INFO: Scanning blockchain...
2015-04-27 05:40:19 INFO: processed block 0
2015-04-27 05:42:12 INFO: processed block 5000
2015-04-27 05:45:49 INFO: processed block 10000
...

Is there an option to tell the NRS to not scan the blockchain when starting up?
It takes many minutes, compared to only seconds with the new Nxt.

Thx.
legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
April 26, 2015, 07:56:29 PM
Hah, I found something in the (old!) manual...
That oldid=29356 manual is definitely at least one step too old, compared to the current HZ3.9.1

I only know that since now, because I have just found out that requestType=sendMessage is already much newer than mentioned there. HZ already has a lot more parameters, namely for encrypting messages.

Wow, these were lost hours, until I realized that. (But as a side effect, I have started to dive into the Java code, had been hoping for answers there) .


Which brings me back to my original questions:

I would look it up in some HZ manual, but which one?

On ...:7776/test is a dead link to wiki docs.

Also, could you please run the javadoc.sh on http://api.nhz...

Thanks.
member
Activity: 111
Merit: 10
The Future is Here; Grab it Fast Before Past
April 26, 2015, 05:06:00 PM


   Help
  May I ask is there something going on with the node page not updating the time ?

  my Node

NODE IP ADDRESS: XX.X.XXX.Xx (ONLINE)   it is working on the pc
Last Checked: 2015-04-26 19:05:17 | Last Payout: 2015-04-25 03:22:53
Total Uptime: 42345 mins | Uptime Until Next Payout: 855 mins     <--------->  this as bean the same Time  for the pass 12 hrs not updating like it did in the pass days  and I did not get paid for 2015-04-26

 




It seems problem with HZ own node checking script. you can give your node IP address as it is not private address. And as node checking page showing 'ONLINE' status mean you don't have to worry about it. But what is the version of HZ software you running?? Today's payment was more then 700HZ mean they stopped paying old, outdated version node to pay. Double check your node version and payment tx .

Cheers.

 yes my Node ver V3.8   I will go and see if there is a update Ver and install it  ty ..
.

Current updated HZ version is 3.9.1; so don't forget to update it towards 3.9.1. There was a version 3.9 only which is absolute by 3.9.1. To get paid you may need to run 3.9.1.

Cheers
BDCoinMiner
HZ: NHZ-8GHQ-TJRL-5VUK-FTPZT
Pages:
Jump to: