Topic Options
Rate This Topic
#54438 - 09/12/01 12:51 PM Problem writing notification API program with visual c++ 6
brawlinson Offline
journeyman

Registered: 06/12/01
Posts: 69

Hello there,

I'm trying to write a simple api program to use the notification system
however I am falling at the first hurdle.
I am linking to the nts.lib file however I get the following errors:

LINK : warning LNK4049: locally defined symbol "_malloc" imported
LINK : warning LNK4049: locally defined symbol "_free" imported
LINK : warning LNK4049: locally defined symbol "_sprintf" imported
LINK : warning LNK4049: locally defined symbol "_calloc" imported
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__strdup
nts.lib(error.obj) : error LNK2001: unresolved external symbol __imp__strdup
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atol
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__getenv
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__inet_ntoa@4
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__gethostname@8
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atoi
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__htons@4

nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_errlist
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_nerr
nts.lib(error.obj) : error LNK2001: unresolved external symbol __imp___errno
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp___strdup
Debug/NTLoggedIn.exe : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.

any help greatly appreciated.

thanks.
Barry Rawlinson
(+44) 207 863 5194



**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

_____________________________




Top
#54439 - 09/12/01 01:26 PM Re: Problem writing notification API program with visual c++ 6 [Re: tlingle]
brawlinson Offline
journeyman

Registered: 06/12/01
Posts: 69

