Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I have an exposed stored procedure as JSON in ria services. When i go to this procedure adress in the localhost it works fine, when i upload to the server it dosen't work (normal tables work).
the JSON file is 3.8mb.

After adding the function import, i created my metadata for this procedure, and the method, they are like this:


Metadata:
C#
[MetadataTypeAttribute(typeof(design_Result.design_Result_Metadata))]
    public partial class design_Result_Result
    {
        internal sealed class design_Result_Metadata
        {
            private design_Result_Metadata()
            { }

            [Key]
            public int x { get; set; }
            [Key]
            public int y { get; set; }

            public string codX { get; set; }

            public string codY { get; set; }

            public Nullable<decimal> height{ get; set; }

            [Key]
            public Guid identification{ get; set; }
            
        }
    }


Method:
C#
public IQueryable<design_Result> GetDesign(Guid identification)
        {
            return this.ObjectContext.design(identification).AsQueryable();
        }


now when i go to the url
..Service.svc/JSON/GetDesign?identification=79f8441f-37ec-41a6-a6c3-3e68f08e89d9

it returns that the website dont exist.

Any ideas?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900