Re: Can't connect to SSL SOAP endpoint
- From: Axel Dahmen <keentoknow@xxxxxxxxxxxxxxxx>
- Date: Tue, 3 Jun 2008 03:34:00 -0700
Hi Peter,
I've now been trying this using different ports. But to no avail.
Telnet is not installed on my Server 2008 yet. As a developer I've never
been using this tool yet. Would I need to install only the client or the
server as well to use it as you've suggested?
Thank you for helping so much!
Best regards,
Axel Dahmen
-------------------
""Peter Yang[MSFT]"" wrote:
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.
- Prev by Date: Re: SQL client runs better on Vista over XP?
- Next by Date: Re: GRANT CONNECT to group? - How?
- Previous by thread: Re: SQL client runs better on Vista over XP?
- Next by thread: Re: Can't connect to SSL SOAP endpoint
- Index(es):
Loading