ყოველთვიური არქივი: ოქტომბერი 2009

In Praise of jQuery გაძლიერებული ძებნა-As-You-Type (by: იან Tielens)

მე მომუშავე BPOS დემო (მალე შესაძლებელი up on Microsoft-ის საიტი) and I wanted to add a little pizzazz. I’ve known about იანვარი Tielen-ს ძალისხმევა საკმაოდ ხოლო და ვფიქრობდი, რომ ეს იქნებოდა დიდი ტექნიკის დამატებას დემო, so I did. You can read about it here: http://weblogs.asp.net/jan/archive/2009/07/02/sharepoint-search-as-you-type-with-jquery.aspx. It’s so simple to use it should probably be a crime (და შესაძლოა სადღაც).

დავამატო მხოლოდ ორი პუნქტით, რაც მან უკვე შექმნილი / წერდა:

  1. ეს იმას, სინამდვილეში, მუშაობა BPOS (SharePoint ხაზზე) გარემოს.
  2. იმისათვის, რომ ეს მუშაობა გარეშე შემაშფოთებელი popup გაგზავნა პრეფიქსი მინიშნება jQuery ბიბლიოთეკა https ნაცვლად http, , როგორც in:
<დამწერლობის ივერიის"text/javascript" src ="https://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></დამწერლობის>

Jan points out that you should probably move the library itself to your site. Feeling a little lazy today, I decided to blog about it instead 🙂

</ბოლო>

ეს არის კიდევ ერთი პოსტი ჩემს მიმდინარე სერია , თუ როგორ გამოიყენოთ jQuery ერთად SharePoint.
თუ გსურთ მეტი jQuery, მე მაღალ რეკომენდაციას: jQuery მოქმედებაში by დათვი Bibeault და Yehuda Katz.

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

პროგრამები Tags:

SharePoint მაღაზია ურთიერთობა ხუთშაბათი 10/29 ზე 12:30 PM EDT

მომდევნო SharePoint მაღაზია ურთიერთობა ხდება ამ ხუთშაბათს, 12:30PM EDT.

ჩვენ აღებული ორი კვირის off (გამო SharePoint კონფერენცია გასულ კვირას) და შედეგად, ჩვენ გვაქვს მთელი რიგი კითხვების მდგომ, not to mention all kinds of cool stuff to talk about regarding SharePoint 2010. All of the panel members attended SPC, ასე რომ მოუტანს თქვენს SP 2010 შეკითხვები ზარი ან ელ მათ questions@sharepointshoptalk.com.

გარდა დიდი ნაწილის მოწოდება გათვალისწინებულია გაიგო შესახებ რამდენიმე SP 2010 სიკეთე, ჩვენ ასევე განიხილავენ:

  • რატომ SharePoint გვიჩვენებს სხვადასხვა ნავიგაცია პარამეტრების ქვეშ საიტი პარამეტრების (ამ განსხვავდება საფუძველზე თვისებები და საიტი კონფიგურაციის)
  • შეცვლა versions.aspx - პრობლემები, სირთულეები ამით (არ მიკვირს 🙂 ).
  • Embedding კინო შევიდა საიტზე, როდესაც წყაროს დამოწმებული.
  • გამოყენება stsadm მართოს ხე.

დარეგისტრირება: https://www.livemeeting.com/lrs/8000043750/Registration.aspx?pageName=p663256djrrflfdw

როგორც ყოველთვის, გაგზავნის რაიმე შეკითხვა ან განხილვის თემა უნდა questions@sharepointshoptalk.com, მომაწოდეთ პირდაპირ ან twitter to @ pagalvin.

იმედი მაქვს თქვენ იქ!

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

სწრაფი Hit: წაკითხვის InfoPath XML პირდაპირ SPListItem in SharePoint

I’m been working on a project where I need to extract attachments from an InfoPath form. There are some good resources for parsing InfoPath forms (რომლებიც მხოლოდ XML ფაილი, ამიტომ რეალურად საკმაოდ მარტივია).

