Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

trying to deploy sproc as web service. Posted on: 03/06/2006 02:52:27

 

 

 

 

i have written a simple sproc and i want to expose it as a web service. heres the code i thought should do so:

 

Create ENDPOINT TestWebService5

STATE = STARTED

AS HTTP

(

PATH = '/TestWebService5',

AUTHENTICATION = (integrated),

PORTS = (clear),

site = 'Dbrmsiis01'

)

FOR SOAP

(

WEBMETHOD'TestWebService'

(name='Rebate.dbo.TestWebService'),

DATABASE = 'rebate',

WSDL = DEFAULT

)

 

now the server Dbrmsiis01 is a different, IIS server on the network. the server that sql server is on is different. everytime i try to view the WSDL, its not on the server. am i doing something wrong, or do i have the idea of whats going on wrong? what link do i type into the browser to see the page describing the web service, as in visual studio web services?

  • Administrators
Posted

IIRC CREATE ENDPOINT creates the webservice directly within SQL server and has nothing at all to do with IIS.

 

It will not allow you to create an Endpoint on a remote machine either. Also it will only work on Win2k3 or WinXP SP2 or later.

Posting Guidelines FAQ Post Formatting

 

Intellectuals solve problems; geniuses prevent them.

-- Albert Einstein

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...