Does the CreateFirefoxOnWindowsPlugin JS function works in Sharepoint Server 2010

Hello,
I read the plug-in documentation of FFWinPlugin Plug-in (http://msdn.microsoft.com/en-us/library/ff407576.aspx ).
This article specifies that this applies to Sharepoint Foundation 2010 but
does it also applies to Sharepoint
Server 2010?
Thank you.
Kind Regards

Hi,
According to your post, my understanding is that you want to use FFWinPlugin Plug-in in SharePoint 2010.
Per my knowledge, the CreateFirefoxOnWindowsPlugin JS function works in Sharepoint Server 2010.
Here is a similar thread for your reference:
https://social.msdn.microsoft.com/Forums/office/en-US/280bf2b2-fe35-4d46-94cf-168f5b387fde/configuring-ffwinplugin-to-enable-firefox-integration?forum=sharepointdevelopmentprevious
In addition, I recommend that you can use IE Tab in Firefox.
For more information, you can refer to:
https://addons.mozilla.org/en-US/firefox/addon/ie-tab/
Best Regards,
Linda Li
Linda Li
TechNet Community Support

Similar Messages

  • GRC - Role Expert v5.2: how does the Transaction Usage functionality work

    Hi All,
    re: GRC - Role Expert v5.2: how does the Transaction Usage functionality work
    We are implementing GRC suite v5.2, but specifically my question is regarding Role Expert:
    SAP documentation states that it is possible to use Role Expert to do the following: for roles allows you to see if, or how much, a transaction is being used, when it was last used, and who used it.
    My question is how without Audit Log or RBE?
    Let me know if you have ever used this functionality and if it requires the SAP Back-End Audit Log to be turned on or RBE.
    Thanks in advance!

    Hi Gary,
    You dont need a RBE tool activation to get the successful transaction usage log with Role Expert.
    Role Expert functionality allows you to log all the transactions that have been added/deleted to the role that is changed. Also when you create a new role via the Role Expert then automatically the transaction log starts.
    If you go the "History" tab in the Role Expert, then you can find all the last changes made to the role.
    Also you can go to the "Risk Analysis" tab to find the log of Risk Analysis performed with the added tcodes.
    Hope this helps.
    Thanks,
    Kiran Kandepalli.

  • How to deploy the new version of webPart in SharePoint Server 2010

    Hi friend's ....I want to deploy the new version of webPart in SharePoint Server 2010. Is there any way for this....? In SharePoint sever 2013 there is version feature available for the apps..Same thing i want in SharePoint Server 2010 for webpart. Please
    suggest me....is it possible or not ..?

    i am not aware if their is new version option rather i know instead of retract and Re install, you can simply update the solution.
    check this: http://blogs.southworks.net/aortega/2010/02/05/sharepoint-2010-how-to-deploy-custom-webparts/
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • How does the "Read TDMS" function work when reading part of a data file?

    Hi everyone,
    I have stored some rather large .lvm files that causing me a a big headache when trying to read/analyse the data.... As a work around I first convereted these files to .tdms.... Now the files are much smaller (50%) and can be load/plot within a couple of seconds rather than 10's of seconds.
    Specifically, the files include 7 channels of data that were sampled at 2kHz for about 8-9 mins..... So, each file contains about 700,000 data points or elements.... I am using a producer/consumer architechure to read/plot all the data, then using cursors to identify a data subset, which is send via a queue to the consumer where analysis occurs.... Given the size of the files, when subset is quite large I get "Out of Memory" errors and LabVIEW crashes.
    What I am thinking is that I can down-sample or decimate the data in the producer back to 1kHz (I need to ms resolution so I can see the spikes and can appropriately selected the subset) then index back into the original tdms file to send the undeciated data to the consumer.
    With the "Read TDMS" function, the help states:
    COUNT: Specifies the maximum number of data elements to read from the .tdms file for each channel. The default is –1.
    OFFSET: Specifies the number of data elements into the .tdms file at which the function begins analyzing the .tdms file. The default is 0.
    I am confused by the term "elements". Does this mean actual "data points" as in elements within the 2D array? Or bytes? I am hoping array elements... Would this then mean that given my 7 channels of data, each element value that is a multiple of 7 would index into a new line of data? I also assume this index is zero based... So with no offset, a count value of 0 would return all the data elements at time 0.0000s for all channels (regardless differences in the precision of each channel, unlike bytes), a value of 7 would return all the data elements at time 0.0005s, a value of 14 would return all the data elements at time 0.0010s, etc etc..
    Also, if anyone has any example code for indexing into a file using this method they could shareI would be very appreciative... I would assume a for loop could also be used to read the data subset into the consumer in smaller chunks to reduce the memory load?
    Many thanks,
    Jack

    You should have a different channel in the TDMS file.  So you are reading X elements from a channel starting at element Y.  Yes, those are elements in the array, not Bytes.  NI did a good job of making the API easy to use.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Help w/MaxDB Function; also: how does the "Debug SQL" function work?

    Hi there forum folks,
    In my former life, I was a Basis guy, but I haven't had the pleasure of working directly with SAP applications in a few months.  My current project is to attempt to use MaxDB in a real estate environment.  We're tracking home listings so that we can build statistical reports... such as "what agents are in the Top 100 in postal code X?"
    Anyway, as part of this project, I have attempted to construct my very first MaxDB database function.  Unfortunately, it doesn't give me the answers I'm hoping to see.  Here's the function:
    CREATE FUNCTION COUNT_LISTINGS (AGENTID CHAR(10)) RETURNS FIXED(6,1) AS
      VAR COLISTINGAGENTID CHAR(10);
          LISTINGAGENTID   CHAR(10);
          MLSNUMBER        CHAR(7);
          UNITS            FIXED(6,1);
      SET UNITS = 0;
      DECLARE FUNCTIONRESULT CURSOR FOR
        SELECT MLSNUMBER,
               LISTINGAGENTID,
               COLISTINGAGENTID FROM FREDDIE.GLAR_SOLDS
         WHERE LISTINGAGENTID = :agentid OR COLISTINGAGENTID = :agentid;
      IF $COUNT IS NULL THEN
        BEGIN
          CLOSE FUNCTIONRESULT;
          RETURN UNITS;
        END
      ELSE
        SET $RC = 0;
      WHILE $RC = 0 DO BEGIN
        FETCH FUNCTIONRESULT INTO :mlsnumber, :listingagentid, :colistingagentid;
        IF ( LISTINGAGENTID   = AGENTID AND COLISTINGAGENTID IS NULL ) OR
           ( COLISTINGAGENTID = AGENTID AND LISTINGAGENTID   IS NULL ) THEN
          SET UNITS = UNITS + 1
        ELSE
          SET UNITS = UNITS + 0.5;
      END;
    CLOSE FUNCTIONRESULT;
    RETURN UNITS;
    I've tried to follow the official MaxDB documentation.  My first deviation from that standard was the use of the "$COUNT" variable (instead of the "$RC" variable) immediately after the DECLARE/SELECT statement above.  When I tried to use $RC, for either a successful or unsuccessful query, $RC was always set to a non-zero value.
    I believe I'm past that, but now my issue is down around that FETCH statement.  The UNITS variable doesn't end up with the value I expect.  I know that it can be terribly confusing to try to analyze someone else's logic, but here's a brief narrative that describes what I'm trying to do...
    The GLAR_SOLDS table holds one line for each home sold.  It's keyed by the MLSnumber.  Each record also stores up to four agents who've been involved in the transaction: the listing agent, the co-listing agent, the selling agent, and the co-selling agent.  The database function I've written above pertains to the listing side only.  If I can get this to work, a separate function will process the selling side.  If no co-listing agent is involved in a given sell, that agent should get credit for 1 unit sold.  If he/she has help from a co-listing agent, the agent should only get credit for 1/2 unit sold.
    Also, does anyone know how the "Debug SQL" functionality is supposed to work within Database Studio?  When I right-mouse click on my function, and follow the path thru "Debug As...", after entering the connection & function arguments, I'm presented with an empty screen.  If you could point me to some documentation somewhere, I'd gratefully read it.
    I'm using MaxDB 7.7.06.09 on Windows XP (WIN32) with MaxDB Database Studio 7.7.06.09 (build 009-123-202-944).
    Thanks everyone for your help & advice.
    ~Fred

    Fred,
    please either provide the full SQL statements for your example or stick with mine.
    I'm not going to build it up myself a second time to suit yours now.
    >  But now, my issue is how do I store the resultant data in its own table?
    So where is the problem?
    INSERT INTO <target table> (field 1, field 2, ...)  (<your query>)  UDPATE DUPLICATES-
    With my tables this looks like this:
    create table sell_result (list_agent varchar(20) primary key, SUM_CREDIT fixed (10,2))
    insert
    into sell_result (list_agent,sum_credit)
        ( select list_agent, sum (credit) as SUM_CREDIT
          from ( select sh.object_id,lag.name as list_agent, 1 as credit
                 from soldhomes sh join agents lag on lag.id = sh.list_agent_id
                union all
                 select sh.object_id, lag.name as list_coagent, 0.5 as credit
                 from soldhomes sh join agents lag on lag.id = sh.list_coagent_id
          group by list_agent
    update duplicates
    Check what we have now
    sqlcli db770=> select * from sell_result
    | LIST_AGENT           | SUM_CREDIT        |
    | -------------------- | ----------------- |
    | Lars                 |              4.50 |
    | Lisa                 |              3.00 |
    | Mona                 |              2.50 |
    | Paul                 |              2.50 |
    4 rows selected (600 usec)
    Now add some sales data...
    Insert into soldhomes values (11, 1, 2, NULL, NULL)
    Insert into soldhomes values (12, 2, NULL, NULL, NULL)
    Insert into soldhomes values (13, 2, NULL, NULL, NULL)
    Re-run the INSERT command and you're done:
    sqlcli db770=> select * from sell_result
    | LIST_AGENT           | SUM_CREDIT        |
    | -------------------- | ----------------- |
    | Lars                 |              5.50 |
    | Lisa                 |              3.00 |
    | Mona                 |              5.00 |
    | Paul                 |              2.50 |
    4 rows selected (390 usec)
    Neat, isn't it?

  • How exactly does the logical shift function work?

    I think I am missing something very basic here - I am trying to left shift an 8 bit unsigned integer by one place (x<<1)in each iteration of a while loop. So if I start with a number, say 18, the first iteration I get 36, then 72, 144 and after this 32, 64 and so on. I'm not able to do this apparently simple operation in LabVIEW. I tried the logical shift function and a formula node, but both dont give me what I need. The formula node appears to be close in that it gives me 18,36,72,144 but after that I get 255 rather than 32. I dont understand what the logical shift function is doing here. I have attached a vi here that shows what I am trying to do. Any help explaining the mistake I am making will be greatly apprec
    iated.
    Thanks.
    Attachments:
    Logical_Shift.vi ‏17 KB

    You have the inputs confused. If you want to left-shift by 1 at each iteration, the "1" goes on the upper "y" terminal and the number from the shift register (the "shiftee") goes at the bottom. (see attached modification).
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    Logical_Shift_2.vi ‏27 KB

  • Does the "import library" function work?

    I'm a big fan of Apple and its Mac OS X, but let me tell you that the iTunes is not a good software. And I, as a big music fan, a person who has used a lot of software for managing music, I even believe that iTunes is one of the worst. I could discuss this with any person who would think the opposite and he/she would finally admit that I’m right.
    One of the evidences is that it was a day I decided to export my library. When I have needed to import the xml file generated (after my iBook hard-disk broke down) containing all my music after a long time working on it… when I decide to “import” the library… I DON’T GET MY MUSIC!!
    This library was built on music files saved on an external hard disk. So everything is when it was previously. And now the iTunes is telling me that it cannot find “some files”.
    Can anyone help me to believe that some of the most basic functions of any software of music (to import a security copy of your library) works?????
    Please!!
    Thank you,
    davidjm

    Pie56694 wrote:
    Hi Hummer1,
    The Call Library Function Node is valid for real-time targeted VIs.  "...will the Vi work properly when targeting the real time operating environment?" depends on the DLL.  National Instruments recommends you use CVI Real-Time for C-based shared
    libraries. This will allow for proper compilation and will allow for remote
    debugging.  If the shared library is C++-based, National Instruments recommends
    you use VC 6 or VC 7.1 compilers.  Other compilers will require run-time
    components to be statically linked when compiled, resulting in a large DLL,
    though these may not all be supported in Real-Time.
    Please see "How Can I Verify that My DLL is Executable in LabVIEW
    Real-Time?" and "Using LabWindows/CVI DLLs in LabVIEW Real-Time Applications" for more information.  I hope this helps.
    Message Edited by Pie56694 on 06-24-2008 04:31 PM
    One ceveat here. If your RT target is VxWorks based (like the cRIO-901x) you will need to recompile the DLL into an .out library using either the (paid for) VxWorks IDE or the free Gnu based VxWorks command line tool chain that is compatible with the VxWorks version running on the target. The VxWorks version is depending on the LabVIEW RT Version you are using with VxWorks 6.1 for LabVIEW RT 8.2 and VxWorks 6.3 for LabVIEW RT 8.5.
    And that shared library can not make use of any Windows APIs since they do not exist in VxWorks. Standard C runtime and LabVIEW manager functions are the only ones you can use.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How does the RoboEngine Search Function Work?

    When I perform a keyword search via the RoboEngine, the
    results include .doc, .xls, .pdf files.
    I thought the RoboEngine performed a keyword search through
    the HTML pages. Was I wrong in that assumption?
    Thxs.

    My problem: The RoboEngine (v4) is not finding keywords in
    the project HTML pages. For example when I search for the term SPM
    (which is also a link), RoboEngine returns no result. Any ideas why
    it is not returning a result?
    By the way, we are working to upgrade our x.5.0.2 RH client,
    and V4 RoboEnginer to 7.
    Thanks.

  • HT201066 Does the screen record function work with quick time pro for windows?

    I am looking at purchasing QuickTime Pro for Winodiws (yes I will be getting a mac soon...) and I was wondering if the screen recorder function that is with quick time on macs is still available on windows?

    Screen recording is part of QuickTime X, not QuickTime Pro. QuickTime X is only available for Macs.
    (83582)

  • Re:Which port does the copy file function use?

    Hi ,
    How does the Copy File Function work?
    Which port is used?
    My problem is … When user copies the large request output file, the network is slow. So I want to manage bandwidth such as using Qos .
    Regards .

    Hi hussein ,
    Please find the details
    1)Please post the details of the application release, database version and OS .
    App Release: 11.5.10.2
    DB Version: 10.2.0.4
    IBM AIX on POWER Systems (32-bit)
    2)How does the Copy File Function work?
    What copy file function you are referring to? Please post the navigation path.
    1. Submit Request
    2. View Output File
    3. Tools --> Copy File
    3)Which port is used?
    My problem is … When user copies the large request output file, the network is slow. So I want to manage bandwidth such as using Qos .
    How are you planning to manage the bandwidth of specific port?
    If I know which port is used, I can manage it (give it to low priority)
    Regards .

  • I am Facing problem with "Send to connection" in SharePoint Server 2010.

    Hi all,
    I am working on SharePoint Server 2010
    I have a site collection and sub sites in it.
    I want to move the document form one site library to another site library.
    Since it can be done by configuring, Send to connection in Central Admin.
    I activated Content Organizer rules in both the sites.
    I added new connection for one site and append the url
    /_vti_bin/officialfile.asmx
    I tested the url on clicking
    Click here to test link it gives me message that
    "URl is a Valid routing Destination".
    and finally I added the connection
     After configuring this I open the other site and uploaded a document in it and after uploading the document I selected send to
    option and clicked on my connection what I created in central admin.
    But it gives me error: The site could not be found or accessed
     Please help me for this...
    Thanks in advance..
    Faheem Ahamed

    Hi,
    In my case, I'm routing an InfoPath form (After having approved) to an archived Forms Library within the same sub-site.
    I created Send To connection, setup Content Organizer rules, setup Record Retention policy on the source Forms Library, but even after running both the Timer jobs (Information management policy and Expiration policy), the document didn't get moved to the
    archived library.
    I checked under Compliance details of the form that the Scheduled occurrence date shows 'Completed' i.e. the Information management policy timer job did its task, but the other Timer job didn't move this form.
    Then I tried sending this form manually using Send To. In that case, although the form got moved to the archived library, but I see 'Unexpected error' on the screen.
    The ULS shows following entries:
    <nativehr>0x80070057</nativehr><nativestack></nativestack>Invalid data has been used to update the list item. The field you are trying to update may be read only.Possible mismatch between the reported error with code = 0x8107210c
    and message: "Invalid data has been used to update the list item. The field you are trying to update may be read only." and the returned error with code 0x80070057.
    OfficialFile: File
    http://server/sites/site/SourceFormsLibrary/InfoPathForm.xml was not saved at router location TargetLibrary. Exception <nativehr>0x80070057</nativehr><nativestack></nativestack>Invalid data has been used to update the list item.
    The field you are trying to update may be read only. thrown at:    at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion,
    Boolean bPreserveItemUIVersion, Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties,
    Boolean bCheckOut... 
    Critical  ---   The
    http://server/sites/site/_vti_bin/OfficialFile.asmx site is not properly configured for this request.
    Can somebody tell how manual Send To is working within the same site collection.
    Any help will be appreciated!
    Thanks!
    Ashish

  • Cannot get the Mobile Template to work in SharePoint Foundation 2013

    Hello all,
    I am trying to get the Mobile View to work in SharePoint Foundation 2013. When I access the site on any phone it gives me the following error:
    "Cannot complete this action. Please try again."
    The URL it forwards me to is "http://<sitecollectionurl>/_layouts/15/mobile/mblwpa.aspx?Url=%2Fdefault%2Easpx
    So it seems to me like it's working, but there's something wrong with the template. The template has definitely never been modified.
    Can anyone help?
    Thanks,
    Vinny
    Vinny

    So I've got some more info for this issue. We are seeing:
    Control template "Mobile_STS_HomePage_Redirect" does not exist.
    Control template "Mobile_1_HomePage_Redirect" does not exist.
    Does anyone know how to enable these? I tried by name, but it doesn't find them. This is the error I get:
    PS C:\> Add-SPSiteSubscriptionFeaturePackMember <FeaturePackGUID> -FeatureDefinition Mobile_STS_HomePage_Redirect
    Add-SPSiteSubscriptionFeaturePackMember : Cannot find a Feature object with Path or Id: Mobile_STS_HomePage_Redirect in scope Local farm.
    At line:1 char:1
    + Add-SPSiteSubscriptionFeaturePackMember <FeaturePackGUID> -Fe ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidData: (Microsoft.Share...aturePackMember:SPCmdletAddSite...aturePackMember) [Add-SPSiteSubscriptionFe
       aturePackMember], SPCmdletPipeBindException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletAddSiteSubscriptionFeaturePackMember
    Vinny

  • Two part question 1) what happens if you  sign into messages beta on os x lion 10.7.5 after it expired? does the whole application not work or just imessage? 2) does installing messages beta on os x lion 10.7.5  delete ichat?

    Two part question
    1) what happens if you  sign into messages beta on os x lion 10.7.5 after it expired? does the whole application not work or just imessage? can you stil use AIM, jabbar, google talk, or yahoo?  if you open messages beta does it immediately tell you that messages beta expired?
    2) does installing messages beta on os x lion 10.7.5  delete ichat or just transform ichat into messages beta giving the illusion that ichat is deleted?

    Hi,
    It was never completely clear whether it was just hidden or whether Apple ran a download page for iChat 6.
    As the Download for Messages Beta was separate and "Deleted" iChat it would seem it would be another download for iChat 6.
    iMessages will not function as it is only an Account type within Messages and iChat 6 does not have it.
    Therefore messages on the iPhone will not sync to the Mac. (until you get Mountain Lion and Messages in that OS X version).
    Mountain Lion and it's full version of Messages will not sync the iMessages that have happened in between the 14th December 2012  (end date of Messages beta) and the Install of Mountain Lion if you decide on that route.
    8:51 PM      Sunday; May 5, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How to get the Wiki search functionality working?

    hi,
    Another Wiki question regarding the 7.1u1 Portal wiki functionality: What is necessary to get the wiki search functionality working? Right now when using the wiki search page all it does is return to the search form, no errors but no hits either. I guess some additional administrative work is needed to get search working?
    thanks, tom

    haven't touched anything except for the wiki template jsps to change the design. it is a linux rh4 install. there are no communities on that server (yet), just the wiki portlet in a tab so far. is the wiki search dependent on the portal search server or totally separate (ie self contained wiki search)? any additional services or such that need to be started for it to work?

  • Does the new ipad gps works without 4g reception

    does the new ipad gps works without 4g reception?

    Yes.
    More GPS information...
    GPS signals are separate from and completely unrelated to both the Internet and the cellular telephone network.  GPS signals come directly from the GPS satellites.  They provide latitude and longitude information to GPS receivers.  Navigation software then takes that latitude/longitude info and converts it to land mass, roads, bridges, highways, buildings, etc.
    Most navigation software stores the maps right in the iPad/iPod/iPhone but a disadvantage is that the maps must be periodically updated (perhaps once every two years).  The Internet is not required to use the system but it is required to update the maps.
    Some navigation software gets the maps from the Internet and requires an Internet connection to function but an advantage is that the maps are always up-to-date.
    The WiFi+3G/4G iPad and the iPhone both have a GPS receiver.  The WiFi-only iPad and the iPod do not and these devices require an accessory.

