LoadMovie with absolute URL

Hi there,
I am very new to Flash and have been going around in circles for days trying to figure this out.
I can't get swf to loadMovie when on server. I understand I need to use the path relative to the html page.
Server info:
Server Name:   server33.000webhost.com
Home Root (file system path):   /home/a6667948
Folder to upload files:   public_html
Have tried this but doesn't work:
on (release) {
    My_mc.loadMovie("http://server33.000webhost.com/home/a6667948/public_html/Images/Test.swf");
My html page and 'Images' folder are located inside 'public_html' folder.
Main.swf and Test.swf are both located inside 'Images'.
Is there any obvious thing I have done wrong?
Also: I have got the code below from forum to find the absolute URL... but get the following errors:
I am desperate to get my flash site working but just aren't savy enough to figure it out. I need your help.
Thanks in advance.
ERRORS--
';' expected
public function getAbsoluteUrl(urlInput:String):String {
Wrong number of parameters;
loadMovie(getAbsoluteUrl(_root._url) + "_assets/lib.swf");
CODE--
public function getAbsoluteUrl(urlInput:String):String {
var strResult:String = "";
if(urlInput.indexOf("http://") > -1) //only convert when online
if(urlInput.indexOf(".swf") > -1) // only convert when an actual .swf file is used
strResult = urlInput.substring(0, urlInput.lastIndexOf("/")+1); // find absolut path minus filename of .swf
return strResult;
loadMovie(getAbsoluteUrl(_root._url) + "_assets/lib.swf");

if you use an absolute url you will have security issues to overcome.  unless you're loading a swf from a different domain, there's no reason to add this additional complexity to your task.
if you can use a relative path, you need to know the path from the html file that embeds your main swf to the swf you want to load.

Similar Messages

  • Is there a Component for rendering images with Absolute URLs?

    I would like a component like <h:graphicImage> that would accept absolute URLs instead of relative ones. Does such a beast exist or should I write one myself?
    Note, I'm looking for a component because I want the image to appear in a table and the URL changes for every row. If I just handcode a <img> tag in the <h:column> tag, it doesn't get rendered for every row.

    <h:graphicImage> can use absolute URL.

  • Including an absolute URL in a jsp

    All the documentation that I have seen says that I CAN NOT include a file in a jsp using an absolute URL...only relative URL's can be included. Is this true? If not, can somebody give me an example of how to do this?
    Thanks,
    Pat

    Hello Pat
    What is the URL doing is it trying to access a JSP file
    if so , Then you meed to include the port number with the URL
    if not an JSP then I Think It works fine with Absolute URL
    Good Luck
    Ranjith

  • Creating absolute urls  in CQ for consuming externally.

    1) Selector which gets parsys
        StringWriter defaultHtml = new StringWriter();
        pageContext.pushBody(defaultHtml);
      %>
        <cq:include path="<%=nodeName%>" resourceType="<%=resourceType%>"/>
      <% pageContext.popBody();%>
    <%=defaultHtml %>
    2) the above produces relative urls, so the externall app wont show images, styles, any scripts.
    3) how can make the above output with absolute urls. Please suggest.

    I'm sorry, here is the link
    http://www.wemblog.com/2011/08/how-to-remove-html-extension-from-url.html
    Regards,

  • Problem with Absolute Navigation (External Window) and Light Framework Page

    Hi All,
    We are using Light Framework page for the portal devolopment. We have an application including two webdynpro iviews where absolute navigation is used to traverse from first iview to second iview (When user clicks a button on first iview). We are showing the second iview in external window (SHOW_EXTERNAL). When ever i clicks the button to traverse to second iview, i am getting an exception.
    When we are showing it in same window (SHOW_INPLACE), it is working fine. But the iview is appeared in half of the page with scrollbars. It is working fine with default framework page (with both options SHOW_INPLACE and SHOW_EXTERNAL) and dispalyed in original size as mentioned in iview properties.
    Could you please suggest us whether there is any work around for this.
    Thanks,
    Sudheer

    Hi Kathiresan
    I couldn't see the address bar of the window (In which second iview is getting displayed). But i can observe no parameters that i passed from first iview is visible in the view source of the second iview (When SHOW_EXTERNAL is used in absolute navigation). I could see all the parameters in the view source (when SHOW_INPLACE is used for absolute navigation). But i am using the same url for both the options (for SHOW_INPLACE and SHOW_EXTERNAL).
    I doubt about the url being passed when SHOW_EXTERNAL option is used. But when we checked in debug, The correct url is being triggered (Atleast from first iview). Is there any way that could display the second window with address bar. What is making difference  between SHOW_INPLACE and SHOW_EXTERNAL with absolute navigation and light framework page.
    Could someone please suggest.
    Thanks,
    Sudheer.

  • New page on click of absolute url

    I need IE to open new page of the absolute url when user click the url on initial page, but as result the new page always replace the inital page but not open a new session, I also refer to the threads in the forum like adding "sap-sessioncmd=open" or "syscmd=nocookie" but still does not work, can anyone give me any suggestion?following is my coding:
    Layout of the page1.htm:
    <htmlb:link id = "link1"
                text = "google with new session"
                reference = "http://www.google.com"
                target    = "_BLANK"
                onClick   = "LinkClick">
    <htmlb:link>
    OnInputProcessing:
      if event_id = cl_htmlb_manager=>event_id. " HTMLB event?
        data: lr_htmlb_event type ref to cl_htmlb_event.
        lr_htmlb_event = cl_htmlb_manager=>get_event( request ).
        if lr_htmlb_event is not initial.
          if lr_htmlb_event->server_event = 'LinkClick'.
            call method navigation->use_absolute_url.
            call method navigation->goto_page
              exporting
                url = 'http://www.google.com/ncr?sap-sessioncmd=open'
    *          url = 'http://www.google.com/ncr?sap-syscmd=nocookie'
                session = 'NEW'.
          endif.
        endif.
      endif.
    Message was edited by: Patrick Yan

    now i got a few minutes to work on this.
    here is a sample code.
    in the layout of the flow logic:
    i am using button for example,
    1) <htmlb:button id = 'CONTINUE'
          text          = "Continue"
          onClick       = "OnInputProcessing(continue)" />
    2) create a page attribute called index and also link the 'continue' page to the same page in the BSP
    3)in the layout
    <% IF INDEX = '1'.(use the dynamic link)
    l_url = 'http://www.google.com/'. %>
        <script type="text/javascript">
      <!--
        window.open("<%=l_url%>","ErrorLog","width=400,height=250,left=250,top=200 dependent=yes resizable=yes");
      //-->
    </script>
    4) in the oninput processing of this page
    assign event
      l_event = cl_htmlb_manager=>get_event( runtime->server->request ).
      IF l_event->id = 'CONTINUE'.
      l_index = '1'.
           navigation->set_parameter( name  = 'INDEX'
                                 value =  l_index ).
        navigation->NEXT_page( 'CONTINUE' ).
    endif.
    so when you click on the button you should get the google page in a popup.
    this is working for me. let me know if you are still having problms.
    regards,
    manasa

  • Absolute URL's do not display in design editor

    if i create a new page in my Site and I display a absolute
    URL image in my page ie:
    http://images.apple.com/home/2007/images/finalcutstudio20070415.jpg
    a image from apple.com's homepage. the image displays
    perfectly inside my HTML preview inside dreamweaver.
    however.... :( if i take that same image and place it inside
    my site (in a image folder) and i link the image using an absolute
    URL ie:
    http://www.mysite.com/images/finalcutstudio20070415.jpg
    the image suddenly no longer will preview inside dreamweaver.
    what gives??? i can view a external absolute img URL from another
    companys website, but using the same site URL that my project
    contains displays a ? icon instead of the image, even though if you
    copy and paste that same URL into a browser the image loads. it
    ONLY works if the image is hosted on another site not associated
    with your sites URL. This is NOT the way dreamweaver 8 was
    working... in fact, i opened my site directly from dreamweaver 8
    and the image loaded perfectly. i can quit dreamweaver 8 and open
    CS3 and using the same site and same site settings that same image
    shows up as a ? and nothing will get through unless its a different
    website URL entierly!!! i am so confused... what has changed?
    and before someone says " you need to upload that image to
    your site" i am past that.. the image i took from apple
    http://images.apple.com/home/2007/images/finalcutstudio20070415.jpg
    i COPIED AND PASTED INTO MY WEBSERVER IMAGE DIRECTORY. so its
    absolutely 100% not a "your image shows up as a ? because it
    doesn't exist BS... no it exists.. its very much the correct URL..
    i can copy the absolute URL of my image on my site and paste it
    into a browser and it displays fine. its only dreamweaver CS3
    trying to do some weird crap that causes it to show up as a grey ?
    box. and remember.. in dreamweaver 8 i can open the page and it has
    www.mysite.com/images/image.jpg written in the code and it displays
    off my site PERFECTLY. someone have any clue why this is now not
    working, and how i can fix it without having to work entierly in
    relative URLS, and then go back and manually paste in my
    www.website.com in front of all relative URLS after i am 100%
    finished.. I would rather go back to dreamweaver 8 where it works
    than use CS3 and not have this feature working.... 1 step forward 2
    steps backward.

    you are going to have to tell me where "display remote URL's
    enabled" is at?
    i can tell you that i am able to see graphics from adobe.com
    when i place a remote URL in my code, it shows up. to make matters
    even more confusing and painful... i quit CS3, opened my site up in
    dreamweaver 8 and started working on the site. upon reading your
    reply, i quit 8 and reopened CS3 to see if i could find this
    "display remote URL's enabled" feature, and unable to find it, i
    did notice that my previous page with ??? now displayed correctly
    after being run through dreamweaver 8. what does this mean? is
    dreamweaver doing something with my remote site that CS3 is failing
    to do??? using the exact same setup and procedure... CS3 just fails
    miserably and I can't figure out why.

  • Absolute URLs  not working when file is on a remote server.

    My client has asked me to provide a template for an investor relations section of their website. The HTML page or template for this page will be at the service providers site, but all the images etc. for the page will be linked to files on my clients server. Everything looks fine, but the absolute URL's in the .swf file back to my clients site aren't working.
    This is what the service provider's guidlines say, but I'm not sure where the code is supposed to go:
    Similarly, newer versions of the Flash Media Player installed by most users have a high level of security enabled by default. This is done to prevent Flash movies from playing on web pages that are hosted on different domains than the movie itself (again, to combat “phishing” or “spoofing”).
    You do have the ability to overwrite this feature by proactively developing your Flash file so that it contains the following lines of code:
    System.security.allowDomain(“*”)
    stem.security.allowInsecureDomain(“*”)
    Sy
    You should also add the following line of HTML within the embedded Flash call in your HTML template:
    <param name=”AllowScriptAccess” value=”always” />
    This solution requires edits to the ActionScript of the pre-compiled Flash file, and is not something we can edit. For further guidance and more information, please speak with the developer of your Flash file.
    Thanks

    the easiest way to deal with security issues is to avoid them.  if all files are on the same server, use relative urls.
    otherwise, you may have to deal with security issues.  whether you do or not, and if you do, how you deal with them, depends on what you're trying to do.
    you may be able to use System properties but you may need cross-domain security files.

  • Absolute URL IMAGE UI control in Web Dynpro ABAP fails

    I would like to display a .jpg from the Internet, either using a URL or an RFC Destination as the source.
    The "Web Dynpro ABAP Development in Detail" manual says that this can be done using only the Source attribute of the IMAGE UI control (see page 114) - that is,
       create an RFC Destination G-HTTP entry for the URL,
       type in that RFC Destination as $NAME$
       append any further extension of the URL as "/path in lower letters"
    I can enter an RFC Destination (ex., $UBERORBS$) which points directly to a single image file via its host/path and it is displayed in SE80's Layout Preview, but nothing displays at runtime.
    If I try to extend an RFC Destination's path to point to that image file (ex., $UBERORBS_BASE$/uberorbs_44pence.jpg), the image is also displayed in the Layout Preview, but not at runtime.
    Is this a bug?  or something wrong with our implementation?  We are at SAP_BASIS 700 level 0006.
    (Also, if the Source entry is not exactly correct, SE80 aborts following the entry with STRING_OFFSET_NEGATIVE.)

    Here's another piece of information.
    I am able to use the test app WDR_TEST_UI_ELEMENTS to display at runtime the $UBERORBS$ RFC Destination-absolute URL image.
    So, does this mean that there is a critical setting within my Web Dynpro component which must be set properly to permit this?

  • [Help] Unable to find component with absolute reference

    I've deployed my project files to server and registered in Application.
    Class Files under myclasses goes to -> /disk2/app/applmgr/comntop/java/ldc/oracle/apps/sla/calnet/xref/phone
    Page XML under myprojects goes to -> /disk2/app/applmgr/appltop/xx_custom/11.5.0/mds
    The page is rendered successfully.
    (In EBS, HTML Call registered in FUNCTION is OA.jsp?page=/ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG)
    However, if I click any "action" such as <apply>, <delete>.. etc, I get "Unable to find component with absolute reference" error.
    I've verified -> exec JDR_UTILS.printDocument('/ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG', 150), and it did fetch the XML code.
    I've verified I restart Apache as well as deleting out pages -> rm -rf $COMMONTOP/_pages
    What am I missing here? Please help.
    xmlimport.bat
    REM   Setting Up JDeveloper Path
         set JDEV_BIN_HOME=C:\JDev9i_OAExtend_RUP7\jdevbin
         set JDEV_USER_HOME=C:\JDev9i_OAExtend_RUP7\jdevhome\jdev
         set JDEV_PROJECT_HOME=%JDEV_USER_HOME%\myprojects
    REM   Location of the import file
         set PATH=%JDEV_BIN_HOME%\jdk\bin;%JDEV_BIN_HOME%\jdev\bin;%PATH%
    REM   Setting up DB Connection Path
             set DB_CONNECTION="(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = arebdt.xxx.com)(PORT = 1521))(CONNECT_DATA = (SID = ARTEST)))"     
    REM   Setting up Page(s) to upload
         set PAGE2UPLOAD=ldc\oracle\apps\sla\calnet\xref\phone\webui\PhonePG.xml
         set APPS_PASSWD=<pass>
    REM   Execute import.bat
         call import.bat %JDEV_PROJECT_HOME%\%PAGE2UPLOAD% -rootdir %JDEV_PROJECT_HOME% -username apps -password %APPS_PASSWD% -dbconnection %DB_CONNECTION%
         pause
    REM   End of process     Error page
    Exception Details. 
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_NO_REGION_DATA. Tokens: REGIONCODE = ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG;
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:529)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1011)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
         at _oa__html._OA._jspService(_OA.java:84)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at _oa__html._OA._jspService(_OA.java:94)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    Exception:
    oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference = ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
         at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1352)
         at oracle.adf.mds.MElement.findElement(MElement.java:97)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:503)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1011)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
         at _oa__html._OA._jspService(_OA.java:84)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at _oa__html._OA._jspService(_OA.java:94)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)
    Exception:
    oracle.adf.mds.MetadataDefException: Unable to find component with absolute reference = ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG, XML Path = null. Please verify that the reference is valid and the definition of the component exists either on the File System or in the MDS Repository.
         at oracle.adf.mds.internal.MetadataManagerBase.findElement(MetadataManagerBase.java:1352)
         at oracle.adf.mds.MElement.findElement(MElement.java:97)
         at oracle.apps.fnd.framework.webui.JRAD2AKMapper.getRootMElement(JRAD2AKMapper.java:503)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getWebBeanTypeDataFromJRAD(OAWebBeanFactoryImpl.java:3719)
         at oracle.apps.fnd.framework.webui.OAWebBeanFactoryImpl.getRootApplicationModuleClass(OAWebBeanFactoryImpl.java:3452)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1011)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:511)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:432)
         at _oa__html._OA._jspService(_OA.java:84)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
         at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
         at _oa__html._OA._jspService(_OA.java:94)
         at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
         at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
         at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
         at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
         at oracle.jsp.JspServlet.service(JspServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
         at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
         at org.apache.jserv.JServConnection.run(JServConnection.java:294)
         at java.lang.Thread.run(Thread.java:595)

    Ok, I admit it's my mistake.
    I found a url coded in my CO miss a / at the beginning of the url address.
    So, the Application deployment was OK.
    Incorrect -> "OA.jsp?page=ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG"
    Correct   -> "OA.jsp?page=/ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG"Note that, in JDeveloper, page will function successfully without the /, but in EBS it will throw the error.
    Code with correct url address embedded.
           pageContext.forwardImmediately("OA.jsp?page=/ldc/oracle/apps/sla/calnet/xref/phone/webui/PhonePG",
                                          null,
                                          OAWebBeanConstants.REMOVE_MENU_CONTEXT,
                                          null,
                                          null,
                                          false, // retain AM
                                          OAWebBeanConstants.ADD_BREAD_CRUMB_NO); Edited by: user595907 on 2010/9/17 下午 4:28

  • Problem with Relative URLs in Forwarding

    Hi all, hope someone can help me with this one:
    is it possible to do this : <jsp:forward page="../index.html" />
    I've tryed it on Tomcat and Orion but they both don't seem to like it, get the exception below:
    java.lang.IllegalArgumentException: Resource /test/forwardtest/abc/../index.html not found at __jspPage9_test_forwardtest_abc_f2index_jsp._jspService(__jspPage9_test_forwardtest_abc_f2index_jsp.java:29) at com.orionserver.http.OrionHttpJspPage.service(.:56) at com.evermind._cp._vhc(.:5639) at com.evermind.server.http.JSPServlet.service(.:31) at com.evermind._deb._lnc(.:514) at com.evermind._deb._wmb(.:170) at com.evermind._co._wbb(.:581) at com.evermind._co._fs(.:189) at com.evermind._bt.run(.:62)
    Note the: " Resource /test/forwardtest/abc/../index.html not found " , it would seem that it hasn't navigated back a directory, but is looking for the "/../" directory? Is this a bug?
    Any ideas?

    yes, but
    ../index.html relative to /test/forwardtest/abc would be
    /test/forwardtest/index.html
    which is where the file is located.
    I see now actually, so it is not possible to use "../" in forwards?
    Is there a way to change the web context or will I have to use absolute urls?
    Thanks
    it seems your web context is "/test/forwardtest/abc",
    "../index.html" is relative path to your web context.

  • XML being loaded thru an absolute URL

    Hi,
    I have an slide show that references a XML document (through
    an absolute URL) which then calls images (also through an absolute
    URL). I'm doing this because I'm pulling the show onto a facebook
    page therefore need it absolutely referenced. [ex:
    http://www.mysite.com/photolist.xml
    The problem I'm running into is that once I try to use the
    same file on my own site by referencing it relatively, it only
    works when the user types in my URL with "www" included.
    So it WILL NOT work if someone goes to
    http://mysite.com but WILL work if
    they go to
    http://www.mysite.com
    Does anyone have an idea of what might cause this and if
    there is a work around? Thanks!

    you are going to have to tell me where "display remote URL's
    enabled" is at?
    i can tell you that i am able to see graphics from adobe.com
    when i place a remote URL in my code, it shows up. to make matters
    even more confusing and painful... i quit CS3, opened my site up in
    dreamweaver 8 and started working on the site. upon reading your
    reply, i quit 8 and reopened CS3 to see if i could find this
    "display remote URL's enabled" feature, and unable to find it, i
    did notice that my previous page with ??? now displayed correctly
    after being run through dreamweaver 8. what does this mean? is
    dreamweaver doing something with my remote site that CS3 is failing
    to do??? using the exact same setup and procedure... CS3 just fails
    miserably and I can't figure out why.

  • Getting application absolute URL

    Hi,
    I am working with Portatl 8.1.
    My need is getting the absolute URL to the portal web-app context path, i.e. the
    good context path working with all desktops created using the portal administration
    application.
    How do I get it using the portal API ?

    Thank you. I had tried that but got
    (a) jndi:/localhost/myapp/
    when what I wanted/hoped to get was
    (b) http://localhost:8080/myapp/
    Is there a solution?

  • Absolute URL not working for reply in workflow

    I've setup a workflow that will email a group when a new discussion or reply is added. I get the email with the subject of the discusssion and the absolute URL for new discussions, but when a reply is created the email comes without the subject and the absolute
    URL goes to a page that doesn't exist.

    Hi,
    When it comes to a reply in the discussion list, you need to take extra steps to get the URL. You can set the workflow actions like this:
    If Current Item: Content Type ID equals Discussion
    Email user group(use the Encoded Absolute URL in the email content)
    Else if Current Item: Content Type ID equals Message
    Email user group( Use this URL in the email body:
    http://servername/Lists/Team%20Discussion/Flat.aspx?RootFolder=%2FLists%2FTeam%20Discussion%2F[%Current Item:Discussion Subject%]. This will link you to the flat view of the discussion. If you want to link to the display form for the message, you can set
    the URL like this:
    http://servername/Lists/Team%20Discussion/DispForm.aspx?ID=[%Current Item:ID%])
    Thanks,
    Entan Ming
    Entan Ming
    TechNet Community Support

  • Absolute url  not specified

    Hi,
    We had installed the Business Package for PPMDC (Business Package for Projects,Portfolio Management and Design Collaboration).
    While navigating to the portal on the Design Collaboration ->Collaborative Scenarios, and creating Collaborative Scenarios and clicking Save .
    We get the following error:
    The absolute url was not specified in the system administration (network tab).
    Also it also shows :
    Refer to the installation document First Steps with cFolders, which we do not find.
    Kindly assist me with this.
    Regards,
    Radeesh V

    Hi in the cFolders screen, go to the network administration link and in that go to network tab and enter the following:
    Proxy server name: http://servername (check with your basis)
    Proxy port number: xxxx (check with your basis)
    absolute url of the application: http://server:portname/cfolders/cfx_rfc_ui
    thanks
    p.s. If you are satisfied with the reply please reward.

Maybe you are looking for

  • Sony Wega

    I want to hook my macbook up to my sony 60" Wega HDTV. What would be the best looking way to do that? I already have the mini-DVI to VGA and mini-DVI to DVI that i frequently use with external monitors so i have those already if they might help in my

  • Can't see my iPod in the Finder

    I have a 20GB click wheel iPod, and I used to be able to see it in the Finder a while back, now it does not appear. I can see it fine in iTunes, works fine and no other issues (but have to eject through iTunes). Maybe this is due to software upgrades

  • Check point in fund management for budget and creation of po

    I have a Budget for a perticular expenses say Rs 100000/-, so the po should not be created for more than Rs 100000/- as per the budget. but the po is been created for more than the budget amount. pls. let me know where the check point has to be maint

  • Workflow infinite loop how to Stop?

    hi, My workflow is having a loop it runs infinite bcos the condition is not proper. Inside the loop i have a send mail step.. How to stop the Running workflow??? Regards Roops

  • Which is better when temporarily not using Mac - 'screensaver' or 'sleep'?

    I manually invoke a screensaver when I won't be using my MacBook for a while (up to an hour or two) -- instead of putting it to sleep. When I come back to use the computer again, with rare exceptions the hard drive doesn't rev up as it does when I re