ყოველთვიური არქივი: ივლისი 2007

Moss: Iterating მეშვეობით საბაჟო სიები და დაბრუნების გაფილტრული მონაცემების to InfoPath

ბიზნეს სცენარი:

უზრუნველყოფა მეთოდი, რომელიც საშუალებას იძლევა სტუმრების შემოსვლა ზუსტი შეძენა requisitions სწრაფად.

ბიზნესის პრობლემა:

კლიენტს არ ბიზნეს რამდენიმე ასეული მოვაჭრეებს.

Vendors are "type" კონკრეტული. ეს ნიშნავს, რომ გამყიდველი ყიდის კომპიუტერული ტექნიკის (e.g. Dell) ან საკანცელარიო აქსესუარები (e.g. Staples).

How do we enable end users who create purchase requisitions select a valid vendor?

ბიზნეს გადაწყვეტილება:

Differentiate vendors in the system via "type".

Enable users to select the "type" of product and then provide a filtered set of appropriate vendors.

ტექნიკური გადაწყვეტა:

An InfoPath form has been designed that enables users to enter online purchase requisitions.

Two InfoPath selection lists control vendor selection. პირველი, the user selects a "purchase type". This limits a second selection list to contain only vendors that sell for that purchase type. This is a classic cascading drop-down.

Vendors are stored in a MOSS custom list with custom columns for vendor attributes such as name, address and especially "type".

Implement a web service for an InfoPath client to consume that iterates through the custom vendor list, returning only vendors matching a supplied "type".

Invoke the web service via the InfoPath form.

Lessons Learned:

  • პირველი, it seems necessary to go this route. I would have preferred to do the filtering entirely within InfoPath and not create any web service functionality here. თუმცა, forms server does not provide the required filtering capability. We can put a rule onto a the "type" selection list in the form to sort of re-open the vendor query, but we can’t get it to work properly. ამიტომ, it was necessary to implement the web service.
  • This is a classic "cascading selection list" problem in the InfoPath forms server world and there are many good examples out there that explain how to solve this.
  • A blank value for a column in the vendor list does not return an empty string when referenced like this: initItem["Vendor Name"]. ამის ნაცვლად, it returns a null.

Some other Notes:

  • I return an array[] of vendors because I had some difficulty returning an ArrayList. InfoPath was complaining about it and I didn’t have the time or the inclination to fight over it. ეს, რა თქმა უნდა, puts an artificial limit on the total number of vendors. It also compelled me to implement a trim() method on the array because I hate the idea of returning back 100’s of null vendors. InfoPath doesn’t care, but it nagged at me. (ისევ, this was easier than fighting InfoPath over ArrayLists).
  • I implemented a GetSpecificVendorByName() function as well, which may be instructive.

The code:

გამოყენებით სისტემები;
გამოყენებით System.Web;
გამოყენებით System.Web.Services;
გამოყენებით System.Web.Services.Protocols;
გამოყენებით Microsoft.SharePoint;
გამოყენებით System.Configuration;

