0

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.

John Saunders
  • 160,644
  • 26
  • 247
  • 397
danae
  • 1,402
  • 1
  • 13
  • 10

3 Answers3

1

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

Ganesha
  • 1,531
  • 3
  • 16
  • 22
0
string listName = "ListTemplateName";

foreach (SPListTemplate template in web.ListTemplates)
        {
            if (template.InternalName.Equals(internalName))
            {
                return template;
            }
        }
Johan Leino
  • 3,473
  • 1
  • 26
  • 27
0

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
  • 177
  • 3
  • 12