View Single Post
Old 12-27-2004, 08:26 AM   #2 (permalink)
bendsley
Professional Loafer
 
bendsley's Avatar
 
Location: texas
A definition of RPC for people wondering:

A remote procedure call (RPC) is a protocol that allows a computer program running on one host to cause code to be executed on another host without the programmer needing to explicitly code for this. When the code in question is written using object-oriented principles, RPC is sometimes referred to as remote invocation or remote method invocation.

RPC is an easy and popular paradigm for implementing the client-server model of distributed computing. An RPC is initiated by the caller (client) sending a request message to a remote system (the server) to execute a certain procedure using arguments supplied. A result message is returned to the caller. There are many variations and subtleties in various implementations, resulting in a variety of different (incompatible) RPC protocols.

In order to allow servers to be accessed by differing clients, a number of standardized RPC systems have been created. Most of these use an interface description language (IDL) to allow various platforms to call the RPC. Examples of such systems include Sun RPC (sometimes called ONC RPC), the Distributed Computing Environment (DCE), Microsoft's DCOM (and ActiveX), which is based in part on DCE, and CORBA.

Recently a number of vendors have started using XML as the IDL, and HTTP as the network protocol. The advantage of this system, known as web services, is simplicity and standardization, the IDL is a text file that is widely understood, and HTTP is built into almost all modern operating systems. An example of such an RPC system is SOAP, developed in turn from XML-RPC.
===================================================================

1. Highly recommend you use ISA to front end it. As I mentioned in previous posts I used ISA's reverse proxy function to terminate a secure SSL channel at the ISA Server and then recreate another one separately to Exchange...why? primary reason is security. Secondary reason is that you can use OWA forms based logon with SSL and use the great compression functions that it now has.

2. You need Windows Server 2003 DCs and GCs in order for it to work. Also Exchange 2003 must be running on Windows Server 2003. Patch both the Windows Server install and get Exchange 2003 SP1 on aswell.

3. Install the RPC over HTTP service on the Exchange Server from Add/Remove programs.

4. Follow Q article 833401. If you have deployed Exchange 2003 SP1 it makes it a lot easier and you wont need to type as much in in terms of the registry settings that are required. You will need to add a registry setting to each GC though that Exchange will be accessing.

Test it by going to the https://mail.servername.com/rpc and authenticating. If it comes back and says "HTTP Error 403.2 - Forbidden: Read access is denied" then youve done everything right!

5. You need to configure your Outlook clients to use it as an option. You configure it in your email settings/Exchange Server settings, then the Connections tab and finally Exchange Proxy settings. You can just fill in the FQDN of your mail server thats being reverse proxied and if you want the next level of security to mutually authenticate then you need to put that in aswell. Tick the "On Slow networks connect using HTTP first then TCP/IP" and choose basic text authentication. Obviously, because you're using SSL to encrypt the channel your basic text credentials wont be compromised.

The client computer must be running Microsoft Windows XP Professional Service Pack 1 (SP1), and the update package that is described in the following Microsoft Knowledge Base article must be installed:

331320 Outlook 2003 performs slowly or stops responding when connected to Exchange Server 2003 through HTTP.
Note: The update package that is described in article 331320 is included in Microsoft Windows XP Professional Service Pack 2 (SP2). If you have installed Windows XP SP2, you do not have to install the update package that is described in article 331320.


-------------------------------------------------------------------
I implemented VPN where I work and it's fully what I suggest. This might be able to help you in getting started though.
__________________
"You hear the one about the fella who died, went to the pearly gates? St. Peter let him in. Sees a guy in a suit making a closing argument. Says, "Who's that?" St. Peter says, "Oh, that's God. Thinks he's Denny Crane."

Last edited by bendsley; 12-27-2004 at 08:33 AM..
bendsley is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360