Re: Can't connect to SSL SOAP endpoint



Hello Axel,

You may want to try this:

https://localhost:443/PortfolioCockpit/SQL?wsdl


Also, since 443 is the default port of SSL and might be used by other
application. I suggest that you try to use a different port such as 5000 to
test. Please note that you should also change it via etsh http add sslcert

If the issue persists, please try to use the following script to test:

CREATE PROCEDURE testp1
AS
SELECT a
FROM mytest..tbl1;
GO

--please replace mytest..tbl1 with a table on your database

exec testp1

DROP ENDPOINT Sample_EP;
GO

CREATE ENDPOINT Sample_EP
AS HTTP (
SITE='*',
PATH='/SQL/test',
AUTHENTICATION=(INTEGRATED),
PORTS=(SSL),
SSL_PORT =5000

)
FOR SOAP (
WEBMETHOD
'testp1'(NAME='mytest.dbo.testp1'),
LOGIN_TYPE = Mixed,
WSDL=DEFAULT,
NAMESPACE = 'http://contoso.com/',
SCHEMA = STANDARD
)

In addition, please use "telnet severname 5000" to see if the port is open
or it might be blocked by firewall.

If you have any update, please feel free to let's know. Thank you.

Best Regards,

Peter Yang
MCSE2000/2003, MCSA, MCDBA
Microsoft Online Partner Support


=====================================================

When responding to posts, please "Reply to Group" via your
newsreader so that others may learn and benefit from this issue.
======================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

.


Loading