Common CORBA API logic remained the same as in the version 2.0. Just parameters and some methods names were changed and some new methods were added as well.
The changes are the next:
\verb|httpStream->set_cookie(name,value,x,y,z);
|
to calls:
\verb|httpStream->set_cookie(name,value,(((x*24)+y)*60+z)*60);
|
Extensions:
consequently:
consequently:
LoadModule cbroker_module <path>/libcbroker.so
|
should be changed to
LoadModule cbroker_module <path>/mod_cbroker.so
|
<Location cbroker>
SetHandler cbroker-handler ORB_args -ORBInitRef NameService=cobaloc::my.host.com:2809/NameService </Location> |
goes to the next form.
<IfModule mod_cbroker>
CbrokerLocation cbroker CbrokerORBArgs -ORBInitRef NameService=corbaloc::my.host.com:2809/NameService </IfModule> |
And configuration with authorization:
<Location cbroker>
SetHandler cbroker-handler ORB_args -ORBInitRef NameService=cobaloc::my.host.com:2809/NameService AuthType Basic AuthName myService require valid-user </Location> |
goes to
<IfModule mod_cbroker>
CbrokerLocation ProtectedCbroker CbrokerORBArgs -ORBInitRef NameService=corbaloc::my.host.com:2809/NameService </IfModule> <Location ProtectedCbroker> AuthType Basic AuthName myService require valid-user </Location> |