Re: Can't connect to SSL SOAP endpoint
- From: petery@xxxxxxxxxxxxxxxxxxxx ("Peter Yang[MSFT]")
- Date: Wed, 21 May 2008 07:01:16 GMT
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.
.
- References:
- Re: Can't connect to SSL SOAP endpoint
- From: Axel Dahmen
- Re: Can't connect to SSL SOAP endpoint
- From: "Peter Yang[MSFT]"
- Re: Can't connect to SSL SOAP endpoint
- From: Axel Dahmen
- Re: Can't connect to SSL SOAP endpoint
- From: "Peter Yang[MSFT]"
- Re: Can't connect to SSL SOAP endpoint
- From: Axel Dahmen
- Re: Can't connect to SSL SOAP endpoint
- Prev by Date: RE: Windows Authentication from Outside the Domain
- Next by Date: Re: OSQL Remote Connection Refused on SQL Svr 2005 Express
- Previous by thread: Re: Can't connect to SSL SOAP endpoint
- Next by thread: Using SQL 2005 x64 to linked server an 32 bit access database
- Index(es):
Loading