Menu

[r649]: / trunk / php-java-bridge / server / META-INF / java / Protocol.inc  Maximize  Restore  History

Download this file

648 lines (601 with data), 20.5 kB

  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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
<?php /*-*- mode: php; tab-width:4 -*-*/
/* java_Protocol.php -- PHP/Java Bridge protocol implementation
Copyright (C) 2003-2007 Jost Boekemeier
This file is part of the PHP/Java Bridge.
The PHP/Java Bridge ("the library") is free software; you can
redistribute it and/or modify it under the terms of the GNU General
Public License as published by the Free Software Foundation; either
version 2, or (at your option) any later version.
The library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with the PHP/Java Bridge; see the file COPYING. If not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA.
Linking this file statically or dynamically with other modules is
making a combined work based on this library. Thus, the terms and
conditions of the GNU General Public License cover the whole
combination.
As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent
modules, and to copy and distribute the resulting executable under
terms of your choice, provided that you also meet, for each linked
independent module, the terms and conditions of the license of that
module. An independent module is a module which is not derived from
or based on this library. If you modify this library, you may extend
this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
require_once ("${JAVA_BASE}/Options.inc");
require_once ("${JAVA_BASE}/Client.inc");
/**
* @access private
*/
class java_SocketChannel {
public $peer, $protocol;
private $channelName, $host;
function java_SocketChannel($peer, $protocol, $host, $channelName) {
$this->peer = $peer;
$this->protocol = $protocol;
$this->host = $host;
$this->channelName = $channelName;
}
function fwrite($data) {
return fwrite($this->peer, $data);
}
function fread($size) {
return fread($this->peer, $size);
}
function keepAlive() {
// keep alive, required by protocol
$this->fwrite("<F p=\"A\" />");
$this->fread(10); // <F p="A"/>
}
}
/**
* @access private
*/
class java_EmptyPipeChannel {
function open($handler) {
if (false) $handler = $handler;
throw new java_RuntimeException("protocol error: socket channel names must not start with a slash");
}
function getName() {
return null;
}
function keepAlive() {}
}
/**
* @access private
*/
class java_PipeChannel extends java_EmptyPipeChannel {
public $peer, $peerr, $peerr_desc, $name;
public $fifo, $fifor;
public $iname, $oname;
function java_PipeChannel($name) {
$this->name = $name;
$this->iname = $this->name . ".i";
$mask = umask(0);
$this->fifor = posix_mkfifo($this->iname, 0666);
$this->oname = $this->name . ".o";
$this->fifo = posix_mkfifo($this->oname, 0666);
umask($mask);
}
function open($handler) {
if (false) $handler = $handler;
$this->peerr = fopen($this->iname, "r");
$this->peerr_desc = array($this->peerr);
stream_set_blocking($this->peerr, false);
stream_set_timeout($this->peerr, -1);
$this->peer = fopen($this->oname, "w");
unlink($this->iname);
unlink($this->oname);
unlink($this->name);
stream_set_timeout($this->peer, -1);
return $this;
}
function fwrite($data) {
return fwrite($this->peer, $data);
}
function fread($size) {
static $empty = NULL;
stream_select($this->peerr_desc, $empty, $empty, 1677216);
return fread($this->peerr, $size);
}
function getName() {
return $this->name;
}
}
/**
* @access private
*/
class java_SocketHandler {
public $protocol, $channel;
function java_SocketHandler($protocol, $channel) {
$this->protocol = $protocol;
$this->channel = $channel;
}
function write($data) {
return $this->channel->fwrite($data);
}
function read($size) {
return $this->channel->fread($size);
}
function redirect() {}
function keepAlive() {
$this->channel->keepAlive();
}
}
/**
* @access private
*/
class java_HttpHandler extends java_SocketHandler {
public $headers;
public $redirect;
public $context, $ssl, $port; // used by reopen
public $host; // used when creating a socket channel lazily. the port# is passed via X_JAVABRIDGE_CHANNEL
public $socket; // we write to the socket directly and keep the pipe channel for later use
function createPipeChannel($host, $pipe_dir) {
if(!is_null($pipe_dir) && ($host == "127.0.0.1" || (substr($host,0,9) == "localhost")))
return new java_PipeChannel(tempnam($pipe_dir, ".php_java_bridge"));
return new java_EmptyPipeChannel();
}
function close() {
fclose($this->socket);
}
function open() {
$errno = null; $errstr = null;
/* Do not pfsockopen here, the J2EE server may not be able to handle
hundreds of persistent connections to the servlet very well */
$socket = fsockopen("{$this->ssl}{$this->host}", $this->port, $errno, $errstr, 30);
if (!$socket) throw new java_RuntimeException("Could not connect to the J2EE server {$this->ssl}{$this->host}:{$this->port}. Please start it, for example with the command: \"java -jar JavaBridge.jar SERVLET:8080 3 JavaBridge.log\" or, if the back end has been compiled to native code, with \"modules/java SERVLET:8080 3 JavaBridge.log\". Error message: $errstr ($errno)\n");
stream_set_timeout($socket, -1);
return $socket;
}
function java_HttpHandler($protocol, $ssl, $host, $port) {
$this->protocol = $protocol;
$this->ssl = $ssl;
$this->host = $host;
$this->port = $port;
$this->channel = $this->createPipeChannel($host, $protocol->client->RUNTIME['PIPE_DIR']);
$this->socket = $this->open();
}
function getCookies() {
$str="";
$first=true;
foreach($_COOKIE as $k => $v) {
$str .= ($first ? "Cookie: $k=$v":"; $k=$v");
$first=false;
}
if(!$first) $str .= "\r\n";
return $str;
}
function getContextFromCgiEnvironment() {
$ctx = array_key_exists('X_JAVABRIDGE_CONTEXT', $_SERVER)
?$_SERVER['X_JAVABRIDGE_CONTEXT']
:null;
return $ctx;
}
function getChannelName() {
$name = $this->channel->getName();
return !is_null($name) ? sprintf("X_JAVABRIDGE_CHANNEL: %s\r\n", $name) : null;
}
function getContext() {
$ctx = $this->getContextFromCgiEnvironment();
$context = "";
if($ctx) {
$context = sprintf("X_JAVABRIDGE_CONTEXT: %s\r\n", $ctx);
}
return $context;
}
function getWebAppInternal() {
// from createHttpHandler
$context = $this->protocol->webContext;
if(isset($context)) return $context;
/* Coerce a http://xyz.com/kontext/foo.php request to the back
end: http://xyz.com:{java_hosts[0]}/kontext/foo.php. For
example if we receive a request:
http://localhost/sessionSharing.php and java.servlet is On and
java.hosts is "127.0.0.1:8080" the code would connect to the
back end:
http://127.0.0.1:8080/sessionSharing.phpjavabridge. This
creates a cookie with PATH value "/". If java_servlet is User
the request http://localhost/myContext/sessionSharing.php the
code would connect to
http://127.0.0.1/myContext/sessionSharing.phpjavabridge and a
cookie with a PATH value "/myContext" would be created.
*/
return (JAVA_SERVLET == "User" &&
array_key_exists('PHP_SELF', $_SERVER) &&
array_key_exists('HTTP_HOST', $_SERVER))
? $_SERVER['PHP_SELF']."javabridge"
: null;
}
function getWebApp() {
$context = $this->getWebAppInternal();
if(is_null($context)) $context = JAVA_SERVLET;
if(is_null($context) || $context[0]!="/")
$context = "/JavaBridge/JavaBridge.phpjavabridge";
return $context;
}
function write($data) {
$compatibility = $this->protocol->client->RUNTIME["PARSER"]=="NATIVE"
? chr(0103-JAVA_PREFER_VALUES)
: chr(0100+JAVA_PREFER_VALUES);
if(is_int(JAVA_LOG_LEVEL)) {
$compatibility |= 128 | (7 & JAVA_LOG_LEVEL)<<2;
}
$this->headers = null;
$socket = $this->socket;
$len = 2 + strlen($data);
$webapp = $this->getWebApp();
$cookies = $this->getCookies();
$channel = $this->getChannelName();
$context = $this->getContext();
$redirect = $this->redirect;
$res = "PUT ";
$res .= $webapp;
$res .= " HTTP/1.0\r\n";
$res .= "Host: localhost\r\n";
$res .= "Content-Length: "; $res .= $len; $res .= "\r\n";
$res .= $context;
$res .= $cookies;
$res .= $redirect;
if(!is_null($channel)) $res .= $channel;
$res .= "\r\n";
$res .= "\177";
$res .= $compatibility;
$res .= $data;
$count = fwrite($socket, $res); fflush($socket);
return $count;
}
function doSetCookie($key, $val, $path) {
$path=trim($path);
$webapp = $this->getWebAppInternal(); if(!$webapp) $path="/";
setcookie($key, $val, 0, $path);
}
function parseHeaders() {
$this->headers = array();
while (($str = trim(fgets($this->socket, JAVA_RECV_SIZE)))) {
if($str[0]=='X') {
if(!strncasecmp("X_JAVABRIDGE_REDIRECT", $str, 21)) {
$this->headers["redirect"]=trim(substr($str, 22));
} else if(!strncasecmp("X_JAVABRIDGE_CONTEXT", $str, 20)) {
$this->headers["context"]=trim(substr($str, 21));
}
} else if($str[0]=='S') { // Set-Cookie:
if(!strncasecmp("SET-COOKIE", $str, 10)) {
$str=substr($str, 12);
$ar = explode(";", $str);
$cookie = explode("=",$ar[0]);
$path = "";
if(isset($ar[1])) $p=explode("=", $ar[1]);
if(isset($p)) $path=$p[1];
$this->doSetCookie($cookie[0], $cookie[1], $path);
}
} else if($str[0]=='C') { // Content-Length
if(!strncasecmp("CONTENT-LENGTH", $str, 14)) {
$this->headers["content_length"]=trim(substr($str, 15));
}
}
}
}
function read($size) {
if (false) $size = $size;
if(is_null($this->headers)) $this->parseHeaders();
$data = fread($this->socket, $this->headers['content_length']);
return $data;
}
function getChannel($channelName) {
$errstr = null; $errno = null;
if($channelName[0]=='/') return $this->channel->open($this);
$peer = pfsockopen($this->host, $channelName, $errno, $errstr, 30);
if (!$peer) throw new java_RuntimeException("Could not connect to the context server {$this->host}:{$channelName}. Error message: $errstr ($errno)\n");
stream_set_timeout($peer, -1);
return new java_SocketChannel($peer, $this->protocol, $this->host, $channelName);
}
function redirect() {
if(!isset($this->headers["redirect"])) { // no redirect received: must continue to send PUT requests
throw new java_RuntimeException("no Pipe- or SocketContextServer available.");
}
if(!isset($this->protocol->socketHandler)) {
$hostVec = java_Protocol::getHost();
$this->host = $hostVec[0];
$channelName = $this->headers["redirect"];
$context = $this->headers["context"];
$len = strlen($context);
$len0 = chr(0xFF);
$len1 = chr($len&0xFF); $len>>=8;
$len2 = chr($len&0xFF);
$this->protocol->socketHandler=new java_SocketHandler($this->protocol, $this->getChannel($channelName));
$this->protocol->write("\177${len0}${len1}${len2}${context}");
$this->context = sprintf("X_JAVABRIDGE_CONTEXT: %s\r\n", $context);
}
$this->close();
$this->protocol->handler = $this->protocol->socketHandler;
}
}
/**
* @access private
*/
class java_Protocol {
public $client;
public $webContext;
public $serverName;
function getOverrideHosts() {
if(array_key_exists('X_JAVABRIDGE_OVERRIDE_HOSTS', $_ENV)) {
$override = $_ENV['X_JAVABRIDGE_OVERRIDE_HOSTS'];
if(!is_null($override) && $override!='/') return $override;
}
// fcgi: override for redirect
return
array_key_exists('X_JAVABRIDGE_OVERRIDE_HOSTS_REDIRECT', $_SERVER)
?$_SERVER['X_JAVABRIDGE_OVERRIDE_HOSTS_REDIRECT']
:null;
}
static function getHost() {
static $host;
if(!isset($host)) {
$hosts = explode(";", JAVA_HOSTS);
$host = explode(":", $hosts[0]); // TODO: check host list
}
return $host;
}
function createHttpHandler() {
$hostVec = java_Protocol::getHost();
$host = $hostVec[0];
$port = $hostVec[1];
$overrideHosts = $this->getOverrideHosts();
$ssl = "";
if($overrideHosts) {
// handle "s:127.0.0.1:8080//JavaBridge/test.phpjavabridge"
// or "s:127.0.0.1:8080"
// or "/"
// or ""
$s=$overrideHosts;
if((strlen($s)>2) && ($s[1]==':')) {
if($s[0]=='s')
$ssl="ssl://";
$s = substr($s, 2);
}
$webCtx = strpos($s, "//");
if($webCtx)
$host = substr($s, 0, $webCtx);
else
$host = $s;
$idx = strpos($host, ':');
if($idx) {
if($webCtx)
$port = substr($host, $idx+1, $webCtx);
else
$port = substr($host, $idx+1);
$host = substr($host, 0, $idx);
} else {
$port = "8080";
}
if($webCtx) $webCtx = substr($s, $webCtx+1);
$this->webContext = $webCtx;
}
$this->serverName = "$host:$port";
return new java_HttpHandler($this, $ssl, $host, $port);
}
/**
* connect to a local channel (no servlet engine or app server)
*/
function createSimpleHandler($channelName) {
if(!is_string($channelName)) {
$errno = null; $errstr = null;
$peer = pfsockopen($host="127.0.0.1", $channelName, $errno, $errstr, 30);
} else {
$type = $channelName[0];
if($type=='@' || $type=='/') { // unix domain socket
if($type=='@') $channelName[0]="\0"; // abstract name space
$peer = pfsockopen($host="unix://${channelName}", null, $errno, $errstr, 30);
$channelName = null;
}
else { // tcp socket
list($host, $channelName) = explode(":", $channelName);
$peer = pfsockopen($host, $channelName, $errno, $errstr, 30);
}
}
if (!$peer) throw new java_RuntimeException("Could not connect to the context server $channelName. Error message: $errstr ($errno)\n");
stream_set_timeout($peer, -1);
$handler = new java_SocketHandler($this, new java_SocketChannel($peer, $this, $host, $channelName));
$compatibility = $this->client->RUNTIME["PARSER"]=="NATIVE"
? chr(0103-JAVA_PREFER_VALUES)
: chr(0100+JAVA_PREFER_VALUES);
if(is_int(JAVA_LOG_LEVEL)) {
$compatibility |= 128 | (7 & JAVA_LOG_LEVEL)<<2;
}
$this->write("\177$compatibility");
$this->serverName = "127.0.0.1:$channelName";
return $handler;
}
function createHandler() {
if(!array_key_exists('X_JAVABRIDGE_OVERRIDE_HOSTS_REDIRECT', $_SERVER)
&& function_exists("java_get_default_channel") &&
($defaultChannel=java_get_default_channel())) {
// if bind.c has started a local back end from Apache/IIS
return $this->createSimpleHandler($defaultChannel);
} else {
return $this->createHttpHandler();
}
}
function java_Protocol ($client) {
$this->client = $client;
$this->handler = $this->createHandler();
}
function redirect() {
$this->handler->redirect();
}
function read($size) {
return $this->handler->read($size);
}
function sendData() {
$this->handler->write($this->client->sendBuffer);
$this->client->sendBuffer=null;
}
function flush() {
if(JAVA_DEBUG) {
echo "sending::: "; echo $this->client->sendBuffer; echo "\n";
}
$this->sendData();
}
function keepAlive() {
$this->handler->keepAlive();
}
function handle() {
$this->client->handleRequests();
}
function write($data) {
$this->client->sendBuffer.=$data;
}
function finish() {
$this->flush();
$this->handle();
$this->redirect();
}
function referenceBegin($name) {
$this->client->sendBuffer.=$this->client->preparedToSendBuffer;
if(JAVA_DEBUG) {
echo "flushed preparedToSendBuffer: ".$this->client->preparedToSendBuffer."\n";
}
$this->client->preparedToSendBuffer=null;
$signature=sprintf("<H p=\"1\" v=\"%s\">", $name);
$this->write($signature);
$signature[6]="2";
$this->client->currentArgumentsFormat = $signature;
}
function referenceEnd() {
$this->client->currentArgumentsFormat.=$format="</H>";
$this->write($format);
$this->finish();
$this->client->currentCacheKey=null;
}
function createObjectBegin($name) {
$this->client->sendBuffer.=$this->client->preparedToSendBuffer;
if(JAVA_DEBUG) {
echo "flushed preparedToSendBuffer: ".$this->client->preparedToSendBuffer."\n";
}
$this->client->preparedToSendBuffer=null;
$signature=sprintf("<K p=\"1\" v=\"%s\">", $name);
$this->write($signature);
$signature[6]="2";
$this->client->currentArgumentsFormat = $signature;
}
function createObjectEnd() {
$this->client->currentArgumentsFormat.=$format="</K>";
$this->write($format);
$this->finish();
$this->client->currentCacheKey=null;
}
function propertyAccessBegin($object, $method) {
$this->client->sendBuffer.=$this->client->preparedToSendBuffer;
if(JAVA_DEBUG) {
echo "flushed preparedToSendBuffer: ".$this->client->preparedToSendBuffer."\n";
}
$this->client->preparedToSendBuffer=null;
$this->write(sprintf("<G p=\"1\" v=\"%x\" m=\"%s\">", $object, $method));
$this->client->currentArgumentsFormat="<G p=\"2\" v=\"%x\" m=\"${method}\">";
}
function propertyAccessEnd() {
$this->client->currentArgumentsFormat.=$format="</G>";
$this->write($format);
$this->finish();
$this->client->currentCacheKey=null;
}
function invokeBegin($object, $method) {
$this->client->sendBuffer.=$this->client->preparedToSendBuffer;
if(JAVA_DEBUG) {
echo "flushed preparedToSendBuffer: ".$this->client->preparedToSendBuffer."\n";
}
$this->client->preparedToSendBuffer=null;
$this->write(sprintf("<Y p=\"1\" v=\"%x\" m=\"%s\">", $object, $method));
$this->client->currentArgumentsFormat="<Y p=\"2\" v=\"%x\" m=\"${method}\">";
}
function invokeEnd() {
$this->client->currentArgumentsFormat.=$format="</Y>";
$this->write($format);
$this->finish();
$this->client->currentCacheKey=null;
}
function resultBegin() {
$this->client->sendBuffer.=$this->client->preparedToSendBuffer;
if(JAVA_DEBUG) {
echo "flushed preparedToSendBuffer: ".$this->client->preparedToSendBuffer."\n";
}
$this->client->preparedToSendBuffer=null;
$this->write("<R>");
}
function resultEnd() {
$this->client->currentCacheKey=null;
$this->write("</R>");
$this->flush();
}
function writeString($name) {
$this->client->currentArgumentsFormat.=$format="<S v=\"%s\"/>";
$this->write(sprintf($format, htmlspecialchars($name, ENT_COMPAT)));
}
function writeBoolean($boolean) {
$this->client->currentArgumentsFormat.=$format="<T v=\"%s\"/>";
$this->write(sprintf($format, $boolean));
}
function writeLong($l) {
$this->client->currentArgumentsFormat.="<J v=\"%d\"/>";
if($l<0) {
$this->write(sprintf("<L v=\"%x\" p=\"A\"/>",-$l));
} else {
$this->write(sprintf("<L v=\"%x\" p=\"O\"/>",$l));
}
}
function writeULong($l) {
$this->client->currentArgumentsFormat.=$format="<L v=\"%x\" p=\"O\"/>";
$this->write(sprintf($format,$l));
}
function writeDouble($d) {
$this->client->currentArgumentsFormat.=$format="<D v=\"%.14e\"/>";
$this->write(sprintf($format, $d));
}
function writeObject($object) {
$this->client->currentArgumentsFormat.=$format="<O v=\"%x\"/>";
$this->write(sprintf($format, $object));
}
/* the following routines are not cached */
function writeException($object, $str) {
$this->write(sprintf("<E v=\"%x\" m=\"%s\"/>",$object, htmlspecialchars($str, ENT_COMPAT)));
}
function writeCompositeBegin_a() {
$this->write("<X t=\"A\">");
}
function writeCompositeBegin_h() {
$this->write("<X t=\"H\">");
}
function writeCompositeEnd() {
$this->write("</X>");
}
function writePairBegin_s($key) {
$this->write(sprintf("<P t=\"S\" v=\"%s\">", htmlspecialchars($key, ENT_COMPAT)));
}
function writePairBegin_n($key) {
$this->write(sprintf("<P t=\"N\" v=\"%x\">",$key));
}
function writePairBegin() {
$this->write("<P>");
}
function writePairEnd() {
$this->write("</P>");
}
function writeUnref($object) {
$this->client->sendBuffer.=$this->client->preparedToSendBuffer;
//echo "clear prepared to send buffer\n";
$this->client->preparedToSendBuffer=null;
$this->write(sprintf("<U v=\"%x\"/>", $object));
}
function getServerName() {
return $this->serverName;
}
}
?>