Cartlanna míosúla: Iúil 2007

CAONAIGH: Iterating trí liostaí saincheaptha agus ag filleadh sonraí scagtha a InfoPath

Cás Gnó:

A sholáthar ar mhodh a chuireann ar chumas úsáideoirí a chur isteach foréilimh a cheannach cruinn go tapa.

Fadhb Gnó:

Dhéanann an cliant gnó le cúpla céad díoltóirí.

Vendors are "type" sonracha. Ciallaíonn sé seo go sells díoltóir threalamh ríomhaireachta (e.g. Dell) nó soláthairtí oifige (e.g. Staples).

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

Réiteach Gnó:

Differentiate vendors in the system via "type".

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

Réiteach Teicniúil:

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

Two InfoPath selection lists control vendor selection. An Chéad, 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.

Ceachtanna a Foghlaimíodh:

  • An Chéad, 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. Mar sin féin, 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. Dá bhrí sin,, 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"]. Ina áit sin, 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. Seo, ar ndóigh, 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. (Arís, this was easier than fighting InfoPath over ArrayLists).
  • I implemented a GetSpecificVendorByName() function as well, which may be instructive.

An Cód:

ag baint úsáide as Córas;
ag baint úsáide as System.Web;
ag baint úsáide as System.Web.Services;
ag baint úsáide as System.Web.Services.Protocols;
ag baint úsáide as Microsoft.SharePoint;
ag baint úsáide as System.Configuration;

