Hi Esteban -

How are you loading Zinc into Gemstone? Were you using the metacello configuration on Squeaksource or something else?

The reason I ask is all three issues you report were fixed/working at the start of June when I updated the port to what was current at the time. The Gemstone port is current up to Zinc-HTTP-SvenVanCaekenberghe.162 which is from May 19th.

Let me know if loading via the metacello config is flawed and I'll update everything. Also check that you are loading version 1.1 of the project. It is the version referenced in #stable:

I pasted the specific fixes below

Thanks
Paul



ZnUrl>>scheme: symbol
        symbol isNil
                ifTrue: [ scheme := nil ]
                ifFalse: [
                        (#(http https) includes: symbol asSymbol)
                                ifTrue: [ scheme := symbol asSymbol ]
                                        ifFalse: [ (ZnUnknowScheme scheme: 
symbol) signal ] ]


ZnNetworkingUtils>>isProxySet
        ^ HTTPSocket httpProxyServer isEmptyOrNil not


ZnNetworkingUtils class>> socketStreamTimeout
        "Timeout in seconds for SocketStream IO"
        
        ^ 10

Reply via email to