Skip to Content.
Sympa Menu

shibboleth-dev - RE: 1.3 SP config

Subject: Shibboleth Developers

List archive

RE: 1.3 SP config


Chronological Thread 
  • From: Jim Fox <>
  • To: Scott Cantor <>
  • Cc:
  • Subject: RE: 1.3 SP config
  • Date: Tue, 14 Jun 2005 20:18:10 -0700 (PDT)


Note the "eduo". I haven't investigated further, except to try
to get around the error. I cannot find any "eduo" in my
config files.

I think it's got to be there, in Apache's ServerName I would think. That's
where the host name comes from when relative paths are used.


In shib-target.cpp, about line 935, we have

// Compute the full target URL
st->m_url = protocol + "://" + hostname;
if ((protocol == "http" && port != 80) || (protocol == "https" && port !=
443))
st->m_url += ":" + port;
st->m_url += uri;


If I replace the 'port' lines with

st->m_url += ":447";


putting in my fixed alternate port, everything works OK.
I realize c++ allows operators to be redefined and overloaded to
an extent that defies reason, so I don't know the intention
of the statement. It appears though that adding an integer
447 to ":" results in "o".

Jim




Archive powered by MHonArc 2.6.16.

Top of Page