FAST SharePoint integracija: Sample Code prikaz svih dostupnih FAST Pregleda

Ovdje je neki kod koji prikazuje sve dostupne pogled iz BRZO poslužitelj temeljen na ime QRServer (procesa poslužnika s kojima komuniciramo). I offer this up to give you all a taste of what it’s like to use the provided FAST API.

pomoću Sustav;
pomoću System.Collections.Generic;
pomoću System.Linq;
pomoću System.Text;
pomoću Com.FastSearch.Esp.Search;
pomoću Com.FastSearch.Esp.Search.Http;
pomoću Com.FastSearch.Esp.Search.Navigation;
pomoću Com.FastSearch.Esp.Search.Query;
pomoću Com.FastSearch.Esp.Search.Result;
pomoću Com.FastSearch.Esp.Search.View;
pomoću System.Collections.Specialized;
pomoću System.Collections;


namespace Conchango
{
    klasa EnumerateFASTViews
    {
        statički poništiti Glavni(niz[] args)
        {

            ISearchFactory searchFactory;

            NameValueCollection nameValueCollection = novi NameValueCollection();

            nameValueCollection.Add("fastsearchengine", "Com.FastSearch.Esp.Search.Http.HttpSearchFactory");
            nameValueCollection.Add("Com.FastSearch.Esp.Search.Http.QRServers", "fastdemoback:15100");
            nameValueCollection.Add("Com.FastSearch.Esp.Search.Http.RequestMethod", "GET");

            searchFactory = SearchFactory.NewInstance(nameValueCollection);

            Utješiti.WriteLine("Total Views: [" + searchFactory.GetSearchViewList().Računati + "].");

            int i = 0;

            foreach (objekt o u searchFactory.GetSearchViewList())
            {
                Utješiti.WriteLine("View [" + i     + "]: [" + o.ToString() + "].");

            }

            Utješiti.ReadLine();

        }
    }
}

Imajte na umu da sam sebe smatram jedva nadležno C # programer i imam tanku kožu, tako da ne slati maline moj način, osobito cijene: the "foreach (objekt o u …)" construct 🙂

</kraj>

Technorati Tags: ,

Pretplatite se na moj blog.

FAST i SharePoint Integracija Prvi pogled

Bio sam sretan da ima priliku raditi na FAST <–> SharePoint integracija projekt i mislio bih i dalje dijele moje ograničeno iskustvo sa zajednicom.

Microsoft je u Proces kupnje BRZO. I don’t know anything about the schedule except that it should be finished in the "2nd quarter" što sam pretpostaviti sredstva za 06/30/08.

Mog projekta dizajn, na vrlo visokoj razini, pozivi za stvaranje nekoliko web-dijelova koji su manje-više isti izgled, osjećaju i funkcije kao i standardni Moss okvir za pretraživanje i web jezgre Rezultati dio, but pulling from FAST. I’ve made some baby steps in that direction.

FAST is a dedicated search engine. It’s not based on Microsoft technology, iako je očito da mi se da neke od brze inženjera jasno razumjeti MS tech (ili su napravili korištenje radova).

BRZO:

FAST je velika čudovište server proizvoda (i ne mislim da je u lošem smislu; MOSS je veliki čudovište proizvoda za mene, kao i). It appears to be based on Java and I noticed some apache stuff and maybe some PHP. I wouldn’t be surprised if there were other bits of tech mixed in here and there. It definitely runs on windows server and is working fine in the virtual environment which I’ve been using.

It makes use of a facade web service that crawls SharePoint content for indexing in its special FAST way.

A SharePoint end user would be pretty much at home with FAST’s user interface. It has simple/advance search, prikazani su rezultati, je velika na relevantnosti (iako ne vidim kako se to obrađuje socijalnu relevantnost). Međutim, it does go further. Its stemming seems better. I really can’t articulate it well but I’ll just say "it’s better." You can take my word for it, or not 🙂 I may elaborate on this point in the future, kao što sam saznati više.

MOSS:

FAST provides a .NET-friendly DLL that provides an interface to the FAST engine. This makes it possible for us to create web parts or application pages or whatever we want to query FAST and present the results.

Čini se da sučelje web servis kao i.

I also have access to a FAST-provided web part that does integrate MOSS and FAST. I don’t know if this is a POC, something that was whipped up as a demo or what. It’s definitely a good learning tool, nije tako siguran ako je proizvodno-spremni.

That’s it for now. As I progress through the project, Ja ću pisati više.

</kraj>

Technorati Tags: , ,

Pretplatite se na moj blog.

Odredite Fast port QRServer

