Category Archives: שאַרעפּאָינט דעוועלאָפּמענט

HTTP 406 Error When Using Angular $http.get Against SharePoint REST End Points

דערהייַנטיקן: Marc AD ndersson pointed out this great piece of info: הטטפּ://blogs.office.com/2014/08/13/json-light-support-rest-sharepoint-api-released/. That explains a lot :).

That may be the worst title of a blog post ever! Anyhoo.

I typically do all of my prototyping against an O365 instance. I have my personal instance so that I don’t have to be worried about affecting anyone else. As an aside – remember when we call carried around virtual machines on our laptops with MOSS – SQL Server, IIS, deciding Hyper-V vs. VMWare? Anyhoo…

I had developed an app using Angular in this environment that does, צווישן אנדערע זאכן, דעם:

$http.get(serverUrl)
.success(פונקציע(דאַטע, מאַצעוו, headers, config) {

var getLinksResponse = data;

getLinksResponse.value.forEach(פונקציע(theResult) {

// and so on and so froth

This was working just fine in two different SharePoint online environments. אָבער, when my colleague ported it to a Cloudshare instance, he was getting an HTTP 406 גרייַז (which was the first time I ever got that one, so … yay, I guess). We did a bit of research and noticed that the “Accept” header was off. SharePoint online was perfectly happy with:

Accept: application/json

But the cloudshare instance (which is SP on prem, hosted in a virtual server) wanted the classic “odata=verbose” added in as well:

Accept: application/json;odata=verbose

To fix that, we added the header as such:

var config = {headers: {
‘Accept’: ‘application/json;odata=verbose’
}
};

$http.get(serverUrl,config)
.success(פונקציע(דאַטע, מאַצעוו, headers, config) {

var getLinksResponse = data;

getLinksResponse.value.forEach(פונקציע(theResult) {

// and so on and so froth

That got rid of the 406, but it also changed the format of the response. It was more … verbose. (haha!) More changes were required and here’s the final result:

var config = {headers: {
‘Accept’: ‘application/json;odata=verbose’
}
};

$http.get(serverUrl,config)
.success(פונקציע(דאַטע, מאַצעוו, headers, config) {

var getLinksResponse = data;

getLinksResponse.d.results.forEach(פונקציע(theResult) {

// and so on and so froth

This only turned into a 30 minute problem for us, so we lucked out. Hopefully someone finds this useful.

</עק>

Growing Awareness / Adoption of JavaScript Frameworks

מייַן קאָלעגע, Javed Ansari (http://www.bigapplesharepoint.com/team?showExpertName=Javed%20Ansari&rsource=pgblog), wrote a short summary blog post on frameworks he likes or at least has been using with with SharePoint: http://www.bigapplesharepoint.com/pages/View-An-Insight.aspx?BlogID=53&rsource=PGBlog).

jQuery seems to have been the victor on the field, so to speak, for years now, but the others are more new and stills sort of battling it, like Angular. (SPServices, אַוואַדע, has been a life saver for years and will continue to be so I think).

What are people using? Are they focused more on Microsoft’s tooling (CSOM / JSOM) or moving more toward Angular, Knockout, Ember, אאז"ו ו?

I have a growing bias toward these non-Microsoft frameworks. I think the MSFT stuff is harder and harder to work with, requiring almost as much of learning curve as old-style server-side dev.

Post a comment here or over at Big Apple SharePoint if you want to discuss (Big Apple will have more likelihood of a good discussion).

</עק>

Spinning SharePoint Timer Jobs from Site Collection Configuration

מייַן קאָלעגע, Ashish Patel, wrote a blog post describing a flexible timer job architecture that affords some nice flexibility to support long-running tasks and/or reports.  In his words:

1. Analyzing Checked out files and sending reminders to the individuals if the number of days (since the file was checked out) exceed certain threshold limits

2. Removing links from other content when a particular content is removed or archived from the system

3. User wants to see all the alerts that he subscribed in all webs in the site collection

4. Sending a reminders to authors to review the content when a review time was specified in the content and that date is approaching

געזונט, the list goes on…

– See more at: הטטפּ://www.bigapplesharepoint.com/pages/View-An-Insight.aspx?BlogID=40#sthash.7cKuiwly.dpuf

There are times in my past when having something like this would have been very helpful.

</עק>

ווי צו: קאַנפיגיער יוניט פּרובירן און פּרובירן קאַווערידזש מיט קווניט.דזשס און בלאַנקעט.דזשס פֿאַר אַן אָפיס 365 שאַרעפּאָינט אַפּ

Intro

I’ve been exploring unit testing and test coverage for JavaScript as I work on a new SharePoint app for SharePoint online in the Office 365 suite.  The obvious research paths led me to Qunit.js and right after that, צו Blanket.js.

QUnit let me set up unit tests and group them into modules.  A module is just a simple way to organize related tests. (I’m not sure I’m using it as intended, but it’s working for me so far with the small set of tests I have thus far defined).

Blanket.js integrates with Qunit and it will show me the actual lines of JavaScript that were – and more importantly – were not actually executed in the course of running the tests.  This is “coverage” – lines that executed are covered by the test while others are not.

Between setting up good test cases and viewing coverage, we can reduce the risk that our code has hidden defects.  Good times.

Qunit

Assuming you have your Visual Studio project set up, start by downloading the JavaScript package from http://qunitjs.com.  Add the JavaScript and corresponding CSS to your solution.  Mine looks like this:

image

Figure 1

ווי איר קענען זען, I was using 1.13.0 at the time I wrote this blog post. Don’t forget to download and add the CSS file.

That out of the way, next step is to create some kind of test harness and reference the Qunit bits.  I’m testing a bunch of functions in a script file called “QuizUtil.js” so I created an HTML page called “QuizUtil_test.html” as shown:

image Figure 2

Here’s the code:

<!DOCTYPE HTML>
<HTML קסמלנס="http://www.w3.org/1999/xhtml">
<head>
    <טיטל>QuizUtil test with Qunit</טיטל>
    <רונג rel="stylesheet" הרעף="../CSS/qunit-1.13.0.css" />
    <שריפט טיפּ="text/javascript" סרק="QuizUtil.js" data-cover></שריפט>
    <שריפט טיפּ ="טעקסט / דזשאַוואַסקריפּט" סרק ="qunit-1.13.0.js"></שריפט>
    <שריפט טיפּ ="טעקסט / דזשאַוואַסקריפּט" סרק ="blanket.min.js"></שריפט>

    <שריפט>
        module("getIDFromLookup");
        פּרובירן("QuizUtil getIDFromLookupField", פונקציע () {
            איז געווען goodValue = "1;#פאולוס גאַלווין";

            equal(getIDFromLookupField(goodValue) + 1, 2), "ID of [" + goodValue + "] + 1 should be 2";
            equal(getIDFromLookupField(undefined), undefined, "Undefined input argument should return undefined result.");
            equal(getIDFromLookupField(""), undefined, "Empty input argument should return an undefined value.");
            equal(getIDFromLookupField("gobbledigood3-thq;dkvn ada;skfja sdjfbvubvqrubqer0873407t534piutheqw;vn"), undefined,"Should always return a result convertible to an Integer");
            equal(getIDFromLookupField("2;#some other person"), "2", "Checking [2;#some other person].");
            equal(getIDFromLookupField("9834524;#long value"), "9834524", "Large value test.");
            notEqual(getIDFromLookupField("5;#anyone", 6), 6, "Testing a notEqual (5 is not equal to 6 for this sample: [5;#anyone]");

        });

        module("htmlEscape");
        פּרובירן("QuizUtil htmlEscape()", פונקציע () {
            equal(htmlEscape("<"), "&לט;", "Escaping a less than operator ('<')");
            equal(htmlEscape("<div class=\"someclass\">Some text</דיוו>"), "&לט;div class=&quot;someclass&quot;&גט;Some text&לט;/דיוו&גט;", "More complex test string.");
        });

        module("getDateAsCaml");
        פּרובירן("QuizUtil getDateAsCaml()", פונקציע () {
            equal(getDateAsCaml(נייַ דאַטע("12/31/2013")), "2013-12-31T:00:00:00", "Testing hard coded date: [12/31/2013]");
            equal(getDateAsCaml(נייַ דאַטע("01/05/2014")), "2014-01-05T:00:00:00", "Testing hard coded date: [01/05/2014]");
            equal(getDateAsCaml(נייַ דאַטע("01/31/2014")), "2014-01-31T:00:00:00", "Testing hard coded date: [01/31/2014]");
            equal(getTodayAsCaml(), getDateAsCaml(נייַ דאַטע()), "getTodayAsCaml() should equal getDateAsCaml(new Date())");
            equal(getDateAsCaml("nonsense value"), undefined, "Try to get the date of a nonsense value.");
            equal(getDateAsCaml(undefined), undefined, "Try to get the date of the [undefined] date.");
        });

        module("getParameterByName");
        פּרובירן("QuizUtil getParameterByName (from the query string)", פונקציע () {
            equal(getParameterByName(undefined), undefined, "Try to get undefined parameter should return undefined.");
            equal(getParameterByName("does not exist"), undefined, "Try to get parameter value when we know the parameter does not exist.");

        });

        module("Cookies");
        פּרובירן("QuizUtil various cookie functions.", פונקציע () {
            equal(setCookie("test", "1", -1), getCookieValue("test"), "Get a cookie I set should work.");
            equal(setCookie("anycookie", "1", -1), ריכטיק, "Setting a valid cooking should return 'true'.");
            equal(setCookie("crazy cookie name !@#$%\"%\\^&*(()?/><.,", "1", -1), ריכטיק, "Setting a bad cookie name should return 'false'.");
            equal(setCookie(undefined, "1", -1), undefined, "Passing undefined as the cookie name.");
            equal(getCookieValue("does not exist"), "", "Cookie does not exist test.");
        });

    </שריפט>
</head>
<גוף>
    <דיוו שייַן="qunit"></דיוו>
    <דיוו שייַן="qunit-fixture"></דיוו>

</גוף>
</HTML>

There are several things happening here:

  1. Referencing my code (QuizUtil.js)
  2. Referencing Qunity.js
  3. Defining some modules (getIDFromLookup, Cookies, און אנדערע)
  4. Placing a <דיוו> whose ID is “qunit”.

דעמאָלט, I just pull up this page and you get something like this:

image

Figure 3

If you look across the top, you have a few options, two of which are interesting:

  • Hide passed tests: Pretty obvious.  Can help your eye just see the problem areas and not a lot of clutter.
  • Module: (drop down): This will filter the tests down to just those groups of tests you want.

As for the tests themselves – a few comments:

  • It goes without saying that you need to write your code such that it’s testable in the first place.  Using the tool can help enforce that discipline. לעמאָשל, I had a function called “getTodayAsCaml()".  This isn’t very testable since it takes no input argument and to test it for equality, we’d need to constantly update the test code to reflect the current date.  I refactored it by adding a data input parameter then passing the current date when I want today’s date in CAML format.
  • The Qunit framework documents its own tests and it seems pretty robust.  It can do simple things like testing for equality and also has support for ajax style calls (both “real” or mocked using your favorite mocker).
  • Going through the process also forces you to think through edge cases – what happens with “undefined” or null is passed into a function.  It makes it dead simple to test these scenarios out.  Good stuff.

Coverage with Blanket.js

Blanket.js complements Qunit by tracking the actual lines of code that execute during the course of running your tests.  It integrates right into Qunit so even though it’s a whole separate app, it plays nicely – it really looks like it’s one seamless app.

This is blanket.js in action:

image Figure 4

image

Figure 5

(You actually have to click on the “Enable coverage” checkbox at the top [see Figure 3] to enable this.)

The highlighted lines in Figure 5 have not been executed by any of my tests, so I need to devise a test that does cause them to execute if I want full coverage.

Get blanket.js working by following these steps:

  1. Download it from http://blanketjs.org/.
  2. Add it to your project
  3. Update your test harness page (QuizUtil_test.html in my case) as follows:
    1. Reference the code
    2. Decorate your <שריפט> reference like this:
    <שריפט טיפּ="text/javascript" סרק="QuizUtil.js" data-cover></שריפט>

Blanket.js picks up the “data-cover” attribute and does its magic.  It hooks into Qunit, updates the UI to add the “Enable coverage” option and voila!

קיצער (TL; DR)

Use Qunit to write your test cases.

  • Download it
  • Add it to your project
  • Write a test harness page
  • Create your tests
    • Refactor some of your code to be testable
    • Be creative!  Think of crazy, impossible scenarios and test them anyway.

Use blanket.js to ensure coverage

  • Make sure Qunit is working
  • Download blanket.js and add it to your project
  • Add it to your test harness page:
    • Add a reference to blanket.js
    • Add a “data-cover” attribute to your <שריפט> פאַרבינדן
  • Run your Qunit tests.

I never did any of this before and had some rudimentary stuff working in a handful of hours. 

Happy testing!

</עק>

undefinedאַבאָנירן צו מיין בלאָג.

גיי מיר אויף טוויטטער בייַ http://www.twitter.com/pagalvin

ליסצ.אַסמקס, געטליסט און "וואַליו קענען ניט זיין נאַל”

איך דיסקאַווערד הייַנט אַז די געטליסט() מיטל אין ליסצ.אַסמקס וועב דינסט האט צו זיין גערופן זייער קערפאַלי אָדער עס ס פּראָנע צו וואַרפן אַ מיסטעריעז "וואַליו קענען ניט זיין נאַל" ויסנעם (און אַז ס אַסומינג איר קענען באַקומען פאַרבייַ דעם אפילו ערגער דזשאַנעריק טעות אָנזאָג, “Exception of type ‘Microsoft.SharePoint.SoapServer.SoapServerException’ איז געווען ארלנגעווארפן. ")  ספּעסיפיקאַללי, איך געפונען אַז איר קענען נישט צושטעלן קיין מין פון פּרעפיקס אויף די געטליסט אופֿן.  די ווייַטערדיק דזשקווערי סניפּאַט ילאַסטרייץ די פונט:

image

אויב איר טאָן אַז, די וועב דינען ריספּאַנדז מיט "וואַליו קענען ניט זיין נאַל" ווי פּער דעם פידלער-ביטנייַ הטטפּ טראַנסקריפּט:

<?xml version="1.0" encoding="utf-8"?>
  <זייף:קאָנווערט
     קסמלנס:זייף ="
הטטפּ://schemas.xmlsoap.org / זייף / קאָנווערט /"    
     קסמלנס:קססי = "
הטטפּ://www.w3.org/2001/XMLSchema-instance"
     קסמלנס:קססד ="
הטטפּ://www.w3.org/2001/XMLSchema">

  <זייף:גוף>
    <זייף:שולד>
      <פאַולטקאָדע>זייף:סערווירער</פאַולטקאָדע>
      <פאַולצטרינג>
        Exception of type ‘Microsoft.SharePoint.SoapServer.SoapServerException’ איז געווען ארלנגעווארפן.
      </פאַולצטרינג>
      <דעטאַל>
        <ערראָרסטרינג קסמלנס ="
הטטפּ://schemas.microsoft.com / שאַרעפּאָינט / זייף /">
ווערט קענען ניט זיין נאַל.
        </ערראָרסטרינג>
      </דעטאַל>
    </זייף:שולד>
  </זייף:גוף>
</זייף:קאָנווערט>

אַוואַדע, איר מיסטאָמע וואָלט ניט לייגן אַז "ס0" פּרעפיקס אויף אייער אייגן, אָבער עטלעכע מכשירים זענען פּראָנע צו טאָן עס (ווי עקליפּסע).

דעם איז אַלע דער מער קאַנפיוזינג / פראַסטרייטינג ווייַל אנדערע מעטהאָדס דערלאָזן פּרעפיקסעס.  לעמאָשל, די געטליסטקאָללעקטיאָן מיטל טוט ניט מיינונג אויב עס ס געווען פּרעפיקסעד, אפילו מיט ומזין פּרעפיקסעס ווי "קסיזזי":

image

דעם "ווערט קענען ניט זיין נאַל" מיינט פערלי געוויינטלעך מיט ליסצ.אַסמקס אַזוי אַלעווייַ דעם וועט העלפן עמעץ אויס אין צוקונפט.

</עק>

אַבאָנירן צו מיין בלאָג.

גיי מיר אויף טוויטטער בייַ http://www.twitter.com/pagalvin

ענדלעססלי נעסטינג <דיוו> טאַגס און דזשקווערי

דעם מיינט ווי אַזאַ אַ אַדבאָל טעמע, איך בין נישט זיכער עס ס טאַקע ווערט בלאָגגינג וועגן, אָבער אַז ס קיינמאָל פארשטאפט מיר פריער, אַזוי דאָ מיר גיין שמייכל

איך בין אַרבעט אויס אויף אַ פּרויעקט ווו איך בין פּולינג עטלעכע דאַטן פון אַ זוכן, פּאַקידזשינג עס אַרויף אין אַ קסמל אָנזאָג און דעמאָלט אַז קסמל איז לעסאָף פארוואנדלען אין HTML דורך קססלט.  עס ס אַ פּלאַץ פון דזשקווערי ינוואַלווד, איינער ביסל פון וואָס ימפּלאַמאַנץ עטלעכע טאַבינג פאַנגקשאַנאַליטי.  ווען איר דריקט אויף אַ קוויטל (טאַקע, אַ <דיוו>), דזשקווערי ינוואָוקס. באַהאַלטן() און. ווייַזן() אויף פארשידענע דיווס (דער ערשט בלאַט לאָדן דאַונלאָודז אַלע די צופרידן אַזוי עס זענען ניט פּאָסטבאַקקס אין דעם פאַל).

א בינטל פון שעה צוריק, דער קוויטל סוויטשינג לאָגיק סטאַרטעד צו ביכייוו עראַטיקלי און עס וואָלט ניט ווייַזן איינער פון מיין טאַבס.  איך לעסאָף טראַקט עס אַראָפּ צו די פאַקט אַז אינטערנעט Explorer (בייַ מינדסטער) געדאַנק אַז דער <דיוו> טאַגס נעסטעד ווייַט, ווייַט דיפּער ווי ינטענדעד.טהע דעוועלאָפּער מכשיר וואָלט ווייַזן:

-<דיוו שייַן = "טאַב1קאָנטענט">
  -<דיוו>
    -<דיוו>
      -<דיוו שייַן = "טאַב2קאָנטענט">
        -<דיוו>
           ..............................
                   </דיוו>  <-לעסאָף ווייַזונג עס איז געווען פארשלאסן אַלע די וועג אַראָפּ דאָ!

אַזוי, אויב איך האבן אַ $("# טאַב1קאָנטענט").באַהאַלטן(), איך'ד אויך באַהאַלטן טאַב2 און איך קען קיינמאָל ווייַזן טאַב2 אויב איך האט ניט אויך ווייַזן טאַב1.  איך קאַפּיד און פּייסטיד די קאָד אַרויף אין וויזשאַוואַל סטודיע און עס אנטפלעקט אַלע פון ​​די דיוו ס ונטערשלאַק אַרויף נייסלי, פּונקט ווי זיי האבן געמיינט צו זיין טאן, קוקן ווי דעם:

-<דיוו שייַן = "טאַב1קאָנטענט">
  +<דיוו>
  +<דיוו>
-<דיוו שייַן = "טאַב2קאָנטענט">
  +<דיוו>
  +<דיוו>

איך קלאַפּן מיין קאָפּ קעגן די וואַנט פֿאַר אַ בשעת און באמערקט אַז אין די פאַקטיש HTML קאָד איז געווען דזשענערייטינג אַ פּלאַץ פון ליידיק <דיוו> טאַגס, ווי:

<גוף>

  <דיוו שייַן = "טאַב1קאָנטענט">

    <דיוו שייַן = "ראָוו1" />
    <דיוו שייַן = "ראָוו2" />

  </דיוו>

  <דיוו שייַן = "טאַב2קאָנטענט">

    <דיוו שייַן = "ראָוו1" />
    <דיוו שייַן = "ראָוו2" />

  </דיוו>

</גוף>

(די אויבן איז וואַאַאַאַאַאַאַאַאַאַאַייַ איבער סימפּלאַפייד.  די ליידיק דיוו טאַגס זענען טאָוטאַלי גילטיק. עטלעכע פון ​​מיין <דיוו> טאַגס זענען פול פון צופרידן, אָבער פילע מער האבן ניט.  איך געקומען צו דער מעקייַעם אַז מיין <קססל:פֿאַר, יעדער> דיירעקטיווז זענען ימיטינג די קורץ-פאָרמע דיוו טאַגס ווען די קססל:פֿאַר, יעדער האט ניט 'געפינען קיין דאַטן.  איך געצווונגען אַ HTML באַמערקונג אין די פּראָדוקציע, ווי געוויזן:

image

 

נאָך איך האט אַז, אַלע די דיוו ס ליינד אַרויף נייסלי און מיין קוויטל סוויטשינג סטאַרטעד אַרבעט.

ווי שטענדיק, איך האָפֿן דעם העלפט עמעצער אין אַ נויט.

</עק>

אַבאָנירן צו מיין בלאָג.

גיי מיר אויף טוויטטער בייַ http://www.twitter.com/pagalvin

איין סיבה "דער באשעפער פון דעם שולד האט ניט ספּעציפיצירן אַ ריזאַן.”

איך'ווע געווען טאן אַ פּלאַץ פון ווערק מיט שאַרעפּאָינט זוכן לעצטנס און ספּאַסיפיקלי די קייוואָרדקווערי קלאַס, פּראָפּערטיעס און מעטהאָדס.

אויב איר ווילן די רעזולטאַט שטעלן צו קריק רעזולטאַטן אויבן און ווייַטער פון די געוויינטלעך סאַספּעקץ (זען דאָ), איר לייגן עס צו די סעלעקטעדפּראָפּערטיעס זאַמלונג, ווי אין:

מיקייוואָרדקווערי.סעלעקטפּראָפּערטיעס.אַדד("xyzzy");

פילע דאַנק און אַ שפּיץ פון די קאַפּל צו קאָרי ראָטה און דעם ינאָרמאַסלי נוציק בלאָג פּאָסטן (http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2008/02/19/how-to-use-the-moss-enterprise-search-keywordquery-class.aspx)

אין מיין פאַל, "קסיזזי" איז ניט אַקטשאַוואַלי אַ געראטן פאַרמאָג.  ווען איך מוסיף עס צו סעלעקטעדפּראָפּערטיעס סייַ ווי סייַ, שאַרעפּאָינט האט איינער פון מיין באַליבט אלץ רונטימע אויסנעמען:

"דער באשעפער פון דעם שולד האט ניט ספּעציפיצירן אַ ריזאַן."

איך ספּעציעל ווי די הויפּט - שטאָט "ר" אין ריזאַן.  דעם סאָונדס צו מיר ווי די. נעץ עקוויוואַלענט פון "איך האָבן קיין מויל, און איך מוזן שרייַען."

</עק>

אַבאָנירן צו מיין בלאָג.

גיי מיר אויף טוויטטער בייַ http://www.twitter.com/pagalvin

האַנטיק רעפערענץ: פעליקייַט רעזולטאַטן פון קייוואָרדקווערי זוך

ווען איר ינוואָוק די עקסעקוטע() מיטל אויף אַ קייוואָרדקווערי, איר קענען מאַכן אַ רעסולטטאַבלע באזירט אויף רעסולטטיפּע.רעלעוואַנטרעסולץ.  דעם קאָד סניפּאַט ילאַסטרייץ וואָס איך מיינען:

רעסולטטאַבלעקאָללעקטיאָן רעסולצטאַבלעקאָללעקטיאָן = מיקייוואָרדקווערי.עקסעקוטע();

רעסולטטאַבלע סעאַרטשרעסולצטאַבלע = רעסולצטאַבלעקאָללעקטיאָן[רעסולטטיפּע.רעלעוואַנטרעסולץ];

די ריזאַלטינג טיש וועט האָבן די ווייַטערדיק שפאלטן פון אינפֿאָרמאַציע: 

וואָרקיד
ריי
טיטל
מעכאַבער
נומער
שטעג
באַשרייַבונג
שרייַבן
סיטענאַמע
קאָללאַפּסינגסטאַטוס
היטהיגהליגהטעדסוממאַרי
היטהיגהליגהטעדפּראָפּערטיעס
קאָנטענטקלאַסס
יסדאָקומענט
פּיקטורעטהומבנאַילורל
סערוועררעדירעקטעדורל

איך דערייווד דעם רשימה פון אַ שאַרעפּאָינט 2010 סוויווע, פאַרנעמונג אַדישאַן.  אַלעווייַ עס וועט זיין האַנטיק צו עמעצער אין צוקונפט.

</עק>

אַבאָנירן צו מיין בלאָג.

גיי מיר אויף טוויטטער בייַ http://www.twitter.com/pagalvin

איינער ריזאַן פֿאַר: "פאַילעד צו עקסטראַקט דער טאַקסי טעקע אין די לייזונג”

בשעת ארבעטן אויף אַ וויזשאַוואַל סטודיע וועב טייל פּרויעקט הייַנט, איך האבן אַ קינד שייַעך-אָרג פון עטלעכע טעקעס צו זיין שטעלן אין די _לייַאָוץ טעקע ווי טייל פון די דיפּלוימאַנט פּראָצעס. ספּעסיפיקאַללי, איך ריניימד אַ. דזשס טעקע פון ​​"טיפּעאַהעאַד.דזשס" צו "טיפּעאַהעאַד(אַלט).דזשס "  איך פּלאַן צו באַזייַטיקן עס ווי באַלד ווי זייַן סאַקסעסער "טיפּעאַהעאַד.דזשס" פּראָוועס ריכטיק.  עס געקוקט ווי דעם:

image

דעם מיד געפֿירט אַ פּראָבלעם מיט וויזשאַוואַל סטודיע ווען איך געפרוווט צו צעוויקלען די פּרויעקט:

Error occurred in deployment step ‘Add Solution’: אַנדערש צו עקסטראַקט דער טאַקסי טעקע אין די לייזונג.

עס טורנס אויס אַז איר זאָל ניט שטעלן אַ פּערענטאַסיס אין טעקע נעמען.  איך אראפגענומען די פּאַרענס און אַז סאַלווד די פּראָבלעם.

</עק>

אַבאָנירן צו מיין בלאָג.

גיי מיר אויף טוויטטער בייַ http://www.twitter.com/pagalvin