May 30, 2007 at 11:30 am
i created this endpoint:
create
endpoint first_Endpoint
state = started
as http
(
path ='/sql',
authentication=(integrated),
ports=(clear),
site='server'
)
for soap
(
webmethod 'provideInfo'
(name='adventureworks.dbo.uspGetBillOfMaterials'),
wsdl=default,
schema = standard,
database = 'AdventureWorks',
Namespace = 'http://tempuri.org/'
);
go
the above code runs fine in my local instance, but when in visual studio i go to add web reference and type http://localhost/sql/ , or http://machineName/sql/first_Endpoint it can find nothing. what am i doing wrong here?
October 17, 2007 at 4:26 am
The address to your web method should be in the form of:
http://server/endpoint_path%5Bb%5D?wsdl%5B/b%5D
More info in Books Online:
http://msdn2.microsoft.com/en-us/library/ms175476.aspx
ML
---
Matija Lah, SQL Server MVP
http://milambda.blogspot.com
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply