This is the error I receive:

The server encountered an error processing the request. The exception message is 'Exception has been thrown by the target of an invocation.'

Here is my setup and code: I am working in VS 2010. I created a WCF Data Service to handle retrieving data from SQL Server 2008 R2. I created the Entity Model. I added tables and stored procedures to the entity model. I setup Function Imports for the Stored Procedures. My Entity is called SharingShapesEntities. The following is the SetEntityRights and SetOperationRights:

public class WcfSharingShapes : DataService<SharingShapesEntities>
{
    // This method is called only once to initialize service-wide policies.
    public static void InitializeService(DataServiceConfiguration config)
    {
        // TODO: set rules to indicate which entity sets and service operations are visible, updatable, etc.
        // Examples:
        config.SetEntitySetAccessRule("tbGames", EntitySetRights.AllRead );
        config.SetEntitySetAccessRule("tbUsers", EntitySetRights.AllRead);
        config.SetEntitySetAccessRule("tbTiles", EntitySetRights.AllRead);
        config.SetEntitySetAccessRule("tbGameUsers", EntitySetRights.AllRead);
        config.SetEntitySetAccessRule("tbGameTiles", EntitySetRights.AllRead);
        config.SetEntitySetAccessRule("tbPlays", EntitySetRights.AllRead);
        config.SetEntitySetAccessRule("tbTableTalk", EntitySetRights.AllRead);
        config.SetServiceOperationAccessRule("spGetGameTiles", ServiceOperationRights.All);
        config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
    }
}

The view in browser breaks when I added:

config.SetServiceOperationAccessRule("spGetGameTiles", ServiceOperationRights.All);

I take this out and it works. The Function Import generated code looks like this:

public ObjectResult<global::System.String> spGetGameTiles(global::System.String userId, Nullable<global::System.Int32> gameId, ObjectParameter tileIds)
    {
        ObjectParameter userIdParameter;
        if (userId != null)
        {
            userIdParameter = new ObjectParameter("UserId", userId);
        }
        else
        {
            userIdParameter = new ObjectParameter("UserId", typeof(global::System.String));
        }

        ObjectParameter gameIdParameter;
        if (gameId.HasValue)
        {
            gameIdParameter = new ObjectParameter("GameId", gameId);
        }
        else
        {
            gameIdParameter = new ObjectParameter("GameId", typeof(global::System.Int32));
        }

        return base.ExecuteFunction<global::System.String>("spGetGameTiles", userIdParameter, gameIdParameter, tileIds);
    }

There is one scalar return of type string.

The Stored Procedure looks like this:

ALTER PROCEDURE [dbo].[spGetGameTiles]
    -- Add the parameters for the stored procedure here
    @UserId nvarchar(100),
    @GameId int,
    @TileIds varchar(30) output
AS
BEGIN
    SET NOCOUNT ON;
    declare @TileId1 int
    declare @TileId2 int
    declare @TileId3 int
    declare @TileId4 int
    declare @TileId5 int
    declare @TileId6 int

    -- Insert statements for procedure here
    SELECT @TileId1 = TileId1, @TileId2 = TileId2,
        @TileId3 = TileId3, @TileId4 = TileId4,
        @TileId5 = TileId5, @TileId6 = TileId6
        from tbGameUsers where GameId = @GameId and
        UserId = @UserId;

    set @TileIds = cast(@TileId1 as varchar(3)) + ',' +
            cast(@TileId2 as varchar(3)) + ',' +
            cast(@TileId3 as varchar(3)) + ',' +
            cast(@TileId4 as varchar(3)) + ',' +
            cast(@TileId6 as varchar(3)) + ',' +
            cast(@TileId6 as varchar(3)) + ',';
END

The stored procedure has been tested in SQL Server to ensure that it works. The only problem is getting through the data service. Any help would be appreciated.

link|improve this question
Problem solved. It was a port issue. Weird but true. I had to set the port on both client and server side. – Steve Wilcox Aug 2 '11 at 18:07
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.