FAST Integrimi SharePoint: Kodi mostër të shfaqur të gjitha Available Views FAST

Here is some code that shows all available views from a FAST server based on the named QRServer (Procesi server me të cilën ne komunikojmë). I offer this up to give you all a taste of what it’s like to use the provided FAST API.

përdorim Sistem;
përdorim System.Collections.Generic;
përdorim System.Linq;
përdorim System.Text;
përdorim Com.FastSearch.Esp.Search;
përdorim Com.FastSearch.Esp.Search.Http;
përdorim Com.FastSearch.Esp.Search.Navigation;
përdorim Com.FastSearch.Esp.Search.Query;
përdorim Com.FastSearch.Esp.Search.Result;
përdorim Com.FastSearch.Esp.Search.View;
përdorim System.Collections.Specialized;
përdorim System.Collections;


namespace Conchango
{
    klasë EnumerateFASTViews
    {
        i pandryshueshëm pavlefshme Kryesor(varg[] args)
        {

            ISearchFactory searchFactory;

            NameValueCollection nameValueCollection = i ri 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);

            Konsol.WriteLine("Total Views: [" + searchFactory.GetSearchViewList().Numëroj + "].");

            int i = 0;

            foreach (object o  searchFactory.GetSearchViewList())
            {
                Konsol.WriteLine("View [" + i   + "]: [" + o.ToString() + "].");

            }

            Konsol.Linja leximi();

        }
    }
}

Note that I consider myself a barely competent C# programmer and I have thin skin, so don’t send any raspberries my way, especially re: the "foreach (object o in …)" construct 🙂

</fund>

Technorati Tags: ,

Abonohen në blogun tim.

Shpejtë dhe të kërkoni SharePoint integrimi i parë

Unë kam qenë me fat që të ketë një mundësi për të punuar në një FAST <–> SharePoint integration project and thought I’d continue to share my limited experience with the community.

Microsoft is in the process of purchasing FAST. I don’t know anything about the schedule except that it should be finished in the "2nd quarter" which I assume means by 06/30/08.

My project’s design, at a very high level, calls for creating a few web parts that have roughly the same look, feel and functionality as the standard MOSS search box and core results web part, 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, though it’s obvious to me that some of the FAST engineers clearly understand MS tech (or they’ve made use of contractors).

FAST:

FAST is a big monster server product (and I don’t mean that in a bad sense; MOSS is a big monster product to me as well). 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, shows results, is big on relevancy (though I don’t see how it handles social relevancy). Megjithatë, 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, as I learn more.

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.

There seems to be a web service interface as well.

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, not so sure if it’s production-ready.

That’s it for now. As I progress through the project, I’ll post more.

</fund>

Technorati Tags: , ,

Abonohen në blogun tim.

Përcaktoni Portit FAST QRServer

Në mënyrë për të komunikuar me kërkim të shpejtë përmes API e saj, ne kemi nevojë të dimë portin në të cilin po kandidon QRServer.

