.NET Web Service -- New Methods not appearing

Go To StackoverFlow.com

3

Building a test web service and all was working great, so I added the rest of my methods and now they aren't appearing in the "View in Browser" test page.

I stopped the service in the system tray. Did a CLEAN. Did Rebuild. Did Build. Tried all these several times.

Odd thing is that one of my new methods replaced one of the old methods (HelloWorld default), but the rest of the 10 - 15 methods just aren't there.

Any ideas on this at all?

EDIT: Here's a sample of what I've got...

    [WebMethod]
    public DataSet GetSiteMap()
    {
        return Photo_DA.GetSitemap();
    }

    [WebMethod]
    public DataSet GetByTypeDate(string photoType, DateTime photoDate)
    {
        return Photo_DA.GetByTypeDate(photoType, photoDate);
    }

    [WebMethod]
    public static DataSet GetArchiveCombos()
    {
        return Photo_DA.GetArchiveCombos();
    }

The first two show. The third does not.

DOH! STATIC is the bad guy -- I cannot delete this message, so Admin can I suppose.

2009-06-16 14:19
by klkitchens
No need to delete, it's still a valid question. Add your discovery as an answer and accept it so people finding your question in the future might not have to go what you went through = - Joseph 2009-06-16 14:28


7

Should GetArchiveCombos() really be static?

2009-06-16 14:26
by Rowland Shaw
Nope and that was what I figured out... giving you the cred though! Thanks - klkitchens 2009-06-16 15:32


2

Did you forget to apply the attribute [WebMethod] to your new methods?

2009-06-16 14:20
by meklarian
Nope... it's there.. - klkitchens 2009-06-16 14:23
ooh ouch. can you provide the declaration for one of your web methods - meklarian 2009-06-16 14:24


1

Did you update the web reference?

2009-06-16 14:25
by Eric Schneider
Also stop the service host and rebuil - Eric Schneider 2009-06-16 14:27


0

Do you have any new endpoints that need to be configured in your web.config file?

2009-06-16 14:24
by grimus
Ads