/// <achoimre>
///
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.
///
/// </achoimre>
[WebService(Namespace = "http://www.conchango.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
poiblí ranga VendorService : System.Web.Services.WebService
{

/// <achoimre>
/// Represents a vendor from a custom sharepoint list maintained by MSUSA.
/// </achoimre>
poiblí ranga Vendor
{
poiblí Vendor() { }

poiblí Vendor(Spit initItem)
{
más rud é (! (initItem["Vendor Name"] == náid)) VendorName = initItem["Vendor Name"].ToString();
más rud é (! (initItem["Address 1"] == náid)) VendorAddress1 = initItem["Address 1"].ToString();
más rud é (! (initItem["Address 2"] == náid)) VendorAddress2 = initItem["Address 2"].ToString();
más rud é (! (initItem["City"] == náid)) VendorCity = initItem["City"].ToString();
más rud é (! (initItem["VendorPhone"] == náid)) VendorPhone = initItem["VendorPhone"].ToString();
más rud é (! (initItem["PurchaseType"] == náid)) VendorType = initItem["PurchaseType"].ToString();
más rud é (! (initItem["State"] == náid)) VendorState = initItem["State"].ToString();
más rud é (! (initItem["Zip"] == náid)) VendorZip = initItem["Zip"].ToString();
más rud é (!(initItem["Fax"] == náid)) VendorFax = initItem["Fax"].ToString();
más rud é (!(initItem["SalesRepName"] == náid)) VendorSalesRepName = initItem["SalesRepName"].ToString();

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

poiblí int VendorItemId;
poiblí teaghrán VendorName;
poiblí teaghrán VendorAddress1;
poiblí teaghrán VendorAddress2;
poiblí teaghrán VendorCity;
poiblí teaghrán VendorState;
poiblí teaghrán VendorZip;
poiblí teaghrán VendorPhone;
poiblí teaghrán VendorType;
poiblí teaghrán VendorSalesRepName;
poiblí teaghrán VendorFax;
}

poiblí VendorService () {

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

príobháideach Vendor[] GenerateTestVendors()
{
Vendor[] resultList;
resultList = nua Vendor[100];

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

ar ais resultList;

}

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

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

ag baint úsáide as (SPSite site = nua SPSite(SpVendorSiteName))
{

ag baint úsáide as (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpVendorListName];

Spit specificItem = currentList.Items[vendorId];

ar ais nua 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
poiblí Vendor GetSpecificVendorByVendorName(teaghrán vendorName)
{
teaghrán SpVendorSiteName; // Name of the actual MOSS site that hosts the vendor custom list.
teaghrán SpVendorListName; // Name of the actual MOSS list containing vendors.

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

ag baint úsáide as (SPSite site = nua SPSite(SpVendorSiteName))
{
ag baint úsáide as (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpVendorListName];

foreach (Spit vendorItem i currentList.Items)
{
más rud é (vendorItem["Vendor Name"] == náid) leanúint;

más rud é (vendorItem["Vendor Name"].ToString().Cothrom(vendorName))
ar ais nua Vendor(vendorItem);
}

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

ar ais v;

ar ais náid;

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

} // modh

[WebMethod]
poiblí Vendor[] GetVendorsOfType (teaghrán filterType)
{

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

// Initialize the list with a default friendly message.
Vendor v = nua 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.
#réigiún Filter type = "test"
más rud é (filterType.Equals("test"))
ar ais GenerateTestVendors();
#endregion

más rud é (fíor)
{
ag baint úsáide as (SPSite site = nua SPSite(SpVendorSiteName))
{
ag baint úsáide as (SPWeb web = site.OpenWeb())
{

v = náid;

SPList currentList = web.Lists[SpVendorListName];

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

teaghrán lowerVendorType;

lowerVendorType = vendorItem["PurchaseType"].ToString().Ní eagar();
lowerVendorType = lowerVendorType.Substring(3);

más rud é (lowerVendorType.Equals(filterType))
{
resultList[vendorIndex ] = nua Vendor(vendorItem);
}
} // iterating thru all the vendors in the list


ar ais TrimVendorArray(vendorIndex, resultList);
// return resultList;

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

} // if true

ar ais náid;
}

príobháideach Vendor[] TrimVendorArray(int newsize, Vendor[] originalVendorArray)
{
Vendor[] trimmedArray;

más rud é (newsize == 0) newsize = 1;
trimmedArray = nua Vendor[newsize];

int currentCounter = 0;

le haghaidh (currentCounter = 0; currentCounter < newsize; currentCounter )
{
trimmedArray[currentCounter] = originalVendorArray[currentCounter];
}

ar ais trimmedArray;

}
}

CAONAIGH: Tuairimí ar debugging InfoPath

Bhfoirm teachtaireachtaí InfoPath earráid fhreastalaí atá míthreorach.

Le linn a fhorbairt foirm InfoPath, Ba mhaith liom é sa phost le MOSS freastalaí agus rochtain a fháil ar an bhfoirm. Ba mhaith leis an fhoirm tús a luchtú agus ansin a ghiniúint teachtaireacht earráide míthreorach in iúl dom ar an gcás logáil isteach fuinneoga le haghaidh sonraí. Go deimhin, Scríobhadh aon teachtaireacht chuig an gcás logáil isteach fuinneoga. Ina ionad sin, Cuireadh an teachtaireacht a sheoladh chuig an ascii CAONAIGH diagnóiseacha logáil. Is féidir leat a rianú síos trí sheirbhísí lárnacha riaracháin.

Ní mór duit a bheith tapa ar do chosa. MOSS maith a scríobh chuig an comhad a logáil, go minic agus foclach. This can be trimmed but the default log writing behavior is "everything as quickly as possible".

CAONAIGH: Thabhairt cothrom le dáta liosta saincheaptha

Tá samplaí maithe go leor de thabhairt cothrom le dáta liostaí saincheaptha tríd an SDK. Anseo tá eile fós.

Fadhb Gnó: Tá foirm InfoPath deartha a chuireann ar chumas úsáideoirí a chur isteach foréilimh a cheannach ar líne. Ba chóir go mbeadh líon Foréileamh PO luachanna slánuimhir atá bunaithe ar ord traidisiúnta agus ríomh go huathoibríoch.

Réiteach Gnó: Cruthaigh liosta MOSS saincheaptha ina dhá cholún: "ControlField" and "ControlValue". Tá an colún luach an uimhir foréileamh cheannach eile. Note that the generic "control" ainmniú coinbhinsiún foráil do réimsí rialaithe sa todhchaí is féidir a úsáid mar is gá.

Réiteach Teicniúil: Cruthaigh seirbhís gréasáin rochtain ag an gcliant InfoPath. Filleann an tseirbhís idirlín ar ais an uimhir foréileamh cheannach eile agus cothrom le dáta ar an luach an liosta.

Ceachtanna a Foghlaimíodh:

  • Nuair a chur leis an tseirbhís seo gréasáin mar fhoinse do na sonraí ar an bhfoirm InfoPath, Fuair ​​mé gur gá é a thiontú go le UDC agus é a stóráil i leabharlann nasc sonraí.
  • Chinn mé freisin sé riachtanach chun a chumasú tras fearainn scriptithe trí sheirbhísí lárnacha riaracháin // bainistíochta i bhfeidhm // cumraíocht freastalaí fhoirm.
  • An chéad uair a rinne an bhfoirm teacht ar an tseirbhís idirlín, a thógann sé ar feadh tamaill agus ar ócáid, Bheadh ​​sé am amach. Fiddled mé le suímh i gcumraíocht freastalaí fhoirm a leathnú na socruithe Teorainn ama agus go bhfuil an chuma chun cabhrú le.

An Cód:

ag baint úsáide as Córas;
ag baint úsáide as System.Web;
ag baint úsáide as System.Web.Services;
ag baint úsáide as System.Web.Services.Protocols;
ag baint úsáide as Microsoft.SharePoint;
ag baint úsáide as System.Configuration;

[WebService(Namespace = "http://www.conchango.com/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
poiblí ranga PoService : System.Web.Services.WebService
{
poiblí PoService () {

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

/// <achoimre>
/// Obtain the next PO number from the sharepoint po number control list.
/// Increment the PO number in that list.
/// </achoimre>
/// <tuairisceáin></tuairisceáin>
[WebMethod]
poiblí teaghrán GetNextPoNumber()
{
teaghrán SpPoControlSiteName; // Name of the actual MOSS site that hosts the PO Control list.
teaghrán SpPoControlListName; // Name of the actual MOSS list containing the Po control.

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

teaghrán nextPoReqNumber = "xyzzy";

ag baint úsáide as (SPSite site = nua SPSite(SpPoControlSiteName))
{
ag baint úsáide as (SPWeb web = site.OpenWeb())
{

SPList currentList = web.Lists[SpPoControlListName];

foreach (Spit controlItem i currentList.Items)
{

más rud é (((teaghrán)controlItem["ControlField"]).Cothrom("NextPoNumber"))
{
nextPoReqNumber = (teaghrán)controlItem["ControlValue"];

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

ar ais nextPoReqNumber;

}
}