September 12, 2009 at 8:50 am
Hi Time savers !
When we create a new website in IIS. We add the bindings, as in the ip address and the port number.
Just say that I have a Domain name MyKoolDomain.COM.
Now I want to expose a webservice from my sql machine and the url would be Services.MyKoolDomain.COM
How do I match the ip address up to my domain name / url ?
Can someone give me a url to find out more about this ? As in, example and not the BOL. ? It is easier for me to do the examples first and then check out the BOL after that.
CREATE ENDPOINT endpoint_name
STATE = STARTED
AS HTTP (
path='/sql/hello_world',
AUTHENTICATION=(INTEGRATED),
PORTS = (CLEAR)
)
FOR SOAP(
WEBMETHOD 'http://tempuri.org/' . 'Procedure_Name' (NAME = 'Database_Name.Schema_Name.Procedure_Name' ),
WSDL = DEFAULT,
BATCHES=ENABLED
)
GO
Dam again!
September 12, 2009 at 1:57 pm
Viewing 2 posts - 1 through 1 (of 1 total)
You must be logged in to reply to this topic. Login to reply