Arkivji ta 'Kull Xahar: Lulju 2007

MOSS: Iterazzjoni permezz ta 'listi tad-dwana u r-ritorn data ffiltrata lill InfoPath

Xenarju Business:

Provide a method that enables users to enter accurate purchase requisitions quickly.

Problema Business:

The client does business with several hundred vendors.

Vendors are "type" specific. This means that a vendor sells computer equipment (e.g. Dell) or office supplies (e.g. Staples).

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

Soluzzjoni tan-Negozju:

Differentiate vendors in the system via "type".

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

Soluzzjoni teknika:

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

Two InfoPath selection lists control vendor selection. Ewwel, 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.

Lezzjonijiet Meħuda:

  • Ewwel, 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. Madankollu, 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. Għalhekk, 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"]. Minflok, 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. Dan, tal-kors, 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. (Għal darb'oħra, this was easier than fighting InfoPath over ArrayLists).
  • I implemented a GetSpecificVendorByName() function as well, which may be instructive.

Il-kodiċi:

użu Sistema;
użu System.Web;
użu System.Web.Services;
użu System.Web.Services.Protocols;
użu Microsoft.SharePoint;
użu System.Configuration;

/// <sommarju>
///
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.
///
/// </sommarju>
[Webservice(Namespace = "http://www.conchango.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
pubbliku klassi VendorService : System.Web.Services.Webservice
{

/// <sommarju>
/// Represents a vendor from a custom sharepoint list maintained by MSUSA.
/// </sommarju>
pubbliku klassi Vendor
{
pubbliku Vendor() { }

pubbliku Vendor(Bżiq initItem)
{
jekk (! (initItem["Vendor Name"] == null)) VendorName = initItem["Vendor Name"].ToString();
jekk (! (initItem["Address 1"] == null)) VendorAddress1 = initItem["Address 1"].ToString();
jekk (! (initItem["Address 2"] == null)) VendorAddress2 = initItem["Address 2"].ToString();
jekk (! (initItem["City"] == null)) VendorCity = initItem["City"].ToString();
jekk (! (initItem["VendorPhone"] == null)) VendorPhone = initItem["VendorPhone"].ToString();
jekk (! (initItem["PurchaseType"] == null)) VendorType = initItem["PurchaseType"].ToString();
jekk (! (initItem["State"] == null)) VendorState = initItem["State"].ToString();
jekk (! (initItem["Zip"] == null)) VendorZip = initItem["Zip"].ToString();
jekk (!(initItem["Fax"] == null)) VendorFax = initItem["Fax"].ToString();
jekk (!(initItem["SalesRepName"] == null)) VendorSalesRepName = initItem["SalesRepName"].ToString();

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

pubbliku int VendorItemId;
pubbliku string VendorName;
pubbliku string VendorAddress1;
pubbliku string VendorAddress2;
pubbliku string VendorCity;
pubbliku string VendorState;
pubbliku string VendorZip;
pubbliku string VendorPhone;
pubbliku string VendorType;
pubbliku string VendorSalesRepName;
pubbliku string VendorFax;
}

pubbliku VendorService () {

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

privat Vendor[] GenerateTestVendors()
{
Vendor[] resultList;
resultList = ġdid Vendor[100];

Vendor v;
v = ġdid 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 = ġdid 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 = ġdid 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;

ritorn resultList;

}

[WebMethod]
pubbliku Vendor GetSpecificVendorById(int vendorId)
{
string SpVendorSiteName; // Name of the actual MOSS site that hosts the vendor custom list.
string SpVendorListName; // Name of the actual MOSS list containing vendors.

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

użu (SPSite site = ġdid SPSite(SpVendorSiteName))
{

użu (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpVendorListName];

Bżiq specificItem = currentList.Items[vendorId];

ritorn ġdid 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
pubbliku Vendor GetSpecificVendorByVendorName(string vendorName)
{
string SpVendorSiteName; // Name of the actual MOSS site that hosts the vendor custom list.
string SpVendorListName; // Name of the actual MOSS list containing vendors.

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

użu (SPSite site = ġdid SPSite(SpVendorSiteName))
{
użu (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpVendorListName];

foreach (Bżiq vendorItem fil currentList.Items)
{
jekk (vendorItem["Vendor Name"] == null) continue;

jekk (vendorItem["Vendor Name"].ToString().Ugwali(vendorName))
ritorn ġdid Vendor(vendorItem);
}

Vendor v = ġdid Vendor();
v.VendorPhone = "not found: " + vendorName;

ritorn v;

ritorn null;

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

} // metodu

[WebMethod]
pubbliku Vendor[] GetVendorsOfType (string filterType)
{

string SpVendorSiteName; // Name of the actual MOSS site that hosts t
he vendor custom list.
string 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 = ġdid Vendor[1000];

// Initialize the list with a default friendly message.
Vendor v = ġdid 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.
#reġjun Filter type = "test"
jekk (filterType.Equals("test"))
ritorn GenerateTestVendors();
#endregion

jekk (vera)
{
użu (SPSite site = ġdid SPSite(SpVendorSiteName))
{
użu (SPWeb web = site.OpenWeb())
{

v = null;

SPList currentList = web.Lists[SpVendorListName];

// Iterate through all the items in the vendor list.
foreach (Bżiq vendorItem fil currentList.Items)
{

string lowerVendorType;

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

jekk (lowerVendorType.Equals(filterType))
{
resultList[vendorIndex ] = ġdid Vendor(vendorItem);
}
} // iterating thru all the vendors in the list


ritorn TrimVendorArray(vendorIndex, resultList);
// return resultList;

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

} // if true

ritorn null;
}

privat Vendor[] TrimVendorArray(int newsize, Vendor[] originalVendorArray)
{
Vendor[] trimmedArray;

jekk (newsize == 0) newsize = 1;
trimmedArray = ġdid Vendor[newsize];

int currentCounter = 0;

għal (currentCounter = 0; currentCounter < newsize; currentCounter )
{
trimmedArray[currentCounter] = originalVendorArray[currentCounter];
}

ritorn trimmedArray;

}
}

MOSS: Osservazzjonijiet dwar debugging InfoPath

Forma messaġġi ta 'żball InfoPath server jqarrqu.

Matul l-iżvilupp ta 'forma InfoPath, Nixtieq jimpustah li MOSS server u aċċess għall-forma. Il-forma jibdew tagħbija u mbagħad jiġġenera messaġġ ta 'żball qarrieqa tipponta me lill-twieqi log avveniment għad-dettalji. Fil-fatt, ebda messaġġ kien miktub biex l-twieqi log avveniment. Pjuttost, il-messaġġ intbagħat lill-MOSS ascii log dijanjostiku. Inti tista 'ssegwi li r via ċentrali amministrazzjoni servizzi.

Inti jeħtieġ li tkun malajr fuq saqajn tiegħek. MOSS jħobb jikteb għall-fajl log, spiss u verbosely. This can be trimmed but the default log writing behavior is "everything as quickly as possible".

MOSS: Taġġorna lista custom

Hemm ħafna eżempji ta 'aġġornar listi dwana permezz tal-SDK. Hawnhekk huwa pass ieħor.

Problema Business: Forma InfoPath ġie ddisinjat li jippermetti lill-utenti li jidħlu requisitions xiri online. Numri rekwiżizzjoni PO għandhom ikunu l-valuri integer bbażati sekwenza tradizzjonali u ikkalkolat awtomatikament.

Soluzzjoni tan-Negozju: Tinħoloq lista MOSS custom fiha żewġ kolonni: "ControlField" and "ControlValue". Il-kolonna valur fih in-numru rekwiżizzjoni xiri li jmiss. Note that the generic "control" ismijiet konvenzjoni jipprovdi għal oqsma futuri tal-kontroll li jistgħu jintużaw kif meħtieġ.

Soluzzjoni teknika: Jinħoloq servizz web aċċessata mill-klijent InfoPath. Is-servizz web jirritorna lura l-għadd li jmiss rekwiżizzjoni xiri u taġġorna l-valur tal-lista.

Lezzjonijiet Meħuda:

  • Meta żżid dan is-servizz web bħala sors ta 'data għall-forma InfoPath, I sabet li kien meħtieġ li jaqilbu għal UDC u jaħżnu fi librerija konnessjoni tad-data.
  • I wkoll sabet li hu meħtieġ biex jippermetti cross dominju scripting permezz ċentrali amministrazzjoni servizzi // ġestjoni applikazzjoni // konfigurazzjoni server forma.
  • L-ewwel darba l-formola ppruvat taċċessa s-servizz web, hija tieħu filwaqt u f'okkażjoni, ikun Time Out. I fiddled mal-settings fil-konfigurazzjoni server formola biex jespandu l-settings timeout u li dehret li jgħinu.

Il-kodiċi:

użu Sistema;
użu System.Web;
użu System.Web.Services;
użu System.Web.Services.Protocols;
użu Microsoft.SharePoint;
użu System.Configuration;

[Webservice(Namespace = "http://www.conchango.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
pubbliku klassi PoService : System.Web.Services.Webservice
{
pubbliku PoService () {

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

/// <sommarju>
/// Obtain the next PO number from the sharepoint po number control list.
/// Increment the PO number in that list.
/// </sommarju>
/// <prospetti></prospetti>
[WebMethod]
pubbliku string GetNextPoNumber()
{
string SpPoControlSiteName; // Name of the actual MOSS site that hosts the PO Control list.
string SpPoControlListName; // Name of the actual MOSS list containing the Po control.

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

string nextPoReqNumber = "xyzzy";

użu (SPSite site = ġdid SPSite(SpPoControlSiteName))
{
użu (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpPoControlListName];

foreach (Bżiq controlItem fil currentList.Items)
{

jekk (((string)controlItem["ControlField"]).Ugwali("NextPoNumber"))
{
nextPoReqNumber = (string)controlItem["ControlValue"];

int int_nextPoReqNumber;
int_nextPoReqNumber = Ikkonverti.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")

ritorn nextPoReqNumber;

}
}