My guess, off hand....

Sounds like you're connecting to the wrong port for OpenSRS - the client
code and the server aren't talking to each other.  You should be
connecting ONLY to port 55000

Charles Daminato
TUCOWS Product Manager
[EMAIL PROTECTED]

On Sun, 21 Jul 2002, Ali Mozaffari wrote:

>
>
> -----Original Message-----
> Andy,
>
> I changed the code not exactly to what you wrote bur pretty close.
>
>  I changed this part
>
>  } elsif ( $answer->{response_code} == 400 ) {
>    return $answer->{response_text};
>  } else {
>    return "Authentication failed";
>  }
>
> to
>
> } elsif ( $answer->{response_code} == 400 ) {
>    return $answer->{response_text};
>  } else {
>    return $answer->{response_text};
>  }
>
> and guess what? I got this error instead!!
>
> ERROR: Unable to login to server: OPS Decode Error: Envelope Protocol
> Not Supported
>
> Any one has any idea??
>
> Thanks
>
>
>
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On
> Behalf Of Dev-List
> Sent: Sunday, July 21, 2002 12:54 PM
> To: Andy Coates; [EMAIL PROTECTED]
> Subject: Re: Install Prob
>
> That would help ;o)
>
> Mikey
> ----- Original Message -----
> From: "Andy Coates" <[EMAIL PROTECTED]>
> To: "'Dev-List'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
> Sent: Saturday, July 20, 2002 9:10 PM
> Subject: RE: Install Prob
>
>
> > > We are using "Blowfish" when getting this error, go figure !!
> > >  Any other
> > > ideas??????
> > > I would love to help and I looked it over, but everything
> > > seems perfect. I
> > > just never use Raq servers and can't help but wonder if
> > > something "Special"
> > > seeds done for Raq and the modules installed that are
> > > required for SRS....
> >
> > That error string you see is in the encryption part, and seems to be
> > returned here:
> >
> > if ($answer->{response_code} =~ /^2/) {
> >   return 1;
> > } elsif ( $answer->{response_code} == 400 ) {
> >   return $answer->{response_text};
> > } else {
> >   return "Authentication failed";
> > }
> >
> > I'm new to all this, but it might be worth changing that last return
> > line to include the response code and text, maybe it'll shed some
> light:
> >
> >   return "Authentication failed - ".$answer->{response_code}.' -
> > '.$answer->{response_code};
> >
> > Then run the verify_install again and see.
> >
> > You might also want to check the key again (can't hurt!) and make sure
> > that when you copied it from the control panel that it didn't include
> > the speechmark " - I did that the first time and its hard to spot
> > between the two ' ' in the conf.  Also check your username is correct,
> > etc.. Can't think of anything else.
> >
> > Andy.
> >
> >
> >
> >
>
>

Reply via email to