dbTalk Databases Forums  

Any limitations on EndPoint Creation par instance

comp.databases.ms-sqlserver comp.databases.ms-sqlserver


Discuss Any limitations on EndPoint Creation par instance in the comp.databases.ms-sqlserver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
SQLMan_25
 
Posts: n/a

Default Any limitations on EndPoint Creation par instance - 08-30-2007 , 02:26 PM






Hi All,
I am trying to create multiple endpoints for mutiple database that has
service broker enabled. It allows me to create only one endpoint for
service broker then i get the following error:

Msg 7862, Level 16, State 1, Line 1
An endpoint of the requested type already exists. Only one endpoint
of this type is supported. Use ALTER ENDPOINT or DROP the existing
endpoint and execute the CREATE ENDPOINT statement.
Msg 7807, Level 16, State 1, Line 1
An error ('0x800700b7') occurred while attempting to register the
endpoint 'ServiceEndpoint'.

code that is failing:

CREATE ENDPOINT ServiceEndpoint
STATE = STARTED
AS TCP
(
LISTENER_PORT = 4742
)
FOR SERVICE_BROKER
(
AUTHENTICATION = WINDOWS
)
GO

Here is code that created first endpoint successfully:

CREATE ENDPOINT OrderEndpoint
STATE = STARTED
AS TCP
(
LISTENER_PORT = 4740
)
FOR SERVICE_BROKER
(
AUTHENTICATION = WINDOWS
)
GO

I am using SQL Server 2005 dev edition SP2 on XP professional.

Thanks in advance for your help.

-Najm


Reply With Quote
  #2  
Old   
Najm
 
Posts: n/a

Default Re: Any limitations on EndPoint Creation par instance - 08-30-2007 , 03:24 PM






On Aug 30, 3:26 pm, SQLMan_25 <naj... (AT) gmail (DOT) com> wrote:
Quote:
Hi All,
I am trying to create multiple endpoints for mutiple database that has
service broker enabled. It allows me to create only one endpoint for
service broker then i get the following error:

Msg 7862, Level 16, State 1, Line 1
An endpoint of the requested type already exists. Only one endpoint
of this type is supported. Use ALTER ENDPOINT or DROP the existing
endpoint and execute the CREATE ENDPOINT statement.
Msg 7807, Level 16, State 1, Line 1
An error ('0x800700b7') occurred while attempting to register the
endpoint 'ServiceEndpoint'.

code that is failing:

CREATE ENDPOINT ServiceEndpoint
STATE = STARTED
AS TCP
(
LISTENER_PORT = 4742
)
FOR SERVICE_BROKER
(
AUTHENTICATION = WINDOWS
)
GO

Here is code that created first endpoint successfully:

CREATE ENDPOINT OrderEndpoint
STATE = STARTED
AS TCP
(
LISTENER_PORT = 4740
)
FOR SERVICE_BROKER
(
AUTHENTICATION = WINDOWS
)
GO

I am using SQL Server 2005 dev edition SP2 on XP professional.

Thanks in advance for your help.

-Najm
I figured out there could be only one endpoint...



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.