JSF : Dynamic link generated by commandLink does not work

In the following code, without <f:verbatim>, it is giving "Duplicate ID in the view" Exception. But with <f:verbatim>, the links generated by commandLink does not work. Please help me to solve this problem.
Thank you in advance.
Regards
Abdul
<%-- jsf:pagecode language="java" location="/src/pagecode/eservice/DisplayMoreEServices.java" --%><%-- /jsf:pagecode --%>
<%@ include file="/includes/g_common_include.jsp" %>
<%@page import="java.util.Map"%>
<%@page import="bh.com.cio.egov.EGOVConstants"%>
<%@page import="javax.portlet.PortletSession"%>
<%@page language="java"%>
<%
     PortletSession ses = renderRequest.getPortletSession();
     Map eServiceCatMap = (Map) ses.getAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT);
     renderRequest.setAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT,eServiceCatMap);
%>
<%@page import="bh.com.cio.egov.vo.EServiceVO"%>
<f:view>
     <script type="text/javascript">          
          function blinkThis(id, color, timeout)
               var idElem = document.getElementById(id);
               if(idElem)
                    idElem.getElementsByTagName('span')[0].style.color = color;
                    setTimeout('switchColor(\'' + id + '\', \'#8A7C5B\', ' + timeout + ')', timeout);
          function switchColor(id, color, timeout)
               var idElem = document.getElementById(id);
               if(idElem)
                    idElem.getElementsByTagName('span')[0].style.color = color;
                    setTimeout('blinkThis(\'' + id + '\', \'#FF3030\', ' + timeout + ')', timeout);
     </script>
<f:loadBundle basename="nls.egovresource" var="nls"/>
<hx:scriptCollector id="scriptCollector1">
     <h:form id="form2">     
