all groups > sql server programming > july 2007 >
You're in the

sql server programming

group:

SQL Server 2005 Endpoint


Re: SQL Server 2005 Endpoint Roman Rehak
7/31/2007 8:36:02 PM
sql server programming:

Use http://servername/sql?wsdl

Roman

--
Roman Rehak
http://sqlblog.com/blogs/roman_rehak


[quoted text, click to view]

SQL Server 2005 Endpoint chfran
7/31/2007 9:24:38 PM
Here is my endpoint script.

CREATE ENDPOINT XMLImport
STATE = STARTED
AS HTTP (
path='/sql',
AUTHENTICATION=(INTEGRATED),
PORTS = (CLEAR)
)
FOR SOAP(
WEBMETHOD 'XMLTEST' (NAME = 'db_chad.dbo.XMLTEST' ),
WSDL = default,
BATCHES=DISABLED,
database='db_chad'
)
GO

For some reason I cannot get IE or Firefox to see this service. I get
'page not available' when I put http://<Server>/sql or http://<server>/sql$wsdl
Any thoughts?

What does the authorization part do?

Thanks,
AddThis Social Bookmark Button