Disabling prompts blocks InfoPath publishing

I have a SharePoint 2010 Enterprise environment with InfoPath 2010.  Using several forms published as content types in several site collections, all working fine.
Users are getting prompted Open/Save of documents in libraries (word, excel) - Office Web Apps installed, mime types in place etc.  Found many articles saying that the solution is to disable the verbs Options and Propfind to remedy this behavior. 
I tested in Dev by modifying web.config with
<verbs allowUnlisted="true">
<add verb="OPTIONS" allowed="false" />
<add verb="PROPFIND" allowed="false" />
</verbs>
Opening word & excel documents work as expected, hurray!
Now attempting to
publish InfoPath forms anywhere in the web app causes an error "URL is invalid".
Researching that error typically points to the lack of a root site, which is not the case.  Removing the verb entry from web.config and the InfoPath forms publish fine.
How can I disable prompting on Open for documents in the SharePoint libraries AND continue publishing InfoPath forms?
[email protected]

I think I might have misunderstood your issue, check out these posts
https://support.microsoft.com/kb/943280/en-us?wa=wsignin1.0
 http://support.microsoft.com/kb/926642
This is why the first link is important:
Important This URL list does not affect  the security zone settings. This URL list is used only for the specific purpose of forwarding the credentials to WebDAV servers. The list should be created as restrictively as possible to avoid
any security issues. Also, because there is no specific deny list, the credentials are forwarded to all the servers that match this list.
The second link stops the prompting when opening a document via http, vs WebDAV.
Stacy www.sharepointpapa.com

