flash data integration:
SQL Server 2005 allows you to create native SOAP web services. I am trying to
access these using the webserviceconnector component but with no luck.
Have created SQL Server stored proc and ENDPOINT -
CREATE PROC dbo.SalesStoreProc
AS
SELECT
CustomerID,
Name
FROM
Sales.Store
CREATE ENDPOINT GetStores
STATE = STARTED
AS HTTP
(
PATH = '/Store',
AUTHENTICATION = (INTEGRATED),
PORTS = (CLEAR),
SITE = 'localhost'
)
FOR SOAP
(
WEBMETHOD 'StoreList'
(NAME='AdventureWorks.dbo.SalesStoreProc'),
BATCHES = DISABLED,
WSDL = DEFAULT,
DATABASE = 'AdventureWorks',
NAMESPACE = 'http://AdventureWorks/Store'
)
GO
After defining the webservice and adding a method the schema is defined with
params:Object and results:SqlResultStream (which is a datatype complex). When
triggering the webserviceconnector instance I get an error -
faultstring:"Unable to connect to endpoint: http://localhost:8800/Store"
I have read that this is a pretty common error and possibly associated with
complex data.
Has anyone tried using SQL Server 2005 Native SOAP and got this working? I
would think it would be a pretty common type of request.
Any help is appreciated.