S
Stefan Berglund
This may not be the right group for this since the ASP part of the equation
seems to be working as it should, but at the very least perhaps someone will
point me to the correct group or even better, a solution.
I've been using the following technique to return a recordset from a web based
SQL Server to my app.
ASP (no HTML):
<%Option Explicit%>
<!--#include file="inc/asp_head.asp" -->
<!--#include file="inc/asp_connect.asp" -->
<%Dim rs: Set rs = cn.Execute("get_SomeData " &
LikePhrase(ValidateInputString(Request.QueryString("ShowTitle"),"")))
rs.Save Response: rs.Close: Set rs = Nothing: cn.Close: Set cn = Nothing%>
VB app:
rs.Open "http://" & frmMain.IP_Main & "/someASP.asp?ShowTitle=" &
URLEncode(frmMain.ShowTitle)
At this point the app can use the recordset that was passed
through the Response object just like any other recordset.
The problem comes about when attempting to use https in place of http. As I
said, the ASP shows every indication of working since I can see the data in a
browser window but the recordset is empty/non-existent in the client app. I've
tried the URL= as in rs.Open "URL=https://... and found docs that seem to
indicate that this worked in the days of RDS, but I've been unsuccessful in
googling anything appropriate. Can anyone shed any light on this or offer an
alternative methodology to obtaining data securely from the Internet?
seems to be working as it should, but at the very least perhaps someone will
point me to the correct group or even better, a solution.
I've been using the following technique to return a recordset from a web based
SQL Server to my app.
ASP (no HTML):
<%Option Explicit%>
<!--#include file="inc/asp_head.asp" -->
<!--#include file="inc/asp_connect.asp" -->
<%Dim rs: Set rs = cn.Execute("get_SomeData " &
LikePhrase(ValidateInputString(Request.QueryString("ShowTitle"),"")))
rs.Save Response: rs.Close: Set rs = Nothing: cn.Close: Set cn = Nothing%>
VB app:
rs.Open "http://" & frmMain.IP_Main & "/someASP.asp?ShowTitle=" &
URLEncode(frmMain.ShowTitle)
At this point the app can use the recordset that was passed
through the Response object just like any other recordset.
The problem comes about when attempting to use https in place of http. As I
said, the ASP shows every indication of working since I can see the data in a
browser window but the recordset is empty/non-existent in the client app. I've
tried the URL= as in rs.Open "URL=https://... and found docs that seem to
indicate that this worked in the days of RDS, but I've been unsuccessful in
googling anything appropriate. Can anyone shed any light on this or offer an
alternative methodology to obtaining data securely from the Internet?