all groups > sql server reporting services > december 2004 >
You're in the

sql server reporting services

group:

ListSecureMethods - does not return any data


ListSecureMethods - does not return any data coder
12/13/2004 12:21:14 PM
sql server reporting services:
I'm calling ListSecureMethods to verify the requirements for each of
the methods. This call returns no errors but the object does not have
any method names.

Here is the code:
Dim RS As New ProjectName.systemname.ReportingService
RS.Credentials = New System.Net.NetworkCredential(sUserName,
sPassword)

Dim methods As String() = RS.ListSecureMethods()

If Not (methods Is Nothing) Then
Dim method As String
For Each method In methods
'Console.WriteLine(method)
Listbox4.Items.Add(method)
Next method
End If

I pulled this code from the Microsoft site.

I'm running in Debug mode on my pc. The Reporting Server is a win2003
server. The SQL database is on a Win2000 server.

I'm running Visual Studio.Net vs 7.1.3088 with a Framework 1.1.4322.

The machine.config file has the Level set to 0 (zero).

I'm sure this is a security setting - I'm just not sure what it needs
to be. SSL is not being used as of yet. The Lan Admin group is
researching the request.
Any pointers would be greatly appreciated.

Thanks,
Re: ListSecureMethods - does not return any data Daniel Reib [MSFT]
12/14/2004 5:08:20 PM
ListSecureMethod will return various methods based on the value of
SecureConnectionLevel in the RSReportServer.config file.

For more info on the value of SecureConnectionLevel see:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rsprog/htm/rsp_prog_soapapi_dev_2xiq.asp

Also this link gives info about using ListSecureMethods:

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rsprog/htm/rsp_ref_soapapi_service_lz_5zdu.asp

--
-Daniel
This posting is provided "AS IS" with no warranties, and confers no rights.


[quoted text, click to view]

AddThis Social Bookmark Button