<f:verbatim>
          <div class="header-top">
               <h:outputText value='#{nls["eservice_label_title"]}'></h:outputText>
          </div>
          <c:forEach items="${requestScope.REQ_ESERVICE_LIST_BY_CAT}" var="categoryVOs" varStatus="catIndex">
               <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                    <tr>
                         <td> </td>
                         <td class="gray1" height="30px">
                                   <c:out value="${categoryVOs.value.category.categoryName}" escapeXml="false"></c:out>
                         </td>                
                    </tr>
                    <tr>
                         <td width="2">
                              <div align="right">           
                                   <img src='<%= imageRootDir + "dot.png"%>' width="4" height="1" />
                              </div>
                         </td>
                         <td width="100%" >
                              <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                                   <c:forEach items="${categoryVOs.value.eservice}" var="service" varStatus="serviceIndex">
                                   <%
                                        EServiceVO serviceObj = (EServiceVO) pageContext.getAttribute("service");
                                        String action = null;
                                        int serviceId= -1;
                                        if(serviceObj!=null)
                                             action = serviceObj.getServiceAction();
                                             serviceId = serviceObj.getServiceId();
                                        if(action!=null && action.startsWith("$"))
                                   %>
                                   <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                   <c:set var="jstl_to_jsf_url_en" value="${service.serviceAction}" scope="request"/>
                                   <c:set var="jstl_to_jsf_url_ar" value="${service.serviceActionAr}" scope="request"/>
                                   <tr>
                                        <td height="17">                         
                                             <table width="100%" border="0" cellspacing="0" cellpadding="0">                              
                                                  <tr>
                                                       <td width="95%" id="extMoreCell_${catIndex.index}_${serviceIndex.index}">                                                                      
                                                            <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>
                                                            <h:commandLink styleClass="links menu-txt" action="#{pc_EServiceView.doExternalLinkAction}">
                                        <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"/>
                                             <f:param name="PARAM_ESERVICE_URL_EN" value="#{jstl_to_jsf_url_en}"></f:param>
                                             <f:param name="PARAM_ESERVICE_URL_AR" value="#{jstl_to_jsf_url_ar}"></f:param>
                                             <f:param name="JSP_ACTION" value="ACT_EXTERNAL_ESERVICE"></f:param>
                                        </h:commandLink>
                                                       </td>
                                                  </tr>                                             
                                             </table>
                                             <script type="text/javascript">
                                                  <c:if test="${service.serviceId eq '53'}">
                                                       blinkThis('extMoreCell_7_3', '#FF3030', 1000);
                                                  </c:if>                                        
                                                  <c:if test="${service.serviceId eq '54'}">
                                                       blinkThis('extMoreCell_7_4', '#FF3030', 1000);
                                                  </c:if>     
                                                  <c:if test="${service.serviceId eq '55'}">
                                                       blinkThis('extMoreCell_7_5', '#FF3030', 1000);
                                                  </c:if>          
                                                  <c:if test="${service.serviceId eq '56'}">
                                                       blinkThis('extMoreCell_0_8', '#FF3030', 1000);
                                                  </c:if>     
                                                  <c:if test="${service.serviceId eq '57'}">
                                                       blinkThis('extMoreCell_8_8', '#FF3030', 1000);
                                                  </c:if>     
                                                  <c:if test="${service.serviceId eq '59'}">
                                                       blinkThis('extMoreCell_1_8', '#FF3030', 1000);
                                                  </c:if>     
                                                  <c:if test="${service.serviceId eq '58'}">
                                                       blinkThis('extMoreCell_5_6', '#FF3030', 1000);
                                                  </c:if>     
                                                       <c:if test="${service.serviceId eq '28'}">
                                                       blinkThis('extMoreCell_1_4', '#FF3030', 1000);
                                                  </c:if>     
                                                       <c:if test="${service.serviceId eq '20'}">
                                                       blinkThis('extMoreCell_5_3', '#FF3030', 1000);
                                                  </c:if>     
                                                       <c:if test="${service.serviceId eq '60'}">
                                                       blinkThis('extMoreCell_7_6', '#FF3030', 1000);
                                                  </c:if>     
                                             </script>
                                        </td>
                                   </tr>
                                   <tr>
                                        <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>'><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                   </tr>     
                                   <%}
                                   else if(action!=null)
                                   %>                                                                                               
                                   <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                   <wps:urlGeneration contentNode="${service.serviceAction}" allowRelativeURL="false" keepNavigationalState="true">
                                   <%
                                   //String urlC = "http://"+renderRequest.getServerName()+":"+renderRequest.getServerPort()+wpsURL;
                                   String urlC = "" + wpsURL;
                                   %>
                                   <c:set var="url" value="<%=urlC%>" scope="request"/>
                              </wps:urlGeneration>
                                   <tr>
                                        <td height="17">                         
                                             <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                                  <tr>
                                                       <td id="intMoreCell_${catIndex.index}_${serviceIndex.index}">
                                                       <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>     
                                                       <hx:outputLinkEx styleClass="links menu-txt" value="#{url}">
                                                            <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"></h:outputText>
                                                       </hx:outputLinkEx>
                                                       </td>
                                                  </tr>                                                                                                                             
                                             </table>
                                        </td>
                                   </tr>
                                   <tr>
                                        <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>' ><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                   </tr>     
                                   <%
                                        %>               
                                   </c:forEach>                                             
                              </table>
                         </td>
                    </tr>
               </table>                                                                                                                                                                     
          </c:forEach>
          </br>
          <h:messages styleClass="messages" id="messages1"></h:messages>
          </f:verbatim>     
          </h:form>
     </hx:scriptCollector>
</f:view>

1) Throw your code away and use h:dataTable instead of c:forEach to render a table of dynamic size.
or:
2) Hand-assign every UIInput and UICommand element inside the loop an unique ID. E.g. "commandLinkId" + loopIndex

