arquivos mensuais: Agosto 2008

SharePoint Esta noite Webcast User Group

Esta noite, 08/20/08, a reunión do grupo de usuario do SharePoint Connecticut está transmitindo un webcast no canto de unha reunión física este mes.

O tema desta noite: "Microsoft Office SharePoint Server 2007 – Metodoloxías de implantación extranet"

Microsoft’s own Chris Lavista will lead the discussion. I’ve worked with Chris before and he really knows his stuff. If you have any interest in this subject, Consulte. Here are the details:

SharePoint Webcast User Group: https://www.clicktoattend.com/invitation.aspx?code=130299

Tema: Microsoft Office SharePoint Server 2007 – Metodoloxías de implantación extranet
Altofalante:
Chris Lavista de Microsoft

Data: Agosto 20º Benvido Tempo: 6:15 AM Tempo: 6:30 AM -8:00AM


Descrición:
SharePoint permite múltiples opcións de implantación. A discusión será centrada en como unha extranet segura na plataforma SharePoint pode ser implantado. Discutir as mellores prácticas e escenarios que implica a integración de tecnoloxías Forefront, ISA Server 2006 e IAG 2007. Opcionalmente, fale co apoio sinal único en casos de uso.
Acerca de Chris:
Chris Lavista is a Technical Architect at recently opened Microsoft Technology Center in New York. His focus is on SharePoint, Colaboración, e Unified Communications. El xa traballou na industria de servizos financeiros (Persecución, Citigroup) antes de ingresar en Microsoft para 8 anos. He started at Microsoft in 2000 como parte da súa práctica de servizos de consultoría antes de unirse ao equipo a principios de MTC 2006.

Rexistro & Máis información: https://www.clicktoattend.com/invitation.aspx?code=130299

</final>

Rexístrate para o meu blog.

Technorati Tags:

Ten o seu Comité de Investigación reuníronse este mes?

É o comezo do mes e agora é un momento tan bo como calquera comisión para a súa empresa de busca para reunirse e analizar as mellores apostas, investigacións exitosas e non tan exitoso, etc.

Non ten un comité de busca? Logo formar un 🙂

WSS and especially MOSS search benefit from some human oversight. Investing a few hours a month on a consistent monthly basis is not only máis divertido que un barril de monos, pode:

  • Give insight into the information needs of the enterprise. If people are searching left and right for topic "xyzzy," you know that’s an important topic to the enterprise.
  • Identify potential training requirements. If people are searching for topic "xyzzy" but should really be searching for "abcd" entón podes usar isto para educar a xente sobre onde e como atopar a información.
  • Help your organization refine its information architecture.
  • Identificar oportunidades para mellorar o dicionario de sinónimos.
  • Outras oportunidades, sen dúbida, van presentarse.

Quen debería estar no comité de procura? You would know your people best, pero considere:

  • Polo menos un (e, se cadra, só un) TI persoa que entende (ou pode aprender) as varias formas de axustar investigación, incluíndo as mellores apostas, Wikipedia, propiedades administrados, etc.
  • Varios expertos no tema que poden ler os informes de investigación, inxerir-lo e comunicar accións negocio-savvy a el para que poida usar os botóns, tirar as alavancas e chave de abrir / pechar como necesario nas recomendacións do comité.
  • Un ou máis información arquitectos que poden validar, dunha forma ou doutra, a arquitectura da información é de procura agradable e se funciona ben para a empresa.
  • A rotating seat on the committee. Bring in one or two people who don’t normally participate in these kinds of efforts. They may bring unusual and valuable insights to the table.

Analizar feliz!

</final>

Rexístrate para o meu blog.

Technorati Tags:

Fácil e rápida: Obter SPFolder de SPItemList

Eu segue correndo para este problema e Google parece nunca entender o que quero facer, entón eu entender que eu ía escribir isto.

Eu teño feito unha morea de depuración receptor de eventos a última semana ou dúas. The ER is defined against a document library. The individual items in the document library are tightly related to their parent folders. Así, I am always getting the folder of the item for various manipulations. While debugging, Eu precisaba actualizar os metadatos dun cartafol para un elemento específico, cuxa ID sei.

Aquí é unha aplicación de consola pouco (deseñado para rodar en servidores no farm) que recibe dous argumentos: a ID dun elemento e un valor a asignar a un campo, "Approval Status". It hard codes a lot of stuff and has no error checking.

O código é un sitio codificado, gets a hard coded document library and then finds the indicated item. It then finds the parent folder of that item and assigns the status value.

The key lesson here for me is that SPItem doesn’t get you access to the folder. You need to use SPListItem.File.

Se alguén se preocupa en ofrecer unha crítica ou suxerir a mellor maneira de obter o cartafol dun elemento, por favor, deixe un comentario.

<código>
utilización Sistema;
utilización System.Collections.Generic;
utilización System.Text;
utilización Microsoft.SharePoint;
utilización System.Collections;

espazo de nomes Conchango
{
    /// <resumo>
 /// </resumo>
 clase ManualFolderUpdate
    {
        estático invalidar Principal(corda[] args)
        {
            corda MSH = "ManualFolderUpdate (v1.0): "; // msh = "Message Header"

 Consola.WriteLine(MSH + "Starting up.  I foi modificada por última vez en 08/04/08.");

            corda url = http://localhost/xyzzy;

            utilización (SPSite oSPSite = novo SPSite(url))
            {

                utilización (SPWeb oSPWeb = oSPSite.OpenWeb())
                {
                    SPList DocLib = oSPWeb.Lists["Documents"];

                    Consola.WriteLine(MSH + "Got the document library.");

                    Consola.WriteLine(MSH + "Doc lib item count: [" + docLib.ItemCount + "].");

                    int FolderID = 0;
                    corda NewStatus = "Xyzzy";

                    FolderID = System.Converter.ToInt32(args[0].ToString());
                    Consola.WriteLine("Seeking folder for item: [" + FolderID + "].");

                    SPListItem li = docLib.GetItemById(FolderID);

                    SPFolder thisItemFolder = li.File.ParentFolder;

                    Consola.WriteLine(MSH + "Got the parent folder.");

                    NewStatus = args[1].ToString();
                    Consola.WriteLine("Setting status to [" + NewStatus + "].");

                    Consola.WriteLine("Press return to commit the update or CTRL-C to abort.");

                    Consola.ReadLine();

                    thisItemFolder.Item["Approval Status"] = NewStatus;
                    thisItemFolder.Item.Update();

                    Consola.WriteLine(MSH + "Finished updating the folder.  Saír.");

                } // usar SPWeb

            } // usar SPSite

 Consola.WriteLine(MSH + "Finished.");

        } // Principal

    } // clase FolderSync
} // espazo de nomes
</código>

</final>

Rexístrate para o meu blog.

Technorati Tags:

Domingo Morning divertido: “Pai, El nin sequera sabe que”

Nós norte de Nova Jersey Galvin do son grandes fans da TV sátira política. programa, The Daily Show hosted by Jon Stewart. I don’t like to get political in my blogging, entón todo o que eu vou dicir sobre iso é que, sen a Daily Show, Podo moi ben perder permanentemente todo sentido do humor ou sobre 12/12/2000.

Estabamos tendo unha comida na cuberta inicio da semana pasada e meu fillo de dez anos trae á luz un episodio recente de Amosar. Eu fixen o comentario, "Jon Stewart knows that he mellor non sacar sarria de min or there will be terrible consequences for Jon Stewart."

O meu fillo pensa sobre iso por un minuto e di:: "Dad, número un: He doesn’t even know you."

Esperei por un número de dous, pero el decidiu que era suficiente e mudouse para o seguinte tema sen perder o ritmo.

Ela adoitaba ser que eu podería ser moito máis milhagem fóra destes tipos de bromas, but he’s getting too used to me or too mature or both. I need to adjust somehow.

</final>

Rexístrate para o meu blog.

Technorati Tags:

Horario empregado Formación e Obras Template — Erro Conde Seat Plus Fix Seguridade(?)

Este é un moi popular "fabuloso 40" modelo. It also has a bug which is widely known (Eu mesmo escribín sobre como resolve-lo).

Sogeti emitiu un proxecto CodePlex esta semana que corrixe o erro (o que é bo por si só, pero non a terra tremer) pero eles tamén afirman ter resolto un problema máis espiñento moi: seguridade. The fab 40 modelo require unha configuración de seguranza moi xeneroso (necesidades de usuarios nivel contribuínte o acceso a practicamente todo). Not any more! According to the codeplex summary:

"This template also includes a new custom workflow action which enables the template to work without having to give all users contribute permissions to the courses list."

Isto é algo bo e paga a pena revisar.

</final>

Rexístrate para o meu blog.

Technorati Tags: , ,

SharePoint Workflow Design, Receptores de eventos e “Actualizar elemento de lista” contra “Establecer campo baixo actual”

Temos un conxunto de fluxos de traballo do SharePoint Design que "comunicar" with an event receiver on the list via changes to site column values. Por exemplo, unha columna de sitio "SetDuedate" é definido como verdadeiro polo fluxo de traballo, o receptor de eventos detecta ese cambio, calcula unha data de caducidade e atribúe esa data a outra columna de sitio, "Due Date." We split things up like this because the event receiver can calculate a due date using complex business rules (taking weekends and company holidays into account) while SPD really can not.

In one specific instance, we ran into a problem with this trick. Debugging all this is pretty difficult, but we came to the definite conclusion that in one case (polo menos), the event receiver was not running all the time. In one step of the workflow, we would change the value of a site column and the event receiver didn’t appear to run. Con todo, it was running consistently in a different step of the workflow.

After reviewing it, I noticed that the happy workflow step used the "Update List Item" while the other step used "Set Field in Current Item." Update List Item was updating the "current item." I’m not sure why we picked one over the other since they would seem to be doing the same thing.

Así … the Update List Item action did cause the event to fire. Por outra banda, the Set Field in Current Item action did not.

I used Update List Item in both places and viola! It worked. [[ Total aside, I played the violin for on a daily basis for almost 15 anos ]]

From this, I tentatively believe that the "Set Field" action does not cause event receivers to fire, at least some of the time.

This issue bedeviled us for weeks.

This is one of those "observed behavior" posts. I observed this happen once in a specific environment and I’m making some guesses as to why things happened as they did. If you have any insight into this one, please share in the comments.

</final>

Rexístrate para o meu blog.