Hi all,
I've an EndPoint that works fine in a server with a default instance.
The problem appear when I put to work the same EndPoint in a server with a
named instance. The definition code of my EndPoint is that:
CREATE ENDPOINT sqlendpoint
STATE = STARTED
AS HTTP (
PATH = '/sql',
AUTHENTICATION = (INTEGRATED),
PORTS = (CLEAR),
SITE = 'SERVER$SQL2005')
FOR SOAP (
WEBMETHOD 'Get1' (Name='dbo.GetOne'),
BATCHES = DISABLED,
WSDL = DEFAULT,
DATABASE = 'AdventureWorks',
NAMESPACE = 'http://Adventure-Works/')
Knows anybody what's the problem.
Thanks in advance ;)
|