Thursday, July 21, 2011

An error occurred while trying to fetch data from your SharePoint site. Unexpected response from the server. The content type of the response is ''

Problema: Ao abrir Windows SharePoint Designer 2007/2010, aparece o seguinte erro:

An error occurred while trying to fetch data from your SharePoint site. Unexpected response from the server. The content type of the response is "". The status code is "OK"

Solução:
Extend your web application Central Administration -> Application Management -> Manage Web Applications -> Select and click Extentd

Saturday, July 16, 2011

Internal Name of Column Type / Tipo

Humm Levei uns bons minutos para encontrar o nome interno da Coluna Tipo/Type...

Vou partilhar para poupar tempo aos próximos.

Internal Name of Column Type is "DocIcon".

Utilizei para esconder essa mesma coluna.

view.ViewFields.Delete("DocIcon");

DefaultView.ViewFields not working

Comando DefaultView.ViewFields não funciona se usado dessa forma.
Exemplos:
list.DefaultView.ViewFields.Delete("something"); or
list.DefaultView.ViewFields.Add("something");

É necessário a criação de uma variável para o DefaultView!!!

SPView view = list.DefaultView;
view.ViewFields.Delete("something");
view.Update();

;)

Tuesday, July 5, 2011

Erro ao abrir Perfis de Utilizador/User Profile

Após a criação de uma Aplicação de Serviço de Perfis de Utilizador pode aparecer o erro:

Ocorreu um erro inesperado. / An unexpected error occurred.




Solução: Fazer um IISRESET /noforce ao servidor WFE.

Se não funcionar, é bem capaz de faltar activar os serviços Perfis de utilizador e sincronização do servidor.

1- Ir a gestão de aplicações / Application Management



2- Selecionar Gerir serviços do servidor / Services on Server
3- Iniciar os serviços: Serviço de Perfis de Utilizador e Serviço de Sincronização de Perfis de Utilizador
4- Fazer novamente um IISRESET.

;) Alguma dúvida é só colocar.