მიუხედავად იმისა, რომ მე მშენებლობის პროექტი, I started by downloading an InfoPath form and saving it to my local hard drive. My c# code was reading directly from that instance. თუმცა, the InfoPath forms are really living inside a SharePoint forms library. I did a little half hearted searching to find out how to read it directly from the library and almost gave up, in which case I would have saved the form to a local temp directory and read it from there. თუმცა, there’s no need to go through those hoops as you can read it directly from the library. This little snippet shows how:

/// კლასი განმარტება პერსონალი აქ, მათ შორის:
შეტყობინების SPFile mySharePointFile; /* ნაწილი SPList */
// გაძლიერებული კოდი მიდის აქ და შიგნით მეთოდი კლასი გვაქვს:
XmlTextReader textReader;
textReader = ახალი XmlTextReader(mySharePointFile.OpenBinaryStream());

textReader.WhitespaceHandling = WhitespaceHandling.არა;

textReader.Read();

// თუ კვანძის აქვს მნიშვნელობა

ხოლო (textReader.Read())
{

… and so on and so forth …

ისინი გასაღები ცოტა ზემოთ არის, რომ ჩვენ შეგვიძლია წაიკითხა InfoPath პირდაპირ მეშვეობით OpenBinaryStream() method call on the SPFile as a parameter to the constructor on XmlTextReader. It works great.

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

პროგრამები Tags:

სწრაფი და მარტივი: წერილის გაგზავნა გამოყენება Gmail SMTP სერვერზე. NET C #

ეს არ არის ზუსტად ახალი თემის, მაგრამ როცა საჭირო ამის გაკეთება, I found a lot of “why won’t this work for me” and not too many direct answers. I hope someone finds this useful.

შემდეგ ცოტა კოდს ელ გამოყენებით საკუთარი gmail ანგარიშის ამის გაკეთება, მათ შორის attachments:

გამოყენებით System.Net.Mail;
გამოყენებით System.Net;

NetworkCredential loginInfo = ახალი NetworkCredential("[ჩემი Gmail ID]", "[ჩემი Gmail პაროლი]");
MailMessage msg = ახალი MailMessage();
msg.From = ახალი MailAddress("[M Gmail Id]@ Gmail.com");
msg.To.Add(ახალი MailAddress("paul.galvin@arcovis.com"));
msg.Subject = "ტესტი InfoPath dev სათაური";
msg.Body = "<html><სხეულის><ძლიერი>მკაცრი გზავნილი.</ძლიერი></სხეულის></html>";
msg.IsBodyHtml = ნამდვილი;

foreach (სიმებიანი aFile in NIPFD.GetAttachmentNamesAndLocations())
{
    msg.Attachments.Add(ახალი დანართი(aFile));
} // დამატება attachments.

SmtpClient კლიენტს = ახალი SmtpClient("smtp.gmail.com");
client.EnableSsl = ნამდვილი;
client.UseDefaultCredentials = ყალბი;
client.Credentials = loginInfo;
client.Port = 587;
client.EnableSsl = ნამდვილი;
client.Send(msg);

რამდენიმე საკვანძო bits, რომ შეაფერხა me ქვემოთ და სხვა შენიშვნები / აღნიშნავს:

  • პირველი ხაზი, რომელიც ქმნის loginInfo ობიექტი უნდა გამოიყენოს gmail ID წაართვეს "@ Gmail.com". ასე რომ,, თუ ჩემი gmail ელ ფოსტის მისამართი არის "Sharepoint@gmail.com"და ჩემი არის" xyzzy "მაშინ ხაზი გამოიყურება ასე:

NetworkCredential loginInfo = ახალი NetworkCredential("SharePoint", "xyzzy");

  • ჩემი gmail ანგარიშზე შეიქმნა გამოიყენოთ SSL და რომ არ იყო პრობლემა.
  • არსებობს რამდენიმე ურთიერთგამომრიცხავი ინფორმაცია არსებობს, თუ რა პორტს. მე პორტი 587 და მუშაობდა ჯარიმა ჩემთვის.
  • ჩემს შემთხვევაში, მე ასევე საჭირო გააგზავნოთ attachments. ეს NIPFD ობიექტს გააჩნია მეთოდი, რომ იცის, სადაც ჩემი დანართები. ეს დაბრუნების სრულად გზა (e.g. "გ:\temp attachment1.jpg ". ჩემი ტესტი, მე მქონდა ორი attachments და ორივე მათგანი მუშაობდა ჯარიმა.

მე ვიზუალური სტუდიაში 2008 დაწერა ეს კოდი.

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

პროგრამები Tags: ,,,

SharePoint კონფერენცია 2009 - აიღეთ თქვენი რეალური დრო დაუმუშავებელი მონაცემების Twitter

ვიმედოვნებ, რომ თითქმის ყველამ იცის ეს მაინც, but I thought I’d toss out a quick note that there’s a tremendous amount of very interesting information available via twitter. The hash tag #SPC09 seems to be the most popular. Like always, არსებობს უამრავი სისულელეებისთვის და "" ხუმრობები, მაგრამ, თუ შეგიძლიათ წარსულში, შეამოწმეთ იგი out. I do my best to respond to comments or questions directed to me and I know that a lot of others do as well, ასე რომ ეს არ არის მხოლოდ ერთი გზა, ინფორმაციის გაცვლის.

New sessions start in just under two hours and continue up until about 3pm EDT this Thursday. It will start to pick up then.

შეამოწმეთ twitter წყაროს: http://twitter.com/#search?q=%23spc09

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

პროგრამები Tags:

პროგრამულად მოპოვების მიმაგრებული მდებარეობა InfoPath ფორმები (მათ შორის მათი სახელები!)

I have an expense entry solution for a client that leverages InfoPath and workflow. At one point during the approval process, მე უნდა წარმოშვას ელ რომელსაც აქვს ყველა ის კარგი InfoPath მონაცემები ან როგორც attachments თავს ისე, რომ (შვებით) ვინმეს შეუძლია, რომ მონაცემები და ხელით ხელახალი გასაღები იგი Oracle მონაცემთა ბაზის განაცხადის.

It’s not very difficult to get at or parse the InfoPath form. I didn’t know how to handle the attachments, თუმცა. After an hour or two of poking around the Internets (მარადისობა!) ი ამ მუხლის: http://support.microsoft.com/kb/892730

It provide some handy code to extract the attachment from a node in the form. (თქვენ ჯერ კიდევ გვჭირდება, კვანძის და ყველა, რომ, მაგრამ ეს მხოლოდ XML parsing).

მე ვიცი, რომ დანართი არის base64-კოდირებით და მე თავდაპირველად დაიწია გზა უბრალოდ მოპოვების base64 მონაცემები, decoding it and saving it. თუმცა, მე სწრაფად მიხვდა, მე არ ვიცი როგორ უნდა ფაილის სახელი თავისთავად, სანამ მივხვდი, აღნიშნული მუხლის.

მე რეალურად აღმოჩნდა, რომ საკმაოდ ადრეულ, მაგრამ გადაიდო თავისი გაყოფილი პიროვნება. ერთის მხრივ, the article *says* it’s good for InfoPath 2007. თუმცა, კოდი და დავალება ყველაფერი ვიზუალური სტუდია 2003 და მითითება InfoPath 2003.

ქვედა ხაზი, კოდი, რომელიც სტატიაში მოწოდებული კარგად მუშაობს ჩემთვის (ჯერჯერობით). I can get my InfoPath form, შემიძლია გარჩევის ეს, I can find and decode the attachment and I know its name. What more can one ask of one’s life?

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

პროგრამები Tags: ,,

თუ თქვენ აწუხებს, რომ თქვენი SharePoint გარემო შეიძლება tad არაჯანსაღი, ნება მიბოძეთ დაგეხმაროთ დაფიქსირება, რომ ერთად ჯანმრთელობის გამშვები.

SharePoint მაღაზია ურთიერთობა Recap for 10-08-2009

დღევანდელი SharePoint მაღაზია ურთიერთობა დაფარული ჩვეულ საკითხების ფართო სპექტრი:

  • We discussed the issues around opening up parts of a SharePoint site collection to your trading partners. It’s not the most complicated thing in the world, მაგრამ როდესაც თქვენ დავიწყოთ საუბარი ხმამაღლა, you realize there are a lot of small individual things that need to be done to do this correctly. You have to consider the firewall, ლიცენზირების (თქვენი ინტრანეტით SharePoint ლიცენზია არ შეიძლება იყოს, და ალბათ არ იქნება, საკმარისი), SharePoint კონფიგურაციის (AAM, გაგრძელების ვებ განაცხადების ზონებში, ალბათ არ HTTPS საშუალება მისცა), და ა.შ.. If anyone has a checklist of what to do and the sequence, I’d love to see it in comments. This question wins the “Most Discussed Question” aware of the year (ჯერჯერობით).
  • I got to ask a question about the image library functionality that generates those thumb nail images. I speculated that an event receiver on the image library is generating the thumb nail. I’m probably way off base, but it does seem like there’s an entirely separate image on the web server for the thumb nail itself. Vamshi, SharePoint მაღაზია Talk რეგულარული, აღნიშნავს ამ დღიურში შესვლის: http://pathtosharepoint.wordpress.com/2009/08/23/picture-libraries-take-advantage-of-web-friendly-formats/. That’s a pretty interesting post about images in SharePoint if you’re interested in it.
  • ჩვენ განვიხილეთ საბაჟო შესწორება ფორმები (შექმნათ მეშვეობით SPD) and the fact that you lose the attachment functionality when you do that. Laura Rogers has blogged on that subject here: http://sharepoint911.com/blogs/laura/archive/2009/09/10/fix-for-the-custom-form-attachments-issue.aspx

ამ კვირაში, ჩვენ გააცნო ახალი ფუნქცია, სადაც ჩვენ დაახლოებით 10 minutes demonstrating an interesting tip/trick in a SharePoint environment. ამ კვირაში, ვაჩვენეთ, თუ როგორ უნდა დასძინა შინაარსის რედაქტორი ვებ ნაწილი (და რეალურად ნებისმიერი ვებ ნაწილი) to a newitem.aspx page. ამ შემთხვევაში, the objective was to show some extensive online help for that newitem.aspx page. This is also one of the usual starting points for integrating jQuery into your environment. მომავალ კვირას, we do plan to show a jQuery tip/trick. იმედი მაქვს თქვენ იქ.

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

SharePoint მაღაზია ურთიერთობა 10/08/08 ზე 12:30 PM EDT

ჩვენ მასპინძლობს მომავალ კვირაში ერთხელ SharePoint მაღაზია ურთიერთობა სხდომა ხვალ, 12:30 PM EDT.

ეს არის ღია კითხვა&A and general kibitzing session on all topics SharePoint related.

თქვენ სხვადასხვა recaps წინასწარი სხდომები აქ მისაღებად გრძნობა, თუ რას ვაკეთებთ, ამ ზარების აქ: http://paulgalvin.spaces.live.com/?_c11_BlogPart_BlogPart=blogview&_c=BlogPart&partqs=cat%3dPublic%2520Speaking

რეგისტრაციის შექმნილია და მზად უფლება აქ: https://www.livemeeting.com/lrs/8000043750/Registration.aspx?pageName=0z40kg9nb0t0842f

Twitter თქვენი შეკითხვები me, @ Pagalvin.

ელექტრონული მათ questions@sharepointshoptalk.com or just show up on the line and ask them out loud.

იმედი მაქვს, თქვენ მაშინ!

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

ბლოგზე თუ არა ბლოგი - ეს არის შეკითხვა (ბლოგის შესახებ)

შენიშვნა: ეს იყო თავდაპირველად გამოქვეყნდა www.endusersharepoint.com.

A few weeks ago I had the chance to speak at SharePoint Saturday in New York. კიდევ ერთხელ, a tremendous event. ამჯერად, I spoke about “learning SharePoint” – a very broad topic. During the presentation (რომელიც შეგიძლიათ მიიღოთ აქ), ვსაუბრობდი სხვადასხვა ტექნიკის "სასწავლო" SharePoint, მათ შორის პერსონალის მსგავსი წიგნი სწავლისა, საკლასო ოთახი ტრენინგი, შექმნას საკუთარი VM და რაც მთავარია (ჩემთვის), community participation. One way to participate in the SharePoint community is via blogging. Someone asked me about blogging in particular and asked my opinion on a few concerns he had that I’ve heard others mention before. It’s been itching at the back of my head for a few weeks so in my usual fashion, მე scratching, რომ ქავილი მიერ ბლოგინგი შესახებ.

ზოგიერთი ადამიანი ალბათ გგონია იმდენი ხარისხი ბლოგერები იქ სცენაზე დღეს, რომ ამდენი ხარისხი წაკითხვა მასალა დაიწერა, რომ გაგებით, there’s nothing new to write about. ან, the “new” thing is so narrowly focused that it’s not going to be interesting to anyone. I don’t agree with those sentiments or the underlying assumption about them.

დამწყებთათვის, თუ თქვენ ბლოგინგი იმიტომ რომ ნაწილი თქვენი პერსონალური მცდელობა სასწავლო SharePoint კარგად, it’s really irrelevant if someone has written on your topic or not. One of the drivers behind community participation, თუ არა ეს პიროვნული სწავლის ან არ, არის, რომ თქვენ უნდა სწორად. No one wants to put up some weak blog entry and look silly in front of the world. In the course of getting it right, თქვენ აპირებს ვფიქრობ საკითხი უფრო ყურადღებით, და ა.შ.. Thus, თქვენ ფიქრი, სწავლობს და იმის გათვალისწინებით, ამ თემას ყველა სახის კუთხეების, მარცხნიდან, მდე შემცირდება, შიგნით და გარეთ (ან, როგორც მინიმუმ უნდა). That’s a very valuable exercise. სინამდვილეში, it’s almost beside the point of pushing the “post” button by the time you finish writing it since you’ve already derived much of the benefit by now. რა თქმა უნდა, თქვენ მინდა დააყენებს პოსტი ღილაკს მაინც სხვადასხვა მიზეზების გამო, but I digress. The bottom line is that blogging is a valuable learning exercise in and of itself, პერიოდი.

I also reject the “it’s already been done” argument. So what if it was? The terrible consequence is that people who are looking up your topic via bing will now find two or five or a dozen articles. Who cares? I always prefer to find several articles on the same topic when I go searching the tubes for stuff. Different points of view, სხვადასხვა წერის სტილი, different approaches to the same problem – they all help me understand what I need. In my opinion, საზოგადოება არსად ახლოს მიაღწია დამუშავება წერტილი კარგი ხარისხის წაკითხვა სტატია ნებისმიერ თემაზე SharePoint მსოფლიოში.

ასე რომ,, დღიური მოშორებით! You won’t hear me complaining about it. I guarantee it 🙂

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

პროგრამები Tags: ,

ნუ Bull in China მაღაზია

მოკლე ისტორია SharePoint (მდებარეობა ნათესავი დებიუტანტი თვალითაც)

შენიშვნა: ეს სტატია თავდაპირველად გამოქვეყნდა www.endusersharepoint.com. I forgot to post it to my own blog 🙂

SharePoint პროგრესს მიაღწია დიდი, რადგან მისი დღეებში, როგორც ერთგვარი ინკუბაციის ტექნოლოგია ზე Microsoft –ეს ვითარდებოდა თითქმის როგორც საშინელებათა ფილმი, სადაც შეშლილი მეცნიერის შექმნის ხდება ცხოვრებაში საკუთარი, breaking free of its creator’s expectations and rules. The technical evolution is obvious – the WSS 3.0 ობიექტის მოდელი არის მდიდარი და უფრო რთული, ვიდრე WSS 2.0, which was itself an improvement over earlier versions. The next version will no doubt show tremendous improvement over 3.0. From an End User’s perspective, თუმცა, SharePoint ევოლუციის კიდევ უფრო მნიშვნელოვანი.

In დღეებში, SharePoint didn’t offer much to End Users. They would have their usual functionality requirements, work with IT to define them well and implement a solution. IT would use SharePoint to solve the problem. The product wasn’t very accessible to End Users. I’ve thought threw a few analogies, but I decided to stick Venn Diagrams to show what I mean. When Microsoft first released SharePoint to the world as a commercial offering, ეს მოჰყვა შედარებით ტრადიციული ნიმუში საბოლოო მომხმარებლის <-> IT relationship. A lot of End Users, კომუნიკაციის და სამუშაო ძალიან მცირე რაოდენობის ხალხს სიტყვით გადაწყვეტილებები მოგვარებას ბიზნესის პრობლემები:

image

საერთო პრობლემა domain რისთვისაც SharePoint არის შესაფერისი მიწოდება პლატფორმა არის პატარა (especially compared to today’s SharePoint. End Users and IT worked in a more classic arrangement with IT: განსაზღვრავს მოთხოვნებს IT, დაველოდოთ მას თავის სიტყვას იტყვიან უკან ფარდა და მიიღოს მიწოდების საბოლოო პროდუქტი.

როგორც SharePoint განვითარდა, რათა 2.0 მსოფლიოში (WSS 2.0 და SharePoint Portal Server), several things happened. პირველი, the “problem domain” increased in size. By problem domain, I mean the kinds of business problems for which SharePoint could be a viable solution. მაგალითად, თქვენ არ მგონია, ძალიან ძნელი შესახებ განხორციელების სერიოზული ძებნის გადაწყვეტა SharePoint გარემო, სანამ SPS (და მაშინაც, ეს არ იყო როგორც ეს საჭირო იქნება). ამავე დროს, ბოლო მომხმარებლებს არ უპრეცედენტო შესაძლებლობებს არა მხოლოდ განსაზღვრავს, but also implement their own solutions with little or no IT support.

The 3.0 პლატფორმა (WSS და MOSS) maintained and increased that momentum. The problem domain is enormous as compared to the 2.0 პლატფორმა. Virtually every department in a company, დაწყებული წარმოება ჯანმრთელობა და უსაფრთხოება განყოფილებების მარკეტინგი, გაყიდვიდან ხარისხის კონტროლი - ისინი შეგიძლიათ კარგი გამოყენების SharePoint (და ეს არ არის საქმის mashing მრგვალი peg შევიდა კვადრატული ხვრელი). ამავე დროს, the platform empowers even more End Users to implement their own business solutions. I try to capture that with this diagram:

image

This has proven to be both a potent and frustrating mixture. The 3.0 platform turns previously stable roles on their heads. Suddenly, ბოლოს წევრებს არიან ეფექტურად მოსამართლემ, ჟიურის და executioner ბიზნეს ანალიტიკოსი, application architect and developer for their own business solutions. This gets to the heart of the problem I’m writing about. But before I dive into that, განვიხილოთ სპილო ოთახში.

Peering შევიდა Crystal Ball

როგორ იქნება SharePoint 2010 იმოქმედებს ეს ნიმუში? Will it be incremental or revolutionary? Will more, ნაკლები ან ამდენივე ბოლოს წევრებს აღმოჩნდებიან უფლება აშენება გადაწყვეტილებები SharePoint 2010? Will SharePoint 2010’s problem domain expand even further or will it just refine and streamline what it already offers in WSS 3.0 / Moss?

აქ არის საკმარისი ინფორმაცია "იქ" საიმედოდ ვთქვა, რომ ზოგადად პასუხი:

  • The problem domain is going to dramatically expand.
  • ბოლოს წევრებს ნახავთ თავად კიდევ უფრო გააძლიერა, ვიდრე ადრე.

The Venn Diagram would be larger than this page and cause some IT Pros and CxO’s to reach for their Pepto.

I believe it’s going to be a tremendous opportunity for companies to do some truly transformational things.

არ Bulls ჩემი China მაღაზია!

ეს ჟღერს დიდი, მაგრამ ჩემი აზრით, როგორც SharePoint კონსულტანტი და აყენებს თავს შევიდა ფეხსაცმელი IT მენეჯერი, I see this vision. I own a China shop with beautiful plates, ბროლის, და ა.შ. (ჩემი SharePoint გარემო). I’ve rented a space, I’ve purchased my inventory and laid it all out the way I like it. I’m not quite ready to open, მაგრამ მოლოდინში, I look at the door to see if my customers are lining up and I notice an actual bull out there. I look more closely and I actually see ორი bulls and even a wolf. Then I notice that there are some sheep. Sheep are ასე ცუდი, თუმცა, რამდენად შესაძლოა, გადაცმული მგლები? I don’t want bulls in my china shop!

იგი იღებს უარესი! When I rented the space, I couldn’t believe how nice it was. Wide and open, შესანიშნავი კეთილმოწყობა, very reasonable price. თუმცა, ახლა მე ხვდებიან, რომ ღია ფართები და დიდი კარი უბრალოდ კარგად ზომის bull მოვა მოხეტიალე და ქმნის ნარჩენების ჩემს ჩინეთიდან.

მე უბიძგებს ამ ანალოგია ძალიან შორს, რა თქმა უნდა. End Users are not bulls (მათი უმრავლესობა, მაინც) და საინფორმაციო ტექნოლოგიების განყოფილებებს არ (ან აუცილებლად უნდა) view their user community with that kind of suspicion. თუმცა, არსებობს ასეთი სრულყოფილი შეჯახება მიმდინარეობს უკვე 3.0 platform that I expect will only get worse in SP 2010. SharePoint already empowers and encourages End Users to define and implement their own solutions.

ეს დიდი და ყველა, მაგრამ ფაქტია, რომ ეს ჯერ კიდევ ძალიან ტექნიკური პროდუქტი და კვლავ მოუწოდებს სახის ენერგიული ბიზნეს მოთხოვნა ანალიზი, design and general planning and management that technical projects require to be successful. These are not the kind of skills that a lot of End Users have in their bag of tricks, especially when the focus is on a technical product like SharePoint.

I’ve given this a lot of thought over the last year or so and I don’t see any easy answer. It really boils down to education and training. I think that SP 2010 აპირებს შეცვალოს თამაში ცოტა და ეს აპირებს ჩაივლიდა განსხვავებულად და ნელი მოძრაობის კომპანიები გააფართოვოს მათი SP 2010 გადაწყვეტილებები მეტი 2010 and beyond. In order to succeed, End Users will need to transform themselves and get a little IT religion. They’ll need to learn a little bit about proper requirements
analysis. They will need some design documentation that clearly identifies business process workflow, for instance. They need to understand fundamental concepts like CRUD (შექმნა, განახლება და წაშლა), განვითარება / ტესტი / qa / prod გარემოში და როგორ გამოვიყენოთ რომ ინფრასტრუქტურის სწორად განათავსოს გადაწყვეტილებები ცხოვრობს ლამაზი დიდი ხანია და წარმართონ (არ დაარღვიოს) საპასუხოდ ცვლილებების ორგანიზაცია.

უახლოეს მომავალში, ვაპირებ ცდილობენ და უზრუნველყოფს ზოგიერთი საკუთარი ახალი იდეები, ისევე როგორც ბმულებს დიდი მუშაობის მრავალი სხვა ავტორები (წლის www.endusersharepoint.com და ნებისმიერ სხვა ადგილას) so that interested End Users can learn that old time IT religion. Keep tuned.

</ბოლო>

გამოწერა ჩემი დღიური.

გამომყვეს Twitter-ზე http://www.twitter.com/pagalvin

პროგრამები Tags: ,