Maybe you are looking for

  • Itunes was not installed correctly! PLEASE help!

    Hello i need help!   For the last 3 weeks my itunes is not working ' itunes was not installed correctly please reinstall error 7 ". and quicktime isen't wokring either ' pleas install apple application support here is a list of thinks that i'v tried

  • Add ISE 1.3 in a cluster of ISE 1.2

    Hello, I have a cluster of 2 cisco ISE 1.2 VM (primary and secondary) and I would like to add two other 1.3 VM as secondary as well. Do you have any tips especially in terms of certificate? Regards Eric

  • HT2494 Using a webcam on an external monitor with macbook pro?

    I have a macbook pro connected to a dell external monitor.  I was wondering if it were possible to use my monitors webcam instead of having to use the one built in on my macbook pro?

  • Firefox doesn't handle Flash

    Whenever I try to load a video in YouTube, the audio plays but the video and the video controls do not load. I can get the videos to work on Facebook, but when I right-click and select "Settings" nothing responds to mouse clicks. Firefox also cannot

  • Possible to Zoom in and out on a Video?

    I am using Adobe Premiere Elements 4.0 on Vista. I have a video clip of my son playing hockey, and I'd like to zoom in and out on him to show the audience where he is so they can follow him during the sequence. Any ideas on how I can do this? Alterna