Aug 19
Took a few hours but solved the very generic error “NetConnection.Call.BadVersion” which you might see when you try to connect to your Zend AMF gateway.
In my case an extra space behind my closing PHP tag “?>” was resulting in this error !
<?php
class HelloWorld {
public function respond($input) {
return “You said: “.$input;
}
}
?>
^^ make sure no trailing enters/returns or spaces are here.
Recent Comments