/// <შემაჯამებელი>
///
Vendor Service: Provides vendor related services which today are consumed by an infopath client form.
///
/// History:
/// ——–
/// 07/24/07: Initial coding, Paul J. Gavin of Conchango.
///
/// </შემაჯამებელი>
[WebService(Namespace = "http://www.conchango.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
საჯარო კლასი VendorService : System.Web.Services.WebService
{

/// <შემაჯამებელი>
/// Represents a vendor from a custom sharepoint list maintained by MSUSA.
/// </შემაჯამებელი>
საჯარო კლასი Vendor
{
საჯარო Vendor() { }

საჯარო Vendor(Spit initItem)
{
თუ (! (initItem["Vendor Name"] == ნულოვანი)) VendorName = initItem["Vendor Name"].ToString();
თუ (! (initItem["Address 1"] == ნულოვანი)) VendorAddress1 = initItem["Address 1"].ToString();
თუ (! (initItem["Address 2"] == ნულოვანი)) VendorAddress2 = initItem["Address 2"].ToString();
თუ (! (initItem["City"] == ნულოვანი)) VendorCity = initItem["City"].ToString();
თუ (! (initItem["VendorPhone"] == ნულოვანი)) VendorPhone = initItem["VendorPhone"].ToString();
თუ (! (initItem["PurchaseType"] == ნულოვანი)) VendorType = initItem["PurchaseType"].ToString();
თუ (! (initItem["State"] == ნულოვანი)) VendorState = initItem["State"].ToString();
თუ (! (initItem["Zip"] == ნულოვანი)) VendorZip = initItem["Zip"].ToString();
თუ (!(initItem["Fax"] == ნულოვანი)) VendorFax = initItem["Fax"].ToString();
თუ (!(initItem["SalesRepName"] == ნულოვანი)) VendorSalesRepName = initItem["SalesRepName"].ToString();

VendorItemId = initItem.ID; // Unique ID maintained via MOSS.
}

საჯარო int VendorItemId;
საჯარო სიმებიანი VendorName;
საჯარო სიმებიანი VendorAddress1;
საჯარო სიმებიანი VendorAddress2;
საჯარო სიმებიანი VendorCity;
საჯარო სიმებიანი VendorState;
საჯარო სიმებიანი VendorZip;
საჯარო სიმებიანი VendorPhone;
საჯარო სიმებიანი VendorType;
საჯარო სიმებიანი VendorSalesRepName;
საჯარო სიმებიანი VendorFax;
}

საჯარო VendorService () {

//Uncomment the following line if using designed components
//InitializeComponent();
}

შეტყობინების Vendor[] GenerateTestVendors()
{
Vendor[] resultList;
resultList = ახალი Vendor[100];

Vendor v;
v = ახალი Vendor();
v.VendorAddress1 = "v1_address1";
v.VendorAddress2 = "v1_address2";
v.VendorCity = "v1_city";
v.VendorName = "v1_vendorname";
v.VendorPhone = "v1_vendorphone";
v.VendorState = "v1_st";
v.VendorType = "v1_type";
v.VendorZip = "v1_zip";

resultList[0] = v;

v = ახალი Vendor();

v.VendorAddress1 = "v2_address1";
v.VendorAddress2 = "v2_address2";
v.VendorCity = "v2_city";
v.VendorName = "v2_vendorname";
v.VendorPhone = "v2_vendorphone";
v.VendorState = "v2_st";
v.VendorType = "v2_type";
v.VendorZip = "v2_zip";

resultList[1] = v;

v = ახალი Vendor();
v.VendorAddress1 = "v3_address1";
v.VendorAddress2 = "v3_address2";
v.VendorCity = "v3_city";
v.VendorName = "v3_vendorname";
v.VendorPhone = "v3_vendorphone";
v.VendorState = "v3_st";
v.VendorType = "v3_type";
v.VendorZip = "v3_zip";

resultList[2] = v;

დაბრუნდნენ resultList;

}

[WebMethod]
საჯარო Vendor GetSpecificVendorById(int vendorId)
{
სიმებიანი SpVendorSiteName; // Name of the actual MOSS site that hosts the vendor custom list.
სიმებიანი SpVendorListName; // Name of the actual MOSS list containing vendors.

SpVendorSiteName = ConfigurationSettings.AppSettings["VendorListHostingSite"].ToString();
SpVendorListName = ConfigurationSettings.AppSettings["VendorList"].ToString();

გამოყენებით (SPSite site = ახალი SPSite(SpVendorSiteName))
{

გამოყენებით (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpVendorListName];

Spit specificItem = currentList.Items[vendorId];

დაბრუნდნენ ახალი Vendor(specificItem);

} // using spweb web = site.openweb()
} // using spsite site = new spsite("http://localhost/mizuho")

}

[WebMethod]
// Assumes that the vendor name is unique, from a business perspective
საჯარო Vendor GetSpecificVendorByVendorName(სიმებიანი vendorName)
{
სიმებიანი SpVendorSiteName; // Name of the actual MOSS site that hosts the vendor custom list.
სიმებიანი SpVendorListName; // Name of the actual MOSS list containing vendors.

SpVendorSiteName = ConfigurationSettings.AppSettings["VendorListHostingSite"].ToString();
SpVendorListName = ConfigurationSettings.AppSettings["VendorList"].ToString();

გამოყენებით (SPSite site = ახალი SPSite(SpVendorSiteName))
{
გამოყენებით (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpVendorListName];

foreach (Spit vendorItem in currentList.Items)
{
თუ (vendorItem["Vendor Name"] == ნულოვანი) გაგრძელდება;

თუ (vendorItem["Vendor Name"].ToString().შეადგენს(vendorName))
დაბრუნდნენ ახალი Vendor(vendorItem);
}

Vendor v = ახალი Vendor();
v.VendorPhone = "not found: " + vendorName;

დაბრუნდნენ v;

დაბრუნდნენ ნულოვანი;

} // using spweb web = site.openweb()
} // using spsite site = new spsite("http://localhost/mizuho")

} // მეთოდი

[WebMethod]
საჯარო Vendor[] GetVendorsOfType (სიმებიანი filterType)
{

სიმებიანი SpVendorSiteName; // Name of the actual MOSS site that hosts t
he vendor custom list.
სიმებიანი SpVendorListName; // Name of the actual MOSS list containing vendors.

SpVendorSiteName = ConfigurationSettings.AppSettings["VendorListHostingSite"].ToString();
SpVendorListName = ConfigurationSettings.AppSettings["VendorList"].ToString();

Vendor[] resultList;
int vendorIndex = 0;
resultList = ახალი Vendor[1000];

// Initialize the list with a default friendly message.
Vendor v = ახალი Vendor();
v.VendorName = "Select a vendor type to populate this list.";
resultList[0] = v;

// Convert the filter to lower case for easier string comparison later.
filterType = filterType.ToLower();

// If the filter type passed is "test", generate some simple data.
#რეგიონში Filter type = "test"
თუ (filterType.Equals("test"))
დაბრუნდნენ GenerateTestVendors();
#endregion

თუ (ნამდვილი)
{
გამოყენებით (SPSite site = ახალი SPSite(SpVendorSiteName))
{
გამოყენებით (SPWeb web = site.OpenWeb())
{

v = ნულოვანი;

SPList currentList = web.Lists[SpVendorListName];

// Iterate through all the items in the vendor list.
foreach (Spit vendorItem in currentList.Items)
{

სიმებიანი lowerVendorType;

lowerVendorType = vendorItem["PurchaseType"].ToString().ToLower();
lowerVendorType = lowerVendorType.Substring(3);

თუ (lowerVendorType.Equals(filterType))
{
resultList[vendorIndex ] = ახალი Vendor(vendorItem);
}
} // iterating thru all the vendors in the list


დაბრუნდნენ TrimVendorArray(vendorIndex, resultList);
// return resultList;

} // using spweb web = site.openweb()
} // using spsite site = new spsite("http://localhost/mizuho")

} // if true

დაბრუნდნენ ნულოვანი;
}

შეტყობინების Vendor[] TrimVendorArray(int newsize, Vendor[] originalVendorArray)
{
Vendor[] trimmedArray;

თუ (newsize == 0) newsize = 1;
trimmedArray = ახალი Vendor[newsize];

int currentCounter = 0;

ამისთვის (currentCounter = 0; currentCounter < newsize; currentCounter )
{
trimmedArray[currentCounter] = originalVendorArray[currentCounter];
}

დაბრუნდნენ trimmedArray;

}
}

