[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.sqlserver.programming

How to test connect after created endpoint on sql server 2005?

yy

3/15/2007 7:14:00 AM

How to test connect after created endpoint on sql server 2005?



I created the endpint as:

CREATE ENDPOINT [RecordEP]

AUTHORIZATION [sa]

STATE=STARTED

AS HTTP (PATH=N'/RecordEP', PORTS = (CLEAR), AUTHENTICATION = (NTLM,
KERBEROS, INTEGRATED), CLEAR_PORT = 80, COMPRESSION=DISABLED)

FOR SOAP (

WEBMETHOD 'GetRecord'( NAME=N'[MySystem].[dbo].[sp_GetRecord]'

, SCHEMA=STANDARD

, FORMAT=ALL_RESULTS), BATCHES=DISABLED,
WSDL=N'[master].[sys].[sp_http_generate_wsdl_defaultcomplexorsimple]',
SESSIONS=DISABLED, SESSION_TIMEOUT=60, DATABASE=N'MySystem',
NAMESPACE=N'http://tempur..., SCHEMA=STANDARD, CHARACTER_SET=XML)



But I use IE browser, type http://server/RecordEP on address bar, it shows
cannot to connect it. How should I do?