Wednesday, March 7, 2012

ReportingService.GetServerDateTime Missing??

It seems like the ReportingService.GetServerDateTime method is missing on
the webservice API, although it should be there according to the
documentation.
Any help appreciated!
Thanks,
MartenThis is documentation bug. There is no such method.
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Marten Engblom" <me@.nospam.com> wrote in message
news:OKVjxOilEHA.948@.TK2MSFTNGP12.phx.gbl...
> It seems like the ReportingService.GetServerDateTime method is missing on
> the webservice API, although it should be there according to the
> documentation.
> Any help appreciated!
> Thanks,
> Marten
>|||Is there any other way of getting the time of the server, other than
deploying another custom webservice for it?
Thanks,
Marten
"Lev Semenets [MSFT]" <levs@.microsoft.com> wrote in message
news:%23wiyCLjlEHA.2884@.TK2MSFTNGP09.phx.gbl...
> This is documentation bug. There is no such method.
> --
> This posting is provided "AS IS" with no warranties, and confers no
> rights.
>
> "Marten Engblom" <me@.nospam.com> wrote in message
> news:OKVjxOilEHA.948@.TK2MSFTNGP12.phx.gbl...
>> It seems like the ReportingService.GetServerDateTime method is missing on
>> the webservice API, although it should be there according to the
>> documentation.
>> Any help appreciated!
>> Thanks,
>> Marten
>|||You can publish report like this and render it to CSV
<?xml version="1.0" encoding="utf-8"?>
<Report
xmlns="http://schemas.microsoft.com/sqlserver/reporting/2003/10/reportdefinition"
xmlns:rd="">http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
<RightMargin>1in</RightMargin>
<Body>
<ReportItems>
<Textbox Name="textbox1">
<CanGrow>true</CanGrow>
<Value>=DateTime.Now().ToString("yyyy-MM-dd hh:mm:ss")</Value>
</Textbox>
</ReportItems>
<Style />
<Height>0.25in</Height>
</Body>
<TopMargin>1in</TopMargin>
<Width>3.875in</Width>
<LeftMargin>1in</LeftMargin>
<BottomMargin>1in</BottomMargin>
<Language>en-US</Language>
</Report>
This posting is provided "AS IS" with no warranties, and confers no rights.
"Marten Engblom" <me@.nospam.com> wrote in message
news:eq5FntolEHA.1672@.TK2MSFTNGP14.phx.gbl...
> Is there any other way of getting the time of the server, other than
> deploying another custom webservice for it?
> Thanks,
> Marten
> "Lev Semenets [MSFT]" <levs@.microsoft.com> wrote in message
> news:%23wiyCLjlEHA.2884@.TK2MSFTNGP09.phx.gbl...
>> This is documentation bug. There is no such method.
>> --
>> This posting is provided "AS IS" with no warranties, and confers no
>> rights.
>>
>> "Marten Engblom" <me@.nospam.com> wrote in message
>> news:OKVjxOilEHA.948@.TK2MSFTNGP12.phx.gbl...
>> It seems like the ReportingService.GetServerDateTime method is missing
>> on the webservice API, although it should be there according to the
>> documentation.
>> Any help appreciated!
>> Thanks,
>> Marten
>>
>

No comments:

Post a Comment