Moss: შენიშვნები InfoPath გამართვის

InfoPath ფორმა სერვერული შეცდომის შეტყობინებები მიუთითებენ.

დროს განვითარება InfoPath ფორმა, მე ვიცი, რომ MOSS სერვერზე და წვდომის ფორმა. ფორმა დაიწყება ჩატვირთვა და შემდეგ წარმოქმნის დეზინფორმაციულ შეცდომა მიუთითებს ჩემთვის ფანჯარა სარეგისტრაციო ჟურნალი ინფორმაციისთვის. სინამდვილეში, no message was written to the windows event log. Rather, the message was sent to the MOSS ascii diagnostic log. You can track that down via central services administration.

You need to be quick on your feet. MOSS likes to write to the log file, frequently and verbosely. This can be trimmed but the default log writing behavior is "everything as quickly as possible".

Moss: განახლება საბაჟო სია

არსებობს ბევრი კარგი მაგალითი განახლების საბაჟო სიები მეშვეობით SDK. აქ არის კიდევ ერთი.

ბიზნესის პრობლემა: InfoPath ფორმა შემუშავებულია, რომელიც საშუალებას სტუმრების შემოსვლა ონლაინ შესყიდვა requisitions. PO ჩამორთმევისას ნომრები უნდა იყოს ტრადიციული თანმიმდევრობით დაფუძნებული მთელი ღირებულებები და გათვლილი ავტომატურად.