Similar Messages

  • One or more ActiveX controls could not be displayed because either:1 your current security settings prohibit running ActiveX controls on this page, or 2. You have blocked a publisher of one of the controls.

    hi All,
    i have one of the requirement for an application, we do upload some release not in file server and that is used in application link to see the note. in this note i have converted the Excel into .HTM format(web page). this was working fine, but from last
    two days all of a sudden we are recieving error as above.
    one or more ActiveX controls could not be displayed because either:1 your current security settings prohibit running ActiveX controls on this page, or 2. You have blocked a publisher of one of the controls.
    could anyone please help me on this.
    Thanks and Regards,
    krishnamurthy

    Hi,
    Actually Arnavsharma provided a operable method for you. But no luck, it's not invalid.
    Here I also offer you an method you can try.Please delete the extra (parasite) zone from the Zones subkey :
    Click Start , click Run , type regedit , and then click OK
    Expand the following registry subkey
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones
    Delete the extra (parasite) zone from the Zones subkey
    Note: The parasite zone is a pseudo-graphic number listed before zone number 0. The pseudo-graphic number looks like a miniature upper case "L"
    Close the registry editor
    Thanks!
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • HT1766 I disabled and blocked my phone when it was stolen, i have retrieved the phone and restored service. Now when i turned it on it says iphone disabled connect to itunes.. I have and no change, what do i do?

    I disabled and blocked my phone when it was stolen, i have retrieved the phone and restored service. Now when i turned it on it says iphone disabled connect to itunes.. I have and no change, what do i do?

    You need to restore the phone in itunes in order to use it again, You will have to put the phone into recovery mode and restore to factory settings   http://support.apple.com/kb/ht1808

  • Pass a parameter from BI Dashboard Prompt to BI Publisher Report

    Hi.
    How Can I pass a parameter (value) from BI Dashboard Prompt to BI Publisher Report for an Integrated BI Publisher Report in BI Dashboard? Is there a guide/documentation about this?
    (10g and 11g)
    Thank you bye

    Hi ,
    check the below link ,
    http://blogs.oracle.com/xmlpublisher/entry/running_bip_reports_in_biee_wi
    will be help..we have to pass the presentation variable name to the bip parameter.
    Thanks,
    Ananth

  • How to disable Initialization block in 10g

    Hi ,
    I want to disable Initialization blocks in 10g. , How to do it.
    Rgds,
    Ma

    Hi,
    In your RPD--> right click u r init block variable name
    and right-click an existing initialization block in the Variable Manager and choose Disable or Enable. This option enables you to change this property without opening the initialization block dialog
    Thanks
    Deva

  • Selection screen, dynamic enable and disable of blocks

    Hi,
    i have several parameters in different blocks.i want to enable one block and disable other blocks depending on the radio button selection. could some one help me on this.
    for eg.
    radiobutton1.  under this text entries for date, time etc.
    radiobutton 2. under this text entries for location from, location 2,phone etc.
    so, if i select radio button 1 all the remaining text entries under other radio buttons should be disabled. how to do this.
    your help would be appreciated.
    Thanks,
    kranthi.

    Hi Kranthi,
    I am not sure what you meant by disabling all the selection screen fields. Are you saying ALL the selection screen fields or all fields that don't belong to the selected radio-button.
    Anyway, here is a sample code how you manipulate the selection screen. The key options to use are 'modif id', 'at selection-screen output' and 'loop at screen'.
    *------------------------ Selection Screen ---------------------------*
    SELECTION-SCREEN BEGIN OF BLOCK selscr WITH FRAME TITLE text-000.
    PARAMETERS: p_rad1   RADIOBUTTON GROUP rad1 USER-COMMAND a DEFAULT 'X',
                p_rad2   RADIOBUTTON GROUP rad1,
                p_rad3   RADIOBUTTON GROUP rad1.
    *-- Selection Screen for radio button 1
    SELECTION-SCREEN BEGIN OF BLOCK rad1 WITH FRAME TITLE text-001.
    PARAMETERS:     p_date   LIKE sy-datum DEFAULT sy-datum MODIF ID one.
    SELECT-OPTIONS: s_uzeit  FOR  sy-uzeit MODIF ID one.
    SELECTION-SCREEN END OF BLOCK rad1.
    *-- Selection Screen for radio button 2
    SELECTION-SCREEN BEGIN OF BLOCK rad2 WITH FRAME TITLE text-002.
    PARAMETERS: p_werks   LIKE t001w-werks MODIF ID two.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(6) text-003 MODIF ID two.
    SELECTION-SCREEN POSITION 8.
    PARAMETERS: p_chk  AS CHECKBOX DEFAULT 'X' MODIF ID two.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK rad2.
    *-- Selection Screen for radio button 3
    SELECTION-SCREEN BEGIN OF BLOCK rad3 WITH FRAME TITLE text-004.
    PARAMETERS: p_matnr   LIKE mkal-matnr MODIF ID tri,
                p_verid LIKE mkal-verid MODIF ID tri.
    SELECTION-SCREEN END OF BLOCK rad3.
    SELECTION-SCREEN END OF BLOCK selscr.
    AT SELECTION-SCREEN OUTPUT.
      IF p_rad1 = 'X'.
        LOOP AT SCREEN.
          IF  screen-group1 = 'TWO' OR
              screen-group1 = 'TRI'.
            screen-input = 0.
            screen-invisible = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF p_rad2 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'ONE' OR
             screen-group1 = 'TRI'.
            screen-input = 0.
            screen-invisible = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF p_rad3 = 'X'.
        LOOP AT SCREEN.
          IF screen-group1 = 'ONE' OR
             screen-group1 = 'TWO'.
            screen-input = 0.
            screen-invisible = 1.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    If you want to hide all the, I mean all except the radio-buttons, then simply loop at screen and modify every entry except the radio-button entries to screen-active 0. Something like this.
    LOOP AT SCREEN.
      IF SCREEN-NAME = 'RAD1' OR
         SCREEN-NAME = 'RAD2 OR
         SCREEN-NAME = 'RAD3'.
      ELSE.
        SCREEN-ACTIVE = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Srinivas

  • What do I do if I need to disable Add Block but I need it desperately for Youtube?

    I've had a warning on my Tumblr saying I need to disable an extension for all the add-ons on XKIT to work properly. The problem is that I really don't want to disable Add Block as it's so useful and I really need it. Is there another way to get Xkit to work but with Add Block still in use?

    Adblock Plus? There should be a way to create a site-specific exception or to disable it temporarily while using Tumblr. Does the FAQ help?
    https://adblockplus.org/en/faq_basics

  • Username and Password Prompt Blocked Internet Explorer

    I'm not sure that's IE behavior. I've never seen nor read about it before.

    Hi All and thanks for your help!
    I've wasted hours trying to find which of my (many many group policies) might be causing the IE to block the username / password prompt on this website.
    What I've tried :
    1. testing GPOs one by one on a VM to check which one is causing this
    2. adding the site to trusted, local internet and what not
    3. disabling credentials pass-through in IE
    Can anyone please tell me which registry setting controls this behavior ?
    This topic first appeared in the Spiceworks Community

  • Not able to pass multi values from prompts to Bi Publisher 11g

    I am using a choice list in dashboard prompt with default value:"All Column values" and set to a presentation variable:"presvar
    In BIP 11G data model,in where clause i am writing it as:
    where tablename.colname in (:presvar)
    This is working only when i select single value in prompt ,if i select multi values in dashboard prompt it is not fetching me exact results.It is throwing error:"Invalid parameters"
    Kindly help if someone has faced the situation
    Version:11.1.6.2

    This is a bug:
    Bug 11793832 : MULTIPLE VALUES IN A DASHBOARD PROMPT DOESN'T WORK WITH BI PUBLISHER INTEGRATED
    I have been told that a fix is due in next patch set 11.1.1.7.2

  • How can I disable prompt to ask viewers to dload Flash?

    Thanks to this forum, I now have a Flash video on my website. And I'm on a mac! Now, here' s my latest problem.
    When I added the Flash video, there was a selection in Dreamweaver where, when clicked, the page will prompt viewers who don't have the latest flash version to download it. Way cool.
    However, when I select "Insert" "Media" then "Plug in" and I add a quicktime video, I can view the quicktime video, only this prompt still appears asking viewers to download flash, and when I add the video, there doesn't appear the same selection asking if I want to prompt viewers to download Flash or Quicktime. So, what is the code to disable that function from this page?
    Also, if you know the code to prompt viewers to download quicktime, that'd rock. BUT, I posted a message on the apple message boards, 'cause I realize that's their focus.
    Thanks.

    How do I rip out the flash references? What do those look like?
    What I'm trying to do is this...
    I have one page where I have a flash video. On that page, when a user doesn't have flash installed, the page correctly asks if they'd like to install it.
    I also have a page with a quicktime video. I'd like it so that if a user doesn't have quicktime, the user is asked if they'd like to install it. As it is now, the page asks if they'd like to install flash. I don't want it to ask if they'd like flash, and don't see any settings in dreamweaver to turn off that feature. It automatically added it, even though I added a quicktime plugin to the page. How can I turn that off, that is, so it doesn't prompt viewers to download flash? If it's a matter of removing code, I can do that, but how will I know what flash code looks like? Please help.

  • Read-only textbox and/or disable buttons in Infopath 2013

    In a InfoPath 2013 custom list form, my requirement is to make textboxes read-only, disable buttons, and/or create new buttons so users can not update fields in a custom list once the user has updated data in the list. Basically after the user hits the 'save'
    button so that the data is saved.
    The requirement is not to set up custom permissions since my SharePoint administrator said I should find another option. This administrator said he does not see a reason for only an 'add' permission.
    Thus can you tell me how to meet my requirements? Can you show me screen prints, pictures, or urls on how to solve the problem?

    Hi,
    According to your description, you might want to prevent users from editing the existing items.
    There are two workarounds I can provide as below:
    As the first workaround, you can remove Ribbon from SharePoint InfoPath List Form via modifying the OOTB settings of InfoPath Web Part.
    Here is a link about more details, you can use it as a reference:
    http://the-north.com/sharepoint/post/Remove-Ribbon-from-SharePoint-InfoPath-List-Form
    As the second workaround, you can apply the CSS code below to your page, it will hide the “Edit Item” button in the Ribbon:
    <style type="text/css">
    #Ribbon\.ListItem\.Manage\.EditProperties-Large{display: none !important;}
    </style>
    About how to add JavaScript/CSS into SharePoint page:
    http://blog.cloudshare.com/2012/10/29/how-to-insert-custom-javascript-code-in-sharepoint-2013-pages-part-i/
    Best regards
    Patrick Liang
    TechNet Community Support

  • How do I disable the blocking mode so I can use the apps I want to install.

    I want to disable permanantly this stupid blocking firefox does when I want to install or upgrade an app, particularly Java. It is my decision what goes on my computer not firefox. I was going to go to another browser when a person from firefox on facebook said I could disable it but didnt tell me how. So I want to know how to so I can disable it for good or I shall have to find another browser. Security or not its my choice what I put on my computer and I wont be dictated to about what I can or cannot have on my computer.

    hello Jenna9, i'm not aware that there is any blocking built-into firefox when you're updating java (quite on the opposite, users are encouraged to keep their plugins up to date). could you provide the exact wording of the blocking notification that you are seeing or provide a [[How do I create a screenshot of my problem?|screenshot]]?

  • How to disable security block on intranet file:///// urls?

    I have the latest version of firefox esr and im trying to remove the security blocks which stop it from opening file:///// urls on our intranet website.
    Can anyone tell me how I can disable the feature and get it to open the urls with the relevant program (a folder share windows explorer, and any other document to use the windows default program list).

    Hello,
    Please check if the links below help you in configuring opening of file:// URIs. Please do note that FF does support file:// URIs out of the box, provided the format is set properly
    *[http://superuser.com/a/103030 Open file:// URIs in Firefox]
    *[http://kb.mozillazine.org/Firefox_%3a_Issues_%3a_Links_to_Local_Pages_Don%27t_Work Firefox local pages]
    Hope this helps.

  • Reader 11 - Disable prompt for updates when installing?

    I have used the Customization Wizard to customize all of our Acrobat 8,9,10,11 installs of both Pro and Std without any problems.  But when I customize the Reader 11 install so that it does not download updates, the setup program still prompts me with the question about updating.  I have tried 11.0.0 and 11.0.2 with similar behavior and would like to make sure the installs are consistent across the organization by not prompting the installer with this question.  (Yes, I have verified the Disable Product Updates is checked.)
    How can I banish this dialog from the Reader install?

    I would ask why you need to allow installation in UI mode, but assume that you have valid reasons for that.
    Since you are using CW, you can open Direct Edit view in CW, go to InstallUISequence table, find SelectARMMode record and change it's condition to be NEVER

  • Disable prompt to save file after signing

    I have created a PDF with digital signatures, then added submit button to submit form to next approver in the chain.  I do not want the signer's to be prompted to save the file locally, just forward the document with signature.  Can the prompt to save be disabled yet still send email with signature?
    Thanks,
    David

    Hi,
    You need to update the numeric value: RunState.InitialSelection.SelectedFile.ChangeCount. Add 1 if a change in your edit has occured.
    Regards
    Tom Andres Lomsdalen, CTD

Maybe you are looking for

  • How do I identify all of the methods in a .jar file?

    I'm compiling a small java application that includes two .jar files in the classpath. Is there any way I can identify all of the objects and methods in the .jar files?

  • Samsung U600. Please help

    Does anybody has a solution to use isync with the new samsung U600?

  • Application Control Policies - Is that it?

    Restrictions based on executable name only seems very restrictive, maybe I came in with the wrong mindset. I was looking at this been an SRP like replacement but the inability to do path based rules or default deny all but allowed programs. Been exec

  • Java Interface Question.

    There are classes in the Java SDK, such as the Interface: org.w3c.dom.Document that have factory methods in them that carry out actual operations. But how can this be possible, because when I program an interface: public interface test { public void

  • Two mouse out commands... one not working

    I have a several rollover images that when moused over, changes itself and also changes another image on the page.  I have used the behaviors panel to trigger both mouse over functions and the swap image automatic resotre function for mouse out.  How