Thanks Jeff, but I am linking to nts.lib (and I have the correct folder in
the tools/options/directories settings.

any other ideas?

-----Original Message-----
From: Jeff Lowe [mailto:jeffl@EXIGOSOLUTIONS.COM]
Sent: 12 September 2001 18:07
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Re: Problem writing notification API program with visual c++ 6


**

Hi,

Unresolved external symbols are normally caused by libraries that your
compiler cannot find
Make sure you have set any paths in the project options and any
"additional library paths" in the project settings under the link tab in
VC++. So, make sure the nts.lib file is referenced here. ie:
c:\extralibs\nts.lib

The linker ones are only warnings, so either ignore them (well, maybe
not) or turn down the warning level on the compiler. Your program will
likely run with those warnings there.


-----Original Message-----
From: Rawlinson, Barry [mailto:BRawlinson@COLT-TELECOM.COM]
Sent: Wednesday, September 12, 2001 12:52 PM
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Problem writing notification API program with visual c++ 6


**

Hello there,

I'm trying to write a simple api program to use the notification system
however I am falling at the first hurdle.
I am linking to the nts.lib file however I get the following errors:

LINK : warning LNK4049: locally defined symbol "_malloc" imported
LINK : warning LNK4049: locally defined symbol "_free" imported
LINK : warning LNK4049: locally defined symbol "_sprintf" imported
LINK : warning LNK4049: locally defined symbol "_calloc" imported
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp__strdup
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atol
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__getenv
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__inet_ntoa@4
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__gethostname@8
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atoi
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__htons@4

nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_errlist
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_nerr
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___errno
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp___strdup
Debug/NTLoggedIn.exe : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.

any help greatly appreciated.

thanks.
Barry Rawlinson
(+44) 207 863 5194



**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

____________
_________________


You may also control your subscription options, including UNSUBSCRIBE,
at www.ARSLIST.org

________________
_____________


You may also control your subscription options, including UNSUBSCRIBE, at
www.ARSLIST.org


**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

_____________________________




Top
#54440 - 09/12/01 01:07 PM Re: Problem writing notification API program with visual c++ 6 [Re: tlingle]
jeffl Offline
Stealth Member

Registered: 06/13/01
Posts: 45

Hi,

Unresolved external symbols are normally caused by libraries that your
compiler cannot find
Make sure you have set any paths in the project options and any
"additional library paths" in the project settings under the link tab in
VC++. So, make sure the nts.lib file is referenced here. ie:
c:\extralibs\nts.lib

The linker ones are only warnings, so either ignore them (well, maybe
not) or turn down the warning level on the compiler. Your program will
likely run with those warnings there.


-----Original Message-----
From: Rawlinson, Barry [mailto:BRawlinson@COLT-TELECOM.COM]
Sent: Wednesday, September 12, 2001 12:52 PM
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Problem writing notification API program with visual c++ 6


**

Hello there,

I'm trying to write a simple api program to use the notification system
however I am falling at the first hurdle.
I am linking to the nts.lib file however I get the following errors:

LINK : warning LNK4049: locally defined symbol "_malloc" imported
LINK : warning LNK4049: locally defined symbol "_free" imported
LINK : warning LNK4049: locally defined symbol "_sprintf" imported
LINK : warning LNK4049: locally defined symbol "_calloc" imported
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp__strdup
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atol
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__getenv
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__inet_ntoa@4
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__gethostname@8
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atoi
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__htons@4

nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_errlist
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_nerr
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___errno
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp___strdup
Debug/NTLoggedIn.exe : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.

any help greatly appreciated.

thanks.
Barry Rawlinson
(+44) 207 863 5194



**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

____________
_________________


You may also control your subscription options, including UNSUBSCRIBE,
at www.ARSLIST.org

_____________________________




Top
#54441 - 09/12/01 01:37 PM Re: Problem writing notification API program with visual c++ 6 [Re: tlingle]
brawlinson Offline
journeyman

Registered: 06/12/01
Posts: 69

Solved it was a case of me failing to rtfm.

Programmers guide 2-2 : Requires linking of wsock32.lib.

Incidentally, I only have this file because I have an installation of visual
studio, how would you acquire it otherwise?

cheers,
Barry.

-----Original Message-----
From: Rawlinson, Barry
Sent: 12 September 2001 18:26
To: 'Action Request System discussion list(ARSList)'
Subject: RE: Problem writing notification API program with visual c++ 6


Thanks Jeff, but I am linking to nts.lib (and I have the correct folder in
the tools/options/directories settings.

any other ideas?

-----Original Message-----
From: Jeff Lowe [mailto:jeffl@EXIGOSOLUTIONS.COM]
Sent: 12 September 2001 18:07
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Re: Problem writing notification API program with visual c++ 6


**

Hi,

Unresolved external symbols are normally caused by libraries that your
compiler cannot find
Make sure you have set any paths in the project options and any
"additional library paths" in the project settings under the link tab in
VC++. So, make sure the nts.lib file is referenced here. ie:
c:\extralibs\nts.lib

The linker ones are only warnings, so either ignore them (well, maybe
not) or turn down the warning level on the compiler. Your program will
likely run with those warnings there.


-----Original Message-----
From: Rawlinson, Barry [mailto:BRawlinson@COLT-TELECOM.COM]
Sent: Wednesday, September 12, 2001 12:52 PM
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Problem writing notification API program with visual c++ 6


**

Hello there,

I'm trying to write a simple api program to use the notification system
however I am falling at the first hurdle.
I am linking to the nts.lib file however I get the following errors:

LINK : warning LNK4049: locally defined symbol "_malloc" imported
LINK : warning LNK4049: locally defined symbol "_free" imported
LINK : warning LNK4049: locally defined symbol "_sprintf" imported
LINK : warning LNK4049: locally defined symbol "_calloc" imported
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp__strdup
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atol
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__getenv
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__inet_ntoa@4
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__gethostname@8
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atoi
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__htons@4

nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_errlist
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_nerr
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___errno
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp___strdup
Debug/NTLoggedIn.exe : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.

any help greatly appreciated.

thanks.
Barry Rawlinson
(+44) 207 863 5194



**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

____________
_________________


You may also control your subscription options, including UNSUBSCRIBE,
at www.ARSLIST.org

________________
_____________


You may also control your subscription options, including UNSUBSCRIBE, at
www.ARSLIST.org


**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

_____________________________




Top
#54442 - 09/12/01 01:41 PM Re: Problem writing notification API program with visual c++ 6 [Re: tlingle]
jeffl Offline
Stealth Member

Registered: 06/13/01
Posts: 45

Hi,

From Project/Settings

Select the project name (root of the tree) from the left hand side of
the dialog box
click on the link tab
select "general" from the category selection list
ensure that nts.lib is referenced in object/library modules text box

next....
select "input" from the category selection list
ensure that the "additional library path" is set to the location of the
nts.lib.


That should get you going.

-----Original Message-----
From: Rawlinson, Barry [mailto:BRawlinson@COLT-TELECOM.COM]
Sent: Wednesday, September 12, 2001 1:26 PM
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Re: Problem writing notification API program with visual c++ 6


**

Thanks Jeff, but I am linking to nts.lib (and I have the correct folder
in
the tools/options/directories settings.

any other ideas?

-----Original Message-----
From: Jeff Lowe [mailto:jeffl@EXIGOSOLUTIONS.COM]
Sent: 12 September 2001 18:07
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Re: Problem writing notification API program with visual c++ 6


**

Hi,

Unresolved external symbols are normally caused by libraries that your
compiler cannot find
Make sure you have set any paths in the project options and any
"additional library paths" in the project settings under the link tab in
VC++. So, make sure the nts.lib file is referenced here. ie:
c:\extralibs\nts.lib

The linker ones are only warnings, so either ignore them (well, maybe
not) or turn down the warning level on the compiler. Your program will
likely run with those warnings there.


-----Original Message-----
From: Rawlinson, Barry [mailto:BRawlinson@COLT-TELECOM.COM]
Sent: Wednesday, September 12, 2001 12:52 PM
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Problem writing notification API program with visual c++ 6


**

Hello there,

I'm trying to write a simple api program to use the notification system
however I am falling at the first hurdle.
I am linking to the nts.lib file however I get the following errors:

LINK : warning LNK4049: locally defined symbol "_malloc" imported
LINK : warning LNK4049: locally defined symbol "_free" imported
LINK : warning LNK4049: locally defined symbol "_sprintf" imported
LINK : warning LNK4049: locally defined symbol "_calloc" imported
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp__strdup
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atol
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__getenv
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__inet_ntoa@4
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__gethostname@8
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atoi
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__htons@4

nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_errlist
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_nerr
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___errno
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp___strdup
Debug/NTLoggedIn.exe : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.

any help greatly appreciated.

thanks.
Barry Rawlinson
(+44) 207 863 5194



**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

____________
_________________


You may also control your subscription options, including UNSUBSCRIBE,
at www.ARSLIST.org

____________
____
_____________


You may also control your subscription options, including UNSUBSCRIBE,
at
www.ARSLIST.org


**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

____________
_________________


You may also control your subscription options, including UNSUBSCRIBE,
at www.ARSLIST.org

_____________________________




Top
#54443 - 09/12/01 01:43 PM Re: Problem writing notification API program with visual c++ 6 [Re: tlingle]
jeffl Offline
Stealth Member

Registered: 06/13/01
Posts: 45

Here is one source for you:

http://www.sockets.com/a_d.htm#WhereToGetThem

-----Original Message-----
From: Rawlinson, Barry [mailto:BRawlinson@COLT-TELECOM.COM]
Sent: Wednesday, September 12, 2001 1:37 PM
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Re: Problem writing notification API program with visual c++ 6


**

Solved it was a case of me failing to rtfm.

Programmers guide 2-2 : Requires linking of wsock32.lib.

Incidentally, I only have this file because I have an installation of
visual
studio, how would you acquire it otherwise?

cheers,
Barry.

-----Original Message-----
From: Rawlinson, Barry
Sent: 12 September 2001 18:26
To: 'Action Request System discussion list(ARSList)'
Subject: RE: Problem writing notification API program with visual c++ 6


Thanks Jeff, but I am linking to nts.lib (and I have the correct folder
in
the tools/options/directories settings.

any other ideas?

-----Original Message-----
From: Jeff Lowe [mailto:jeffl@EXIGOSOLUTIONS.COM]
Sent: 12 September 2001 18:07
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Re: Problem writing notification API program with visual c++ 6


**

Hi,

Unresolved external symbols are normally caused by libraries that your
compiler cannot find
Make sure you have set any paths in the project options and any
"additional library paths" in the project settings under the link tab in
VC++. So, make sure the nts.lib file is referenced here. ie:
c:\extralibs\nts.lib

The linker ones are only warnings, so either ignore them (well, maybe
not) or turn down the warning level on the compiler. Your program will
likely run with those warnings there.


-----Original Message-----
From: Rawlinson, Barry [mailto:BRawlinson@COLT-TELECOM.COM]
Sent: Wednesday, September 12, 2001 12:52 PM
To: ARSLIST@LISTSERV.VISTAIT.COM
Subject: Problem writing notification API program with visual c++ 6


**

Hello there,

I'm trying to write a simple api program to use the notification system
however I am falling at the first hurdle.
I am linking to the nts.lib file however I get the following errors:

LINK : warning LNK4049: locally defined symbol "_malloc" imported
LINK : warning LNK4049: locally defined symbol "_free" imported
LINK : warning LNK4049: locally defined symbol "_sprintf" imported
LINK : warning LNK4049: locally defined symbol "_calloc" imported
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp__strdup
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp__strdup
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atol
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__getenv
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__inet_ntoa@4
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__gethostname@8
nts.lib(nts.obj) : error LNK2001: unresolved external symbol __imp__atoi
nts.lib(nts.obj) : error LNK2001: unresolved external symbol
__imp__htons@4

nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_errlist
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___sys_nerr
nts.lib(error.obj) : error LNK2001: unresolved external symbol
__imp___errno
OLDNAMES.lib(strdup.obi) : error LNK2001: unresolved external symbol
__imp___strdup
Debug/NTLoggedIn.exe : fatal error LNK1120: 11 unresolved externals
Error executing link.exe.

any help greatly appreciated.

thanks.
Barry Rawlinson
(+44) 207 863 5194



**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

____________
_________________


You may also control your subscription options, including UNSUBSCRIBE,
at www.ARSLIST.org

____________
____
_____________


You may also control your subscription options, including UNSUBSCRIBE,
at
www.ARSLIST.org


**********************************************************************
COLT Telecommunications
Registered in England No. 2452736
Registered Office: Bishopsgate Court, 4 Norton Folgate, London E1 6DQ
Tel. 020 7390 3900

This message is subject to and does not create or vary any contractual
relationship between COLT Telecommunications, its subsidiaries or
affiliates ("COLT") and you. Internet communications are not secure
and therefore COLT does not accept legal responsibility for the
contents of this message. Any view or opinions expressed are those of
the author. The message is intended for the addressee only and its
contents and any attached files are strictly confidential. If you have
received it in error, please telephone the number above. Thank you.


**********************************************************************

____________
_________________


You may also control your subscription options, including UNSUBSCRIBE,
at www.ARSLIST.org

_____________________________




Top


Moderator:  Matt Reinfeldt