ბიზნეს გადაწყვეტილება: შექმნა საბაჟო MOSS სია, რომელიც შეიცავს ორ ბურჯს: "ControlField" and "ControlValue". The value column contains the next purchase requisition number. Note that the generic "control" naming convention provides for future control fields that may be used as needed.

ტექნიკური გადაწყვეტა: Create a web service accessed by the InfoPath client. The web service returns back the next purchase requisition number and updates the value of the list.

Lessons Learned:

  • When adding this web service as a data source to the InfoPath form, I found it necessary to convert it to a udc and store it into a data connection library.
  • I also found it necessary to enable cross domain scripting via central services administration // application management // form server configuration.
  • The first time the form tried to access the web service, it takes a while and on occasion, it would time out. I fiddled with settings in form server configuration to expand the timeout settings and that seemed to help.

The code:

გამოყენებით სისტემები;
გამოყენებით System.Web;
გამოყენებით System.Web.Services;
გამოყენებით System.Web.Services.Protocols;
გამოყენებით Microsoft.SharePoint;
გამოყენებით System.Configuration;

[WebService(Namespace = "http://www.conchango.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
საჯარო კლასი PoService : System.Web.Services.WebService
{
საჯარო PoService () {

//Uncomment the following line if using designed components
//InitializeComponent();
}

/// <შემაჯამებელი>
/// Obtain the next PO number from the sharepoint po number control list.
/// Increment the PO number in that list.
/// </შემაჯამებელი>
/// <returns></returns>
[WebMethod]
საჯარო სიმებიანი GetNextPoNumber()
{
სიმებიანი SpPoControlSiteName; // Name of the actual MOSS site that hosts the PO Control list.
სიმებიანი SpPoControlListName; // Name of the actual MOSS list containing the Po control.

SpPoControlSiteName = ConfigurationSettings.AppSettings["PoControlListHostingSite"].ToString();
SpPoControlListName = ConfigurationSettings.AppSettings["PoControlList"].ToString();

სიმებიანი nextPoReqNumber = "xyzzy";

გამოყენებით (SPSite site = ახალი SPSite(SpPoControlSiteName))
{
გამოყენებით (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpPoControlListName];

foreach (Spit controlItem in currentList.Items)
{

თუ (((სიმებიანი)controlItem["ControlField"]).შეადგენს("NextPoNumber"))
{
nextPoReqNumber = (სიმებიანი)controlItem["ControlValue"];

int int_nextPoReqNumber;
int_nextPoReqNumber = Convert.ToInt32(nextPoReqNumber);

int_nextPoReqNumber ;

controlItem["ControlValue"] = int_nextPoReqNumber;
controlItem.Update();
}

} // Locating, reading and updating the PO number in the list.


} // using spweb web = site.openweb()
} // using spsite site = new spsite("http://localhost/mizuho")

დაბრუნდნენ nextPoReqNumber;

}
}