Similar Messages

  • Help: commandLink does not work.

    commandLink does not work. It just simple refreshes the page, and not enter the Listener,( he listener work pretty well in other page).
    Is it dataTable problem? If I not use dataTable but just use JSTL & JSF commandLink and it works fine.
    --------------CODE---------------
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <link rel="stylesheet" type="text/css" href='<%= request.getContextPath() + "/style/styletable.css"%>'/>
    <f:loadBundle basename="bundle.admin.Attribute" var="bdlAttribute"/>
    <f:subview id="AttributeListView">
    <h:form id="AttributeListForm">
    <center>
    <h:outputText escape="false" value="Text Here"/>
    <br>
    <h:dataTable id="AttributeTable"
    columnClasses="list-column-center,list-column-right, list-column-center, list-column-right"
    headerClass="list-header"
    rowClasses="list-row"
    styleClass="list-background"
    value="#{list}"
    var="attribute">
    <f:facet name="header">
    <h:outputText value="#{bdlAttribute.TitleList}"/>
    </f:facet>
    <h:column>
    <f:facet name="header">
    <h:outputText value="#{bdlAttribute.Category}"/>
    </f:facet>
    <h:outputText id="category" value="#{attribute.category}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="#{bdlAttribute.Value}"/>
    </f:facet>
    <h:outputText id="value"
    value="#{attribute.value}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="#{bdlAttribute.DataType}"/>
    </f:facet>
    <h:outputText id="dataType" value="#{attribute.dataType}">
    </h:outputText>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="#{bdlAttribute.Edit}" />
    </f:facet>
              <h:commandLink action="#{Action.action}" styleClass="link">
                   <f:actionListener type="my.AttributeListener"/>
                   <h:outputText value="Edit"/>
                   <f:param name="ID" value="#{attribute.attributeId}"/>
                   <f:attribute name="COMMAND" value="getAttribute"/>
              </h:commandLink>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="#{bdlAttribute.Delete}"/>
    </f:facet>
         <h:commandLink action="#{Action.action}" styleClass="link">
              <f:actionListener type="my.AttributeListener"/>
              <h:outputText value="Delete"/>
              <f:param name="ID" value="#{attribute.attributeId}"/>
              <f:attribute name="COMMAND" value="deleteAttribute"/>
         </h:commandLink>
    </h:column>
    </h:dataTable>
    <h:messages styleClass="validationMessage"/>
    </center>
    </h:form>
    </f:subview>

    Hi,
    I was casually reading your code and noticed the line:'
    <h:commandLink action="#{Action.action}" styleClass="link">
    I recall from other posts that if you want the method on the bean (of the clicked/ selected row) to be called, you probably need:
    <h:commandLink action="#{attribute.action}" styleClass="link">
    Ofcourse you would need to have a method called action in the class of instance "attribute". This method should return string for navigation etc.
    Looking at your code again:
    <h:commandLink action="#{Action.action}" styleClass="link">
    <f:actionListener type="my.AttributeListener"/>
    <h:outputText value="Delete"/>
    <f:param name="ID" value="#{attribute.attributeId}"/>
    <f:attribute name="COMMAND" value="deleteAttribute"/>
    </h:commandLink>
    I don't understand why you need:
    <f:actionListener type="my.AttributeListener"/>
    As I am not coding a lot of JSF I am only answering from what I have read.
    All the best,
    Vinay

  • Linking to a website does not work

    I am new to captivate and am having a problem. On one of my slides, I have a link to a website. I placed a click box over the text and set the action to Open URL or file and specified the URL to open in a new window.
    When I publish the project, the link works when I am in the published PDF file but it does not work when I am in the published SWF or HTM file. Can someone give me some advice on what I may be doing wrong? IF this has been addresssed elsewhere, I am sorry for the duplication. I have searched and could not find anything.
    Thanks in advance.

    Hi there
    "Whitelisting" is a process that is used to identify something as being a "safe" or "trusted" source. I believe what is meant in this context is that you need to add the location to the trusted locations list in the Flash Player as described in the link below:
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Link in pdf-file does not work on Ipad

    With my site www.bartkuijer.nl I offer visitors the free possibility to see (and download) sheetmusic, from music written by me. These are pdf-files. But they can not only SEE the sheetmusic; the music on that pdf-files can also be PLAYED. That's done bij clicking on a link in that pdf-file to a mp3-file of the music on my site.
    This works fine on a pc. When I try this on the Ipad of my wife it DOES NOT WORK!
    So my question is: how come? And what to do to make this work also fine on an Ipad.
    This is important for me, because I want this sheetmusic to place as Ipad-apps for free.

    It works!
    But not with a pdf-file. The Ipad does not recognize links in a pdf-file.
    Te solution is found by making a htm-file with emdedding a quicktime-player and images of the music. This is my first Ipad product. On a pc the player starts immediately; on the Ipad it has to be started.
    Now I have to work on a solution to change this to an app

  • Download link for PS CC does not work

    I am in the CC area, click on PS to download and the link does not work. Here is the link. Any ideas? Working on a Mac; browser is FireFox.
    Same issue occurs when trying to download AI from CC.
    aam://SAPCode=PHSP?productVersion=14.0?passPhrase=Qrm0F9IdGKvpaqBy+4xfM5lOVjrbpmIweKyRgE7A +BqIFujuZhd6TPbicQ26g2ENYDvavIaSUbhb9BXZi83+Angu3EOQc+ntLN6A+aQp/ewWvbhau5iP8ohOSLKpfNJlYT 4bEoGiRkVT1a3siLb7QGha/SK/mjCUPNQIynZDH7M=

    Hi maurak,
    Please use Creative cloud desktop app to download all CC Apps. You can download the CC desktop app from this link.
    https://creative.adobe.com/#products
    Regards,
    Abhijit

  • H:commandLink does not work on Safari

    Hi,
    I'm using JBoss AS 4.2.2.GA with Seam 2.0.1.GA and all its standard libs. But this seems to be a JSF-RI issue which is used by JBoss 4.2.2.GA
    It seems as if <h:commandLink> don't work on Safari 3/Mac OS Leopard, which they did in earlier prjects with jboss 4.0.5.GA and Seam 1.2.1.GA. In this version myfaces was used.
    The commandLink in the following example produces a JavaScript error "Undefined value". It doesn't matter if the action or the form is empty. I've simplified the example but this also happens with a "complete" form.
    The starange thing is that if I copy the generated HTML source into an html file, open that file and click the "command" link, it works (however an error page is shown since this is not a legal Seam request).
    I've no idea why this browser makes a difference between these two files since I have used <h:commandLink> in many earlier projects with earlier versions of the components. Firefox works without a problem.
    I've already changed the extension of JSF/Seam from .seam to .html. Same error.
    Anyone can help here?
    Alex
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core">
    <head>   
    </head>
    <body>
    <f:view>
         <h:form id="aForm">
              <h:commandLink id="theId" >abc</h:commandLink>
         </h:form>
    </f:view>
    </body>
    </html>This is the generated HTML. The JavaScript error points to the line with the link.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>   
    </head>
    <body>
    <form id="aForm" name="aForm" method="post" action="/leadspot/test.seam" enctype="application/x-www-form-urlencoded">
    <input type="hidden" name="aForm" value="aForm" />
    <script type="text/javascript" language="Javascript">
    //<![CDATA[
    function dpf(f) {var adp = f.adp;if (adp != null) {for (var i = 0;i < adp.length;i++) {f.removeChild(adp
    );}}};function apf(f, pvp) {var adp = new Array();f.adp = adp;var ps = pvp.split(',');for (var i = 0
    ,ii = 0;i < ps.length;i++,ii++) {var p = document.createElement("input");p.type = "hidden";p.name = ps
    ;p.value = ps[i + 1];f.appendChild(p);adp[ii] = p;i += 1;}};function jsfcljs(f, pvp, t) {apf(f, pvp)
    ;var ft = f.target;if (t) {f.target = t;}f.submit();f.target = ft;dpf(f);};
    //]]>
    </script>
    <a id="aForm:theId" href="#" onclick="if(typeof jsfcljs == 'function'){jsfcljs(document.forms['aForm'],'aForm:theId,aForm:theId','');}retu
    rn false">abc</a><input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="_id7" />
    </form>
    </body>
    </html>

    alxsde wrote:
    What I still don't understand is why the same HTML code works when loaded from a file and is not generated by JSF.Hi. I committed the fix. For what it's worth, I hand-coded the JS in a static file for testing and was able to reproduce the problem and test the fix there before altering the Mojarra code. Why are you seeing different behavior? * shrug * :P
    Glad it got you going though. :)

  • Download link to upgrade AppWorld does not work on BB9900

    Hi, 
    I just got a new BB9900. When I opened AppWorld I got the message that I needed to upgrade to a newer version of AppWorld. 
    I clicked the link to open the BB site in my browser, and clicked through on 'update today', I then end up at download site, but I can't click any buttons to start the download. Seems like a bug to me...
    Please let me know how I can upgrade AppWorld when the download site does not seem to work.
    Upgrading via the desktop software is no option. As I cannot install any software on my business laptop.
    Thanks in advance for your suggestions! 

    Hey dneirv,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    I would suggest going to www.blackberry.com/appworld/download and then download the file and restart the BlackBerry smartphone and then you should have the most up to date version.
    Let me know if you still have problems with the update.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Dynamic link from premiere to speedgrade not working, constantly crashing

    Hello,
    please help me. I'm trying to color correct my video in Speedgrade (I'm not using 4k files).
    When I try to send the project from Premiere CC to Speedgrade whit dynamic link, everything seems fine, except that when the project finishes to be downloaded from SG, it crashes.
    And it's the same if I try to open a random video clip from inside SG. I open it, put it in the timeline, but when I click on Looks, it crashes.
    All the videos I'm using are quicktime, h.264.
    Thanks a lot

    The Direct Link process should totally bypass Sg's preferences and "needs" as far as frame-rates & sizes & such not. But clearly this whole issue is affecting people with a variety of gear, and it doesn't seem to care if it's a newish or oldish video card. So they've a quirk in their code to deal with.
    Not that Sg deals with framerates perfectly all the time ... I've been having a devil of a time the last couple weeks with any attempt to export an EDL into Sg from PrPro. Footage reads as 29.97 ... sequence is 29.97 ... and the EDL is 29.97. But Sg insists that the EDL is 30 fps ... and even though it's got that bit in the prefs to account for such things if there really IS a difference ... "if edl is x & footage is frame-rate above conform to rate below" and all ... haven't been able to get Sg to accept the EDL. It will play the first 5-6 seconds of each clip & then the monitor goes black and it says "Media out of  range" ... funsies.
    Given the number of times or reasons one might need an EDL approach in emergency situations ... or as I was and a number of others are still trapped into because of this bug ... I've been trying to figure this bugger out. Still trying ...
    Neil

  • Email linEmail link to Yahoo Mail does not work in in FF26.0 Windows 7, 64 bit computer?

    as above

    Do you mean, for example, that if you click a link like this:
    [email protected]
    Firefox does not start a new message in Yahoo! mail?
    I think you will need to set Firefox to use Yahoo! mail using the Options dialog. Please see this article for the steps: [[Change the program used to open email links]].
    Does that work?
    Or if you can't open Yahoo! mail at all, try going in through one of these addresses:
    * Yahoo home page: https://www.yahoo.com/
    * My Yahoo page: https://my.yahoo.com/
    * General mail redirect: https://mail.yahoo.com/
    Note that many users have discovered problems with bookmarks they saved for the "old" Yahoo mail and need to update them to work with the "new" (neo) Yahoo mail.

  • Custom defined links on confirmation page does not work.

    Hi,
    I am trying a define a custom link for the leave request confirmation page in the ESS module of the portal. I am able to see the url link, but when I click on it, it does not navigate to the new page. Here are the steps I completed.
    - created a custom webdynpro application.
    - created an iview and a page for the custom web dynpro application.
    - created test role and workset, tested the iview successfully in the
        portal from the menu.
    -  Defined a custom resource for the iview, put the url of the PCD page in
        the  "URL of PCD Page" field.
    - Defined a custom webdynpro service for the above resource.
    - Defined a custom link on the confirmation page using the above service.
    I would appreciate if anyone can provide any guidance, tips or ideas on missing steps...
    Thanks in advance,
    Saket

    Hi for X in range,
    You may take a try to contact Microsoft local license support team:
    http://www.microsoft.com/en-gb/licensing/contact-us.aspx
    Best regards
    Michael Shao
    TechNet Community Support

  • Flex Hero - Links in HTML component does not works.

    WebView-app.xml
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
    WebView.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <mx:HTML location="http://google.com/" />
    </s:WindowedApplication>
    I can see google homepage in my test desktop application.
    But all links are not work in html document.
    Flex 4.0 and 4.1 SDK works well. Only Flex Hero has this problem.
    How can I fix it?
    Thanks.

    Hi Kevin,
    I had the same problem. This 4.5 build from 11/30/2010 fixed the HTML component issue.
    http://opensource.adobe.com/wiki/display/flexsdk/download?build=4.5.0.18623&pkgtype=1

  • HREF Link to file server does not work

    This is more of a question for IIS 6 but since I couldn't find a forum for IIS I thought I would post here.  I am migrating our Intranet site from an ancient Site Server machine to a rebuilt Windows 2003/IIS 6 machine.  The Intranet uses ASP and
    I have everything working and all pages display correctly in IE8 and IE9.  However, we have several pages that contain links to documents on a separate Windows 2008 file server.  These links work fine on the old server but on the new server nothing
    happens when I click the links.  The links are formatted as follows:
    <a href="file:\\server2\openshare\dept\_Open_Read_Only\docs\schedule.xls" target="_blank">Schedule<o:p></o:p></a></p>
    I have seen references about adding more slashes and have tested various forms like this:
    <a href="file://///server2\openshare\dept\_Open_Read_Only\docs\schedule.xls" target="_blank">Schedule<o:p></o:p></a></p>
    and
    <a href="file:///\\server2\openshare\dept\_Open_Read_Only\docs\schedule.xls" target="_blank">Schedule<o:p></o:p></a></p>
    but no change.  Nothing happens when I click the link.  Note that the links are in HTML files and not imbedded in any ASP or VB code.  Does anyone have any thoughts on this?
    Thanks,
    Joe

    Hi,
    Thanks for your sharing, it can benefit others.
    Regards.
    Jeremy Wu
    TechNet Community Support

  • Dynamic Interface in Query String does not work?

    Hi All,
    i have exposed a interface as a webservice with the help of the Define Web Service in Configuration Builder.
    In the SOAP Sender Communication Channel i have checked the options Use Encoded Headers and Use Query String
    The url of the webservice looks like this:
    http://server:50000/XISOAPAdapter/MessageServlet?channel=:BS:CC_SOAP_SENDER&version=3.0&Sender.Service=BS&Interface=http%3A%2F%2Fnamespace.com%2Fabc%2HER%2FGlobal%5EMIOS_GetDetails
    This works which is great, i can now retrieve supplier details with this webservice. Now i want to expose another interface as a webservice. That URL looks like this:
    http://server:50000/XISOAPAdapter/MessageServlet?channel=:BS:CC_SOAP_SENDER&version=3.0&Sender.Service=BS&Interface=http%3A%2F%2Fnamespace.com%2Fabc%2HER%2FGlobal%5EMIOS_EventBooking
    As you can see i have a different interface in the URL's of the Webservices. I want to have both make use of the same Communication Channel which is possible according to [SAP Note 856597|https://websmp130.sap-ag.de/sap(bD1ubCZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=856597] See Q: Can I set the interface name dynamically from the client? also in this document : [How to Use the XI 3.0 Soap Adapter|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d23cbe11-0d01-0010-5287-873a22024f79]
    The problem is that when i try to call the second web service (EventBooking) that is routes to the mapping of the GetDetails interface, i can see this in SXMB_MONI. Therefore it gives an Error.
    When i try both scenarios in Configuration Builder they both work fine, only the webservice call of EventBooking ends up in the Message Mapping of GetDetail.... Why? And how to solve this?
    Anyone have experience with the feature mentioned in the SAP note?

    After some further examination it seems that both calls are picked up by the same interface. In the RWB both the messages are picked up by the MIOS_GetDetails...
    How can i fix this?

  • I have a problem with uploading pdf files. This was raised in April by Mariano and the solution given - but the link to the solution does not work. How do I get to the solution?

    I have just come across this problem uploading pdf files on FF 3.6. Mariano posted this same problem on 5 Apr ( I found his post after a Google search as a search of this Forum gave no result). It is shown as "solved" but when I click on the Show Solution link it just loops back to the question.
    How do I get to see the solution?

    The following line tells me that this is not a template file, but a document created from a template called index.dwt
    <html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/index.dwt" codeOutsideHTMLIsLocked="false" -->
    This means that you saved a child document as a template file at some stage.
    If you go to Modify->Templates->Detach from Template, you can remove the template structure from your document. All you then need to do is to re-save the document as a template.

  • Easy-to-read link to App Store does not work for iOS 6?

    I have followed https://developer.apple.com/library/ios/#qa/qa1633/_index.html  to create a link that looks like
    http://itunes.com/apps/<applicationname>
    This link work for iOS 5 devices, but not on iOS 6!

    Make sure your Mac qualifies for Mountain Lion >  Apple - Upgrade your Mac to OS X Mountain Lion.
    If your Mac qualifies and you are running v10.6.8 (according to your profile), installing the Mac OS X 10.6.8 Update Combo reinstalls the App Store for you which may help.
    Restart your Mac after the combo is installed then try downloading Mountain Lion. It's ok to do this even with v10.6.8 already installed.
    Keep in mind, for downloading Mountain Lion from the App Store, a high speed (broadband) internet connection is strongly recommended by Apple as noted here > iTUNES STORE - MAC APP STORE - TERMS AND CONDITIONS
    If you need to reinstall OS X or repair the the startup disk using Mountain Lion Recovery, that requires broadband access to the internet via Wi-Fi or an Ethernet connection. OS X is downloaded over the internet form Apple when OS X Recovery is used for reinstallation.
    Speedtest.net - The Global Broadband Speed Test

Maybe you are looking for