Kam ndjekur këto hapa për të gjetur atë:

  1. Hyni në faqen FAST admin (http://server:port/admin).
  2. Shkoni tek Vështrim i Sistemit.
  3. Locate "Search Dispatcher" dhe klikoni në ikonën tejqyrë:

    imazh

  4. Unë sukses përdoret vlera, 15100 for "Info Name" = "http":

    imazh

Shënimet:

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

2. Përdorni këtë kod të ngjashëm në vijim të ilustroj me shembull konkret një lidhje me FAST:

     ISearchFactory searchFactory;
    
        NameValueCollection nameValueCollection = i ri 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. Në qoftë se ju të vini një port wildly pasakta, ju merrni një mesazh të dobishëm gabimi:

imazh

4. Megjithatë, në qoftë se ju të vini numrin e portit të listuara në vështrimin e përgjithshëm (15102) you don’t get that helpful error message. Në vend të kësaj, më vonë, kur ju përpiqeni të hyni në ndonjë të dhënave nëpërmjet një kërkim apo referencë një pamje FAST, 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".

</fund>

Technorati Tags:

Abonohen në blogun tim.

Drejt modelet SharePoint teknik të projektimit: SharePoint Designer Workflow + Marresit Event Koktej = High potencë

Një nga modelet e reja që unë të gjeni në përpilimin e zgjidhjeve thekson SharePoint SharePoint Designer punës dhe një marrës ngjarje.

Këtu është një skenar i biznesit për ta vënë atë në kontekstin e:

  • Unë ngarkoj një dokument me një lib doc.
  • Unë kick off multi-hap workflow krijuar duke përdorur SharePoint Designer.
  • Në një moment gjatë këtij procesi, workflow assigns a task to someone (via collect data from user or assign a task).
  • 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.
  • Here’s the kicker: I want the date that drives that KPI to be holiday-aware.

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. Megjithatë, 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".
  • Initialize it to false.
  • At the appropriate time in the workflow (e.g. just before the "collect data" veprim), assign that value to True.
  • An ItemUpdate() event receiver looks to see if "DoCalculateDueDate" is true. Since the event receiver runs on every update, "DoCalculateDueDate" is normally false.
  • When workflow assigns DoCalculateDueDate to true, the event receiver calculates the holiday-aware due date.
  • When the event receiver does this calculation, it sets the DoCalculateDueDate flag to false.

Në fund, 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.

</fund>

Abonohen në blogun tim.

Sjellja vëzhguar: Moving workflows SPD Brenda një Koleksion Site

UPDATE: I’ve been researching how to embed a SPD workflow into a site definition. Ky zinxhir forum MSDN ka disa informacione interesante. It’s not conclusive, por tregon rrugën nëpër xhungël.

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 … tekanjoz.

Njerëzit janë shpesh të kërkuar / pyesin / fretting over moving SPD workflows from one place to another. Sot, Kam ndjekur këto hapa dhe bërë këto vëzhgime:

  • Kam krijuar një workflow duke përdorur SharePoint Designer në një vend të bashkangjitur në një bibliotekë dokument.
  • Biblioteka lidhur Dokumenti strehuar tashmë disa dokumente.
  • I shpëtuam faqes si një template.
  • Kur kam ruajtur faqen si një template, I shpëtuam përmbajtjen si edhe.
  • Kam krijuar një faqe të re në mbledhjen njëjtin vend se duke përdorur template.

Në këtë pikë, 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.

Kam vazhduar:

  • Hapi vend në SharePoint Designer.
  • Had a peek at the workflow. It seemed fine.
  • I clicked "Finish".
  • Unë u zhvillua rrjedhën e punës.

Këtë herë, ai ka punuar mirë.

I’ll add that this workflow used the "collect data from user" veprim i cili është një veprim relativisht komplekse nën kapuç.

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.

Çdo të thotë kjo? 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, ferma të tëra të reja (e.g. dev në skenë të stimuloj).

Nëse jeni duke e lexuar këtë dhe të prirë, ju lutem postoj një koment ose email mua your SharePoint Designer migration story. I’ll gladly update this posting with any insights thus offered.

</fund>

Abonohen në blogun tim.

Technorati Tags:

Shpejtë dhe i thjeshtë: Workflow-vetëm Field Update

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.

Use a site content type / column to achieve this effect.

Create a site content type with the status column as shown:

imazh

Note the "Status (for Demo)" field at the bottom.

Tjetër, click on the column name to access the column’s properties. Select "Hidden (Will not appear in forms)" in the Column Settings section as shown:

imazh

This removes the field from the standard edit/update forms. Megjithatë, it is still available in views, KPIs, the object model and anywhere else you want to use it, including SPD workflow.

</fund>

Abonohen në blogun tim.

E diel Funny: “Mendova se kjo ishte menduar të jetë një qytet Rich”

Pak më shumë se tre vjet më parë, gruaja ime dhe unë nënshkruar djalin tim për një aktivitet të verës, 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.

Unë nuk e di nëse fëmija e çdokujt është sikurse kjo, 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. Kështu, në mënyrë për të kapërcyer hezitimin e tij natyrore, Ne i tha atij herët dhe bëri çmos për ta bërë atë të tingëllojë si fun, etj. Even with a multi-month advertising campaign, he still wasn’t convinced. We forced him to do, megjithëse, dhe siç është shpesh rasti, he had a great time.

Me kohë të dytin vit mbështjellë rreth, he had once again convinced himself that he didn’t want to participate. Por, ne kishim nënshkruar atë dhe mbi zero-ditore, I dropped him off one morning at the high school where they practice. When I went to pick him up after lunch, ai ishte shumë i emocionuar, të gjitha buzëqesh dhe njoftoi, "The play is the Velveteen Rabbit and I want to be the Rabbit". He had spent literally months carrying on (nganjëherë hysterically) rreth asaj se si ai nuk duan të kenë asgjë të bëjë me lojtarët park dhe pas ditës së parë, he wants to be the lead role in the play. We’ve seen this pattern before.

(Pjesa më e madhe për habinë tonë, ai e bëri të marrë rolin e lepur dhe ai ishte mahnitës.)

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. Në kohë të thotë, Ai është i bindur më në fund ai na vërtet 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, shkolla e saj ofrojnë programe më shumë për fëmijët, etj. 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 kryesor netë për overs gjumit!" Stage Right was going to interfere with his weekend socials.

Vjen dita, kemi sjellë atë atje and drop atë jashtë dhe si me çdo gjë tjetër, dashuria e tij e natyrshme e të qenit gjallë vetëm mori përsipër dhe ai është të paturit e një kohë të mirë me të.

Kjo fundjavë kaluarën gruaja ime ishte duke folur për atë dhe për herë të parë, 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."

Të gjitha këto vite, I never really thought that he was hearing or understanding anything as it related to the "rich town". Megjithatë, ajo rezulton se ai ishte.

</fund>

Abonohen në blogun tim.

Technorati Tags:

SharePoint nuk siguron Calendar Roll-ups; Zgjidhje e mundshme

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

Përdoruesit Forum shpesh pyes një pyetje si kjo:

"I would like to have a calendar at the site level that is populated by events from subsite calendars. Ideally, përdoruesit në subsites do të krijojë Ngjarje Kalendari, 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."

Është WSS 3.0 ose MOSS 2007, it is not possible to directly configure a "roll-up" calendar. Calendars exist on their own, pavarur nga çdo kalendar tjetër.

Për të krijuar një kalendar roll-up, ndjekin njërën nga këto rrugë:

  1. Use a Content Query Web Part. This is the easiest solution for MOSS users (WSS nuk siguron CQWP). CQWP, për fat të keq, does not provide a calendar view of data out of the box. It does provide enormous rendering flexibility (shoh këtu për një shembull) por nga default, shows its results in simple list format. In many cases, CQWP ndoshta një zgjedhje e mirë.
  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 dhe Moss.

There are probably other clever solutions to this problem. If you have one or know of one, ju lutemi të lënë një koment, ose email mua dhe unë do update këtë post.

</fund>

Technorati Tags: ,

Abonohen në blogun tim.

Krijo Sites (SPWeb) nëpërmjet SharePoint Designer Workflow

This blog entry is more of an "in the realm of the possible" Hyrja vs. info konkrete.

We have a technical design that calls for us to create a site in a site collection via a manually launched workflow process. Në parim, users enter data into a "new customer" custom list and then when they have finished and validated the data entry process, we need to create a site for that customer.

I’m both a big fan of declarative workflow as well as a weak visual studio workflow programmer, so I wanted to meet the requirement using SharePoint Designer.

I plan to write about this in greater detail (and hopefully present to a user group or two in the coming year), but here’s the overall solution:

  • Create a custom action that integrates with SPD.
  • The custom action allows SPD to invoke a web service and pass it a string of XML.
  • Web service locates the row in the custom list and creates a new site as per the data for that new client using a custom site definition.
  • Web service then updates the custom list with some information such as a link to the new site.

We considered other approaches, such as event handlers and visual studio based workflow. The SPD approach gives our end users a little more control over the process. Granted, there’s a lot of C# code in this solution, but it’s wrapped inside a declarative workflow, so we get some of the benefits of declarative workflow while hooking into the site-creation service.

E tëra që na duhet tani është një mjet i thjeshtë për të migruar automatikisht rrjedhat e punës SPD përreth me aq lehtësisht sa mundemi për rrjedhat e punës në studio vizuale dhe me të vërtetë do të gatuajmë me gaz ... Unë e kuptoj që disa njerëz atje janë duke punuar për këtë problem dhe shpresoj që ata të kenë disa suksese të mira së shpejti.

</fund>

Abonohen në blogun tim.

Technorati Tags: ,