views:

495

answers:

3

I have created a custom list from another list in sharepoint, it is saved into the "List Template Gallery" I need to get this new list template by using web services, but the .GetListTemplates method of lists does not retrieve the custom templates. How can I get the custom templates?, so then I can use it to create a list.

A: 
string listName = "ListTemplateName";

foreach (SPListTemplate template in web.ListTemplates)
        {
            if (template.InternalName.Equals(internalName))
            {
                return template;
            }
        }
Johan Leino
He said he's using web services, not the object model.
Jason Watts
Sorry...missed that he needed it through a webservice call.
Johan Leino
Yes, I need web services please
dana_g
+1  A: 

Custom Web Service is the way to go - Check this out

Ganesha
A: 

Have you tried this using this?

[MSDN][1]http://msdn.microsoft.com/en-us/library/dd586523(office.11).aspx

It should retrieve all the lists including the List Template Gallery, wich is hidden...

v3ga