SharePoint Blog - René Hézser

Anmelden  RSS Feed RSS Feed
Startet die Suche

Mar 222007

Wiki Page

Instead of posting numerous Blog posts, I created a Wiki-Website on which I will post information about SharePoint programming.

Published: 3/22/2007  7:43 PM | 0  Comments | 0  Links to this post
Tagged as: Sonstiges, Development

Mar 222007

Reporting Services and XML Datasource

Querying a XML Datasource

Query:

<Query>

    <SoapAction>http://ns.tld/MethodName</SoapAction>

    <Method Namespace="http://ns.tld/" Name=" MethodName" />

    <ElementPath IgnoreNamespaces="True">*</ElementPath>

</Query>

Passing Parameters

You only have to define your parameters in the parameter tab of your dataset. They are passed automatically to the Webservice Method. If you want to define your parameter yourself and not use a Reporting Services Parameter, just type

<Query>

    <SoapAction>http://ns.tld/MethodName</SoapAction>

    <Method Namespace="http://ns.tld/" Name=" MethodName">

        <Parameter Name="ParamName">

            <DefaultValue>ParamValue</DefaultValue>

        </Parameter>

    </Method>

    <ElementPath IgnoreNamespaces="True">*</ElementPath>

</Query>


Published: 3/22/2007  5:59 PM | 0  Comments | 0  Links to this post
Tagged as: Reporting Services

Mar 212007

Create VB.NET Code for Reporting Services

To use custom code in a Report, you can past VB.NET Code into the Report properties. But what if you can only write C# and not VB.NET?

Here is the answer: http://authors.aspalliance.com/aldotnet/examples/translate.aspx

This great .NET translator lets you translate C# into VB.NET J


Published: 3/21/2007  6:49 PM | 0  Comments | 0  Links to this post
Tagged as: Reporting Services, Development

Mar 132007

Wiki mit Bildern Update

Falls bei der Benutzung des Webparts ein Fehler wie:

Fehler bei der Anforderung des Berechtigungstyps Microsoft.SharePoint.Security.SharePointPermission, Microsoft.SharePoint.Security, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c.

auftritt, muss der Trustlevel in der web.config auf Full gesetzt werden.

<trust level="Full" originUrl="" />

Zum vollständigen Beitrag: http://www.hezser.de/blog/Lists/Beitraege/Post.aspx?ID=18

Update 23. Apr 2008:

Ich habe eine neue Version bereitgestellt.


Published: 3/13/2007  8:47 PM | 0  Comments | 0  Links to this post
Tagged as: Webparts, Development, Upload Webparts, SharePoint