দ্রুত হিট: SharePoint একটি SPListItem থেকে সরাসরি InfoPath এক্সএমএল পঠন

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 (যা শুধু এক্সএমএল ফাইল, তাই এটা আসলে বেশ সহজ).

আমি প্রকল্প পর্যন্ত নির্মাণ করা হয়েছিল, 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 …

উপরে তারা কী বিট আমরা OpenBinaryStream মাধ্যমে সরাসরি InfoPath পড়তে পারে() method call on the SPFile as a parameter to the constructor on XmlTextReader. It works great.

</শেষ>

আমার ব্লগ এর জন্য সাবস্ক্রাইব করুন.

টুইটারে আমার অনুসরণ http://www.twitter.com/pagalvin

Technorati বিভাগ:

এক বিষয়ে চিন্তা "দ্রুত হিট: SharePoint একটি SPListItem থেকে সরাসরি InfoPath এক্সএমএল পঠন

  1. nesreen

    উচ্চ,
    আমি এই সাহায্যের প্রয়োজন , আমি SharePoint আছে 2007 একটি পুনরায় টেবিলের সাথে সাইট এবং infopath , আমি কি করতে হবে একবার ফর্ম আমি লুপ প্রয়োজন এবং এস পি ফর্ম গ্রন্থাগারের ইভেন্ট হ্যান্ডলার ব্যবহার একটি তালিকা থেকে ডাটা সংরক্ষণ SharePoint ফরম লাইব্রেরি সংরক্ষিত হয়.

    কোন হেল্প এবং সত্যিই প্রশংসা করা হয়.

    ধন্যবাদ

সাইফুল আলম চৌধুরী

আপনার ইমেইল ঠিকানা প্রচার করা হবে না. প্রয়োজনীয় ক্ষেত্রগুলি চিহ্নিত করা আছে *