Bonjour,
J'aimerais apprendre à gérer des ENDPOINT en sql server 2k5 mais je bute au B.A.-BA.
Voici mon code :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
DROP ENDPOINT sql_endpointtest
GO
CREATE ENDPOINT sql_endpointtest
STATE = STARTED
AS HTTP(
PATH = '/sql',
AUTHENTICATION = (INTEGRATED),
PORTS = (CLEAR),
SITE = '*' , CLEAR_PORT = 20000
)
FOR SOAP (
WEBMETHOD 'http://tempUri.org/'.'GetSqlInfo'
(name='master.dbo.xp_msver',
SCHEMA=STANDARD),
WSDL = DEFAULT,
SCHEMA = STANDARD ,
DATABASE = 'master'
);
GO |
Mais quand j'essaie de me connecter à http://localhost:2000/sql?WSDL, ça ne donne rien du tout 
J'ai essayé ceci (je suis admin de ma machine
)
grant connect on endpoint::sql_endpointtest to [MCH\Serge04]
Et ça n'a pas aidé.
Qu'est-ce que je fais de travers ?
Merci.
Partager