Kako bi se komunicirati s FAST Search putem API, moramo znati port na kojem je pokrenut QRServer.

Pratio sam ove korake da biste ga pronašli:

  1. Prijavite se u FAST admin stranice (http://server:port/admin).
  2. Idite na Pregled sustava.
  3. Locate "Search Dispatcher" i kliknite na ikonu spyglass:

    slika

  4. Ja sam uspješno koristio vrijednost, 15100 for "Info Name" = "http":

    slika

Bilješke:

1. Luka 15100 appears to be the default out-of-the-box port number for the QRServer.

2. Koristite ovaj kod sličan sljedećeg instancu vezu na post:

     ISearchFactory searchFactory;
    
        NameValueCollection nameValueCollection = novi NameValueCollection();
    
        nameValueCollection.Add("fastsearchengine", "Com.FastSearch.Esp.Search.Http.HttpSearchFactory");
        nameValueCollection.Add("Com.FastSearch.Esp.Search.Http.QRServers", "fastdemoback:15102");
        nameValueCollection.Add("Com.FastSearch.Esp.Search.Http.RequestMethod", "GET");
    
        searchFactory = SearchFactory.NewInstance(nameValueCollection);

3. Ako odaberete mahnito netočan luku, ćete dobiti korisne poruku o pogrešci:

slika

4. Međutim, Ako odaberete broj porta naveden na pregled (15102) you don’t get that helpful error message. Umjesto toga, kasnije, kada pokušate pristupiti podatke putem pretrage ili upućivanje na FAST pogled, you get an error. Debugging shows that the searchFactory’s view count is zero. You’ll be given the message "Failed to fetch Search View List".

</kraj>

Technorati Tags:

Pretplatite se na moj blog.

Prema SharePoint tehničkim dizajn obrazaca: SharePoint Designer Workflow + Događaj prijemnik visoke = potencija Cocktail

Jedan od obrazaca u nastajanju mogu naći u crafting SharePoint rješenja utjecati SharePoint Designer tijek rada i događaj prijemnik.

Ovdje je poslovni scenarij da ga staviti u kontekst:

  • Ću uploadati dokument na doc lib.
  • Sam kick off multi-korak workflow izrađena pomoću SharePoint Designer.
  • U nekom trenutku tijekom tog procesa, tijek rada dodjeljuje zadatak da netko (putem prikupljanja podataka iz korisnika ili dodijeliti zadatak).
  • We want to use a KPI to track how long that task is awaiting completion. The KPI shows green for tasks that are completed or due more than 3 days from now. It shows yellow if the task is due tomorrow or today. It shows red if the task is past due.
  • Evo buntovnik: Želim datum koji vozi da KPI biti svjesni odmor.

I can’t calculate a holiday-aware due date in SharePoint Designer workflow very easily. I would have to create a custom action or use a 3rd party tool. Međutim, it’s easy enough to calculate such a date in an event receiver. Merge those two together and we get a pattern like this:

  • Define a hidden yes/no site column on the document library labeled "DoCalcualteDueDate".
  • Ga inicijalizirati na False.
  • Na određeno vrijeme u tijeku rada (e.g. just before the "collect data" akcija), dodijeliti tu vrijednost na True.
  • ItemUpdate() event receiver looks to see if "DoCalculateDueDate" is true. Since the event receiver runs on every update, "DoCalculateDueDate" obično je lažna.
  • Kada tijek rada dodjeljuje DoCalculateDueDate na true, Događaj prijemnik izračunava odmor-Aware rok.
  • Kada se ovaj događaj prijemnik izračun, se postavlja DoCalculateDueDate zastavom netočno.

Na kraju, SPD workflow is communicated with an event receiver via the DoCalculateDueDate semaphore and we have holiday-aware due dates that are assigned at the exactly correct moment in the workflow’s life. SharePoint Designer controls when the due date is assigned but the event receiver performs the actual calculation and assignment.

</kraj>

Pretplatite se na moj blog.

Promatrano Ponašanje: Premještanje SPD radne procese unutar zbirke web-mjesta

UPDATE: I’ve been researching how to embed a SPD workflow into a site definition. Ovaj lanac MSDN forum ima neke zanimljive informacije. It’s not conclusive, ali ukazuje na put kroz džunglu.

I’m giving this post a slightly oddball "Observed Behavior" lead since I’m a little leery of drawing conclusions from it. SPD workflows are … temperamentan.

Ljudi često pitaju / pitate / fretting over moving SPD workflows from one place to another. Danas, Pratio sam ove korake i napravio ove primjedbe:

  • Sam stvorio tijek rada koristeći SharePoint Designer u mjestu povezan s biblioteci dokumenata.
  • Povezanih biblioteka dokumenata već nalazi nekoliko dokumenata.
  • Spasio sam mjesto kao predložak.
  • Kad sam spasio mjesto kao predložak, Spasio sam sadržaj, kao i.
  • I stvorio je novu stranicu u istoj zbirci web-mjesta koristeći da predložak.

U ovom trenutku, I tried to run the workflow. It promptly terminated itself with the log message, "Failed on start".

I expected this. I have low expectations when it comes to moving SPD workflows around.

Nastavio sam:

  • Otvoreno mjesto u SharePoint Designer.
  • Had a peek at the workflow. It seemed fine.
  • I clicked "Finish".
  • Trčao sam tijek rada.

Ovaj puta, Internet izrađen prekid.

I’ll add that this workflow used the "collect data from user" radnja koja je relativno složen akcija pod haubom.

I tentatively conclude that the process of "finishing" the workflow caused SPD to properly associate the SPD workflow with the new document library. I also conclude the XOML and other XML artifacts are reasonably "loose". They are not super tightly coupled to the document library.

Što to znači? Assuming it’s a reliable and reproducible process, there’s at least one rough method we can use to move them around. I don’t know if this would work if we crossed site collection boundaries or even more drastically, potpuno nove farme (e.g. dev, do stupnja da prod).

Ako ste čitajući ovo i skloni, molimo upisali komentar ili elektronička pošta mene your SharePoint Designer migration story. I’ll gladly update this posting with any insights thus offered.

</kraj>

Pretplatite se na moj blog.

Technorati Tags:

Brzo i jednostavno: Workflow samo Update Field

It’s often useful to store status information in a custom list such as an approval code which should never be directly manipulated by end users. This is a common business scenario. I have been working on a project this year that generates various status and reminder dates via SharePoint Designer workflows that then drive KPIs and generally support time-critical business processes.

Koristite vrstu sadržaja web-mjesta / stup kako bi se postigla ovaj efekt.

Stvaranje vrste sadržaja web-mjesta s stupcu statusa kao što je prikazano:

slika

Note the "Status (za Demo)" polje na dnu.

Sljedeći, click on the column name to access the column’s properties. Select "Hidden (Neće se pojaviti u oblicima)" u dijelu Stupac postavke kao što je prikazano:

slika

This removes the field from the standard edit/update forms. Međutim, to je još uvijek dostupan u pogledima, KPI, objektni model i bilo gdje drugdje da ga želite koristiti, including SPD workflow.

</kraj>

Pretplatite se na moj blog.

Nedjelja Zabavno: “Mislio sam da je trebao biti bogat grad”

Malo više od tri godine, moja supruga i ja potpisao moj sin se za ljetne aktivnosti, The Midland Park Players. This is a drama group that spends about three or four weeks preparing for a play and then showing it to the parents, friends and relatives. It’s always been done very well.

I don’t know if everyone’s child is like this, but my son is extremely reluctant to try new things. Knowing this, we signed him up for the program. We’ve found that it’s best to alert him to these kinds of things early and often. Tako, in order to overcome his natural reluctance, we told him early and did our best to make it sound like fun, itd.. Even with a multi-month advertising campaign, he still wasn’t convinced. We forced him to do, iako, and as is often the case, he had a great time.

By the time the second year rolled around, he had once again convinced himself that he didn’t want to participate. Ali, we had signed him up and on zero-day, I dropped him off one morning at the high school where they practice. When I went to pick him up after lunch, he was very excited, all smiles and announced, "The play is the Velveteen Rabbit and I want to be the Rabbit". He had spent literally months carrying on (sometimes hysterically) about how he didn’t want to have anything to do with Park Players and after the first day, he wants to be the lead role in the play. We’ve seen this pattern before.

(Much to our surprise, he did get the Rabbit role and he was amazing.)

Fast forward a few years. He’s been in Park Players three times now, so he’s something of a veteran. This summer (2008), Players starts up again. U međuvremenu, he’s finally convinced us he stvarno doesn’t want to play soccer and he never liked basketball. That left him with no extra-curricular activities for late Winter / early Spring. A client with whom I was working mentioned that his daughter was in a program called Stage Right. Stage right is a slightly more expensive version of Park Players and it’s not in my town, but adjacent to it. Perfect.

The thing to know about that town is that it’s practically another country in terms of wealth. It has a high-frequency train right to Wall Street and NYC in general. It’s just a wealthy place. One of the on-going family discussion themes is whether we should have moved to that town instead of where we live now. It’s a bigger town, its schools offer more programs for the kids, itd.. My wife grew up in that town and her parents live there, so we are "hooked in" despite not living there. I personally grew up in different circumstances in Massachusetts, so I don’t have a lot to say about this during family dinner conversation. This isn’t to say that we aren’t very happy where we live. We just know that that town is a level above our town economically.

Stage Right’s next program started too soon for us to launch our normal advertising campaign to overcome my son’s reluctance. This is when he came up with one my personal favorite arguments against doing something: "Friday nights are prime nights for sleep overs!" Stage Right was going to interfere with his weekend socials.

The day comes, we bring him there and drop him off and as with everything else, his natural love of just being alive took over and he’s been having a good time with it.

This past weekend my wife was talking to him and for the first time, I think he’s tailoring his discussions very precisely for his audience. She had asked him how Stage Right compares to Midland Park Players. He tells her that "In Park Players, we have teenagers that help us out. There aren’t any in in Stage Right. In Park Players, teenagers make all props. In Stage Right, we have to bring our own props. We have to do everything. And then he twists the knife: "I thought this was supposed to be a rich town."

All these years, I never really thought that he was hearing or understanding anything as it related to the "rich town". Međutim, it turns out he was.

</kraj>

Pretplatite se na moj blog.

Technorati Tags:

SharePoint ne daje kalendar Roll-up; Potencijalni rješenja

UPDATE: An anonymous person in the comments posts this link: http://www.atidan.com/atidan-collaboration-kit.php

Forum korisnici često postaviti pitanje ovako:

"I would like to have a calendar at the site level that is populated by events from subsite calendars. Ideally, Korisnici u podlokaciji će stvoriti kalendar događanja, and will have the option of marking them as ‘public.’ Events marked as public will dynamically appear in the shared site calendar. Thus the shared site calendar is a roll-up of all public events from all subsite calendars."

Je WSS 3.0 ili MOSS 2007, it is not possible to directly configure a "roll-up" calendar. Calendars exist on their own, neovisno o bilo kojem drugom kalendaru.

Za stvaranje roll-up kalendar, slijedite jedan od ovih staza:

  1. Use a Content Query Web Part. This is the easiest solution for MOSS users (WSS ne daje CQWP). CQWP, nažalost, does not provide a calendar view of data out of the box. It does provide enormous rendering flexibility (pogledajte ovdje za jedan primjer) ali po defaultu, shows its results in simple list format. In many cases, CQWP vjerojatno dobar izbor.
  2. A more programming-oriented solution would be to use event receivers. Implement event receivers on the subsite calendars that keep their public events in sync with the master calendar. As a given subsite calendar is modified, reach out to the master calendar and update it as needed. This option is available in both WSS 3.0 i mahovina.

There are probably other clever solutions to this problem. If you have one or know of one, molimo ostavite komentar ili elektronička pošta mene i ja ću ažurirati ovaj post.

</kraj>

Pretplatite se na moj blog.

Stvaranje web-mjesta (SPWeb) putem SharePoint Designer Workflow

This blog entry is more of an "in the realm of the possible" ulazak vs. beton info.

We have a technical design that calls for us to create a site in a site collection via a manually launched workflow process. U osnovi, users enter data into a "new customer" prilagođeni popis i onda kada su završili i potvrđene proces unosa podataka, moramo stvoriti mjesto za tog kupca.

Ja sam veliki obožavatelj i deklarativne rada, kao i slaba Visual Studio programer tijekom rada, pa sam htjela da zadovolji zahtjev pomoću SharePoint Designer.

Planiram pisati o tome podrobnije (i nadamo prisutni na skupinu korisnika ili dva u narednoj godini), ali ovdje je cjelovito rješenje:

  • Stvaranje prilagođene akcije koja se integrira sa SPD.
  • Prilagođene akcije omogućuje SPD zazivati ​​web servis i proći ga niz XML.
  • Web servis smješta red u prilagođenom popisu i stvara novu stranicu po podacima za tog novog klijenta koriste prilagođenu web definiciju.
  • Web servis zatim ažurira prilagođeni popis s nekim informacijama kao što je link na novu stranicu.

Mi smo u obzir i ostale pristupe, such as event handlers and visual studio based workflow. The SPD approach gives our end users a little more control over the process. Granted, postoji puno C # koda u ovom rješenju, ali to je zamotan u deklarativnoj rada, tako da smo dobili neke od prednosti rada, dok deklarativne spaja na web-stvaranje usluga.

All we need now is an easy tool to automatically migrate SPD workflows around as easily as we can for visual studio workflows and we’ll really be cooking with gas 🙂 I understand that some folk are out there working on this problem and I hope they have some good success with it soon.

</kraj>

Pretplatite se na moj blog.

Technorati Tags: ,