Hello,
-- I've tried the NeoJSON examples in the VAST 9.1 Beta. It works fine, when I do it in my private environment. I tried the SST-example from the old VAST-forum http://forums.instantiations.com/topic-12-2393.html 'https://api.predic8.de/shop/products/' sstAsUrl fetch. This works fine.at home. But in my customers environment http(s) connections are directed through a PAC-file. The example works in Firefox, IE, Chrome. But not in a VAST-Workspace. I could download this file and tried to configure the #SstClient This does not work: SstHttpClient initializeTransportScheme: 'local_https_tunnel' forHttpsTunnelThrough: 'every.ipadress.from.pac:portnumber' proxyAuth: nil "I filled proxyAuth too.. Or tried the pac-file-url. " 'https://api.predic8.de/shop/products/' sstAsUrl fetch. What did I wrong? Kind regards and a nice sunny day Klaus You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hello Klaus,
-- I *think* you are running into what I just ran into recently and fixed in our latests builds. In my scenario, when using a proxy server only the one-shot #fetch: message would work. The first call to #get: would pass, but subsequent calls to #get: would fail because the client did not remember that it already established a secure tunnel. As a result the client would keep trying to establish a secure connection on every get: request resulting in an conn refused. Just to see if it's the same thing...can you try using SstHttpClient fetch: instead as a test? On Monday, June 4, 2018 at 8:37:45 AM UTC-4, Klaus Breker wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hello Seth,
-- thanks for your quick reply. I'm sure there is the firewall in my customer's company, which blocks any request of such a strange browser like "abt.exe". I remember, that I had to allow abt.exe through my firewall on my Windows 10 system. So I have to deal with the network admins to make me hole. Kind regards Klaus Am Montag, 4. Juni 2018 15:09:00 UTC+2 schrieb Seth Berman:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
In reply to this post by Seth Berman
Hello Seth,
-- I've got it. No dealing with network admins, but patching #SstHttpClient -> class #fetch. I added a call to the client before the #get. sem := Semaphore new. workBlock := [| client | (client := SstHttpClient forTransportScheme: 'httpl') startUp. client proxyEnabled: true. response := [client get: aUrlObject] ensure: [client shutDown]. sem signal]. This works. Kind regards Klaus Am Montag, 4. Juni 2018 15:09:00 UTC+2 schrieb Seth Berman:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Great to hear Klaus,
-- Glad it's working and thanks for the update. -- Seth On Wednesday, June 6, 2018 at 10:49:40 AM UTC-4, Klaus Breker wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hello,
-- it's me again with this issue. I switched today to VAST 9.1 and imported my test application from the VAST 9.1 Beta. I loaded my config map and tried to fetch some data. In the Beta everything runs fine, but now there the following error occurs during #SstHttpClient -> #get: -> establishTunneledConnectionTo: proxyEnabled is set to true and the url: https://api.predic8.de/shop/customers/ SstReceiveError(INTERNAL_ERROR (-1): Unknown error OpenSSLError Error Code: nil Error Object: ('TLS') Error String: nil Error Hint: 'Unexpected return value is not an SSL Factory Method...check the suplied name' AuxiliaryData: nil) Any idea, what I did wrong or whatever happened? Regards and thanks in advance Klaus Am Mittwoch, 6. Juni 2018 21:10:16 UTC+2 schrieb Seth Berman:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hi Klaus,
-- Are you sure you have OpenSSL setup? What does
print? On Thursday, August 16, 2018 at 10:47:39 AM UTC-4, Klaus Breker wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hi Seth,
-- my VAST 9.1 installation says: 0.0.0 Development the VAST 9.1 Beta says: 1.0.2e Release looks like had an OpenSSL setup and the VAST 9.1 not? How do I get it? Thanks and regards Klaus Am Donnerstag, 16. August 2018 17:00:47 UTC+2 schrieb Seth Berman:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hello Klaus,
-- Yes, looks like VAST 9.1 is not setup to use OpenSSL. OpenSSL has 2 libraries which are referenced from the ini file in [PlatformLibrary Name Mappings] section. CRYPTO_LIB=libeay32 SSL_LIB=ssleay32 These default names are applicable to 1.0.x. If you move up to 1.1.x, then the default names change to libcrypto and libssl (similar to what they are on *nix). So these libraries (libeay32.dll and ssleay32.dll) need to be resolvable by VA Smalltalk when it goes to load them. The latest 1.0.x series (1.0.2o) for windows can be downloaded from here https://indy.fulgan.com/SSL/ Your options are to: 1. Copy these 2 libraries to your image folder. 2. Copy these 2 libraries to your VAST Root Folder (the same one that has esvm40.so in it) 3. Make sure these libraries are in the OS library path 4. Reference the full path to these from the ini file (for example) CRYPTO_LIB=C:\OpenSSL\102\libeay32.dll SSL_LIB=C:\OpenSSL\102\ssleay32.dll - Seth On Thursday, August 16, 2018 at 11:18:05 AM UTC-4, Klaus Breker wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hi Seth,
-- it works :-) Thank you and a fine day Klaus Am Donnerstag, 16. August 2018 17:29:09 UTC+2 schrieb Seth Berman:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Hi Klaus,
-- Great...you as well. -- Seth On Thursday, August 16, 2018 at 11:47:54 AM UTC-4, Klaus Breker wrote:
You received this message because you are subscribed to the Google Groups "VA Smalltalk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. To post to this group, send email to [hidden email]. Visit this group at https://groups.google.com/group/va-smalltalk. For more options, visit https://groups.google.com/d/optout. |
Free forum by Nabble | Edit this page |