Problem with Managing Subscriptions (URL)

The problem consists of which I cannot create the sindicador, entrance the URL of the subscriber and the respective user, but at the time of Get Catalogue sends the following message:
Error: Error en la conexión con el sindicador (No ICE server)
I hope that they can help me.

you have a sandbox security issue.  you can allow your local swf to access that html by going to the following:
http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.htm l
but you'll probably run into the same problem when you upload your files to a server.

Similar Messages

  • Problem with https internet url for Portal

    Hello ,
    We are running EP 7 SP 13.
    We had a problem with the j2ee engine going down due to a db problem .It is ok now and and j2ee is up and running fine and the portal is accessible from the intranet.
    But there is a problem with the https url that we use for internet access. It gives "page cannot be displayed error".
    There is a IISproxy in place for internet access.Https certificate has not expired. Couldnt find much in the portal logs and trace or am I looking in the wrong place?
    Any help would be most appreciated.
    Rgds

    Hi Vineeth
    Check the IIS settings, , they might not have started properly.
    EP5: Enabling SSL and renewing the J2EE certificate
    SAP Note Number: 685306
    Can you check the contents of Keystore in Visual admin,
    Regards
    Kaleem
    Edited by: Kaleem on Aug 19, 2008 2:11 PM

  • Problems with managed beans on included JSPs

    I've got a problem with managed beans within an included JSP
    The included page looks as follows:
    <f:subview id="includedPage" binding="#{testBean.component}">
         <h:outputText value="Hallo from the included page"/>
         <h:outputText value="#{testBean.msg}" />
    </f:subview>The including page is also very simple
    <f:view>
         <html>
              <head>
                   <title>Test include</title>
              </head>
              <body>
                   <h:outputText value="Hello from the including page"/>               
                   <jsp:include page="included.jsp"/>
              </body>
         </html>
    </f:view>The testBean is a managed bean with page scope and looks as follows:
    public class TestBean {
        public UIComponent fComponent;
        public TestBean() {
            System.out.println("TestBean Constructor called " + toString() );
        public String getMsg() {
            return "Component = " + fComponent ;
        public void setComponent(UIComponent component) {
            System.out.println("setComponent called " + component);       
            fComponent = component;
        public UIComponent getComponent() {
            System.out.println("getComponent called " + fComponent);
            return fComponent;
    }The output to the console is:
    TestBean Constructor called de.kvb.athena.web.beans.TestBean@1bc16f0
    getComponent called null
    TestBean Constructor called de.kvb.athena.web.beans.TestBean@18622f3
    setComponent called javax.faces.component.UINamingContainer@160877b
    TestBean Constructor called de.kvb.athena.web.beans.TestBean@5eb489
    and the page displays
    Hello from the include page
    Hello from the included page Component = null
    Can anyone explain this behavior ? What's the reason that the page displays
    Component = null
    and is it possible to display the parent naming container (subview) this way ?
    how ?
    Thanks

    By "page scope" I assume you mean "none"? If so JSF creates a new bean for each place it's referenced. The closest to the behavior you want, once per "page", is really request scope.
    (I'm not sure why the constructor is being called thrice, though. I should look into this.)
    I assume you want a bean-per-subview scenario. This should be doable, and one way that allows a dynamic number of subviews would be as follows:
    --create a "manager" bean in request scope
    --give it get/set methods that retrieves a Map of "TestBean" instances; the idea is that each subview use a different key "s1", "s2", etc
    back the manager method with Map implementation that checks if there's already a TestBean associated with the key returns it if yes, else null.
    If that seems messy, the component solution is hairy :-) See http://forum.java.sun.com/thread.jspa?threadID=568937&messageID=2812561
    --A                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • IPhoto 11 Upgrade-"There is a problem with the subscription"

    I am running iPhoto 09 right now & I'm trying to update to 11 so that I can use 'Photo Stream", plus the benefits of iPhoto 11 of course. When I go to update I get to the subscribe button & I get the above messege: "There is a problem with the subscription" followed by "Request to the server macappstore://itunes.apple.com failed." Now I'm stuck on how to upgrade from iPhoto 09 to 11 ?? Any suggestions? Should I call Apple??
      Thanks...  

    Follow the procedure on the page linked below to repair the database, and if that doesn't work, to rebuild it:
    Rebuilding the iPhoto library
    If you still have the problem after doing that, use the procedure on the page linked below to find and remove the invalid items:
    Connection Failed, Server Does Not Exist

  • Problem with JavaScript in URL iView

    Hi,
    I am facing a problem with javascript when i am trying to access my application through URL iView. In the javascript window.top is used to access the frames in the window. But the EP is not recognizing it as valid. what exctly the problem and please suggest me a solution.
    Ashok.

    Hi,,
    thanks for the quick reply. But what i asked was different. I will put it in different way. I have deployed a application in Web Application Server and trying to access it through URL iView. My application is pure J2EE application with html,jsp and JS files. In javascript we used window.top property of the java script which is working fine MS IE. The problem is window.top is a IE specific property which is not having any equallent open standerd so EP is throwing a java script error. As I know the only possible solution for this problem is inherating IE rendaring capabilities to iView(i.e iFrame). is there any way to do that?
    Ashok.

  • Problems with sending via url

    Hi there, I've got a problem with sending via an URL. If I send and receive something I use a method called connect. This method works well, I construct a URL, connect and receive an ObjectStream.
    But as I only want to set some values in another use case I do not want to receive anything,
    But it doesn't work - my servlet does not receive any request.
    Could anyone please help me to solve this?
    Thank you.
    Regards
    Tarik
    private synchronized static void connectOneWay(String data)
                throws IOException, ClassNotFoundException {
            try {
                URLConnection connection = null;
                URL testServlet = null;
                Class classLock = ServletConnector.class;
                while (locked)
                    classLock.wait();
                locked = true;
                testServlet = new URL(servletURL + data);
                if (MMSCMSTree.debug)
                    System.out.println("Servlet URL: " + testServlet);
                connection = testServlet.openConnection();
                connection.setDoInput(false);
                connection.connect();
                locked = false;
                classLock.notify();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }

    Hi
    There was not a problem with this, the problem was on the server side, infinite loop ... :-)
    Regards
    Tarik

  • Is there a problem with ending a URL with somefile.swf?

    I have a swf button that launches a new window (ex: http://domain.com/index.html) with the javascript:new.window method. I am finding that sometimes (1 or 2 times out of every 5 clicks) the window is nothing but blank white. I have found, by mistake, that if the javascript:new.window launches directly to (http://domain.com/somefile.swf) then it works everytime.
    I think the problem with the blank browser window might be related to slower Internet connections. I can't seem to find anyone else with the blank browser window issue, so I'm wondering what side effects or problems might arise by using the swf as that url instead of an html file that runs the swf.
    Flash player detection?
    Could a browser decide to download the file (for saving) instead or running it?

    I can't quite say what the issue with your swf not loading in the html is. It almost sounds more like an issue of the swf not loading.
    If the user has Flash Player installed on their machine (which they should if they are getting your original button) then you probably don't have to worry about the browser trying to download the swf - its probably not going to.
    What you might want to be more concerned about is window resizing.  If the user can resize the window from the specified size in your js (if you have any) than Flash Player will resize. If the user extends the window beyond the height OR the width, then anything on stage but out side of the fla stage bounds will be visible. You can constrain the size in your js, and set resize = no.
    But mainly, youre perfectly fine linking directly to the swf if that is all you need.

  • HT2513 Problem with iCal subscriptions

    I'm trying to subscribe to my google calendar. I can't find where it says CALENDAR > SUBSCRIBE. Is there another workaround?
    I'm following the instructions here:
    http://support.wireload.net/entries/455852-can-i-use-blotter-with-my-google-cale ndar
    and here
    http://support.apple.com/kb/HT2513

    Matt02,
    Welcome to Apple Discussions.
    Those calendars are worthless and have not been updated in ages.
    Go back several years and you will probably find entries.
    Rest assured, you are not having problems with your system.
    I suggest that you submit: http://www.apple.com/feedback/ical.html

  • Problem with Managed Server pointing to a different JDK

    Hi,
    My Adminserver is pointing to JDK 1.7 which is shown in the startup, but my managed servers are pointing to a different 1.6_43 . We are running into Java version mismatch problem while deploying our application built with jdk 1.7 onto these managed servers . How do i change the version of my managed server ?
    Thanks
    Sam

    Hi Sam,
    You generally only have to change it in two places.
    DOMAIN_HOME/bin/setDomainEnv.sh and MW_HOME/wlserver_12.1/common/bin/commEnv.sh
    See examples below.
    If you are on Linux you can quickly fix it. For example:
    cd /u01/app/oracle/product/fmw
    find . -type f -exec sed -i "s/\/u01\/app\/oracle\/product\/jdk1.6.0_39/\/u01\/app\/oracle\/product\/java_current/g" {} \;
    It is a good idea to make a softlink to your Java installation, then you will not have this problem in the future. If you are on Windows you can use a symlink.
    Linux example:
    ln -s /u01/app/oracle/product/jdk1.7.0_25 /u01/app/oracle/product/java_current
    Windows example:
    mklink /d D:\oracle\product\java_current D:\oracle\product\jrockit-jdk1.6.0_26-R28.1.4-4.0.1
    setDomainEnv.sh
    /u01/app/oracle/domains/eksudv/bin/setDomainEnv.sh
    if [ "${JAVA_VENDOR}" = "Oracle" ] ; then
            JAVA_HOME="${BEA_JAVA_HOME}"
            export JAVA_HOME
    else
            if [ "${JAVA_VENDOR}" = "Sun" ] ; then
                    JAVA_HOME="${SUN_JAVA_HOME}"
                    export JAVA_HOME
            else
                    JAVA_VENDOR="Sun"
                    export JAVA_VENDOR
                    JAVA_HOME="/u01/app/oracle/product/java_current"
                    export JAVA_HOME
            fi
    fi
    commEnv.sh
    /u01/app/oracle/product/fmw/wlserver_12.1/common/bin/commEnv.sh
    # Reset JAVA_HOME, JAVA_VENDOR and PRODUCTION_MODE unless JAVA_HOME
    # and JAVA_VENDOR are pre-defined.
    if [ -z "${JAVA_HOME}" -o -z "${JAVA_VENDOR}" ]; then
      # Set up JAVA HOME
      JAVA_HOME="/u01/app/oracle/product/java_current"
      # Set up JAVA VENDOR, possible values are
      #Oracle, HP, IBM, Sun ...
      JAVA_VENDOR=Sun
      # PRODUCTION_MODE, default to the development mode
      PRODUCTION_MODE=""
    fi
    Regards Peter
    http://theheat.dk

  • Login problem with E-Recruiting URL, where check host name?

    Hi,
    I've set up a standard Recruiter user and assigned him the standard Recruiter security profile. When I run RCF_GENERATE_URLS, I get this URL:
    http://iwdfvm2160.wdf.sap.corp:51080/sap/bc/bsp/sap/hrrcf_start_int?sap-client=200&sap-language=EN&rcfSpId=0003
    But I get an "internal error" when I login with my User. Our server's host name is iwdfvm2160.gcsap.com, but the program isn't resolving this. This is probably the cause of the error, but how can I get it to pick up our host name?
    We are on E-Recruiting version 6, and it's running on the same box as HCM.
    Thanks, Vlad

    Hello Vlad,
    usually the links generated from the report are correct. Only very rare problem might be in the network structure of your company that the internal dns servers can't resolve the server name or the sap servers are in a not reachable network segmant as you never worked with http access to the servers for other applicatiohns.
    But if you log on the first time with your user and have not been working with the application yet, the more probable reason for this error is the missing candidate for e-recruiting. Without a candidate you won't be able to work with the application.
    Check transaction SLG1. There should be an error "No candidate for User <your username>" or sth. similar.
    If so run report RCF_CREATE_USER to get a candidate. Then you should be able to log on.
    If you already have a candidate and cannot login check SLG1 and SM21 for error messages. If there are any but you don't feel able to solve the logged problem. Just post the message here. I think someone will be able to help.
    Best Regards
    Roman Weise

  • Problem with UI5 ESS URL with Role Upload in HR Renewal 2.0

    Hi Experts,
    We are in the process of implementing the HR Renewal 2.0 FP1.
    I have made the custom copy of the Standard PFCG ESS role SAP_EMPLOYEE_ESS_XX_UI5_1 into ZSAP_EMPLOYEE_ESS_XX_UI5_1.
    I was able to upload this role in to SAP Portal by selecting the default system object created to point to our ECC system and assigned the ESS role to the end user.
    Now the problem is with the URL which needs to points to the UI5 ESS Landing page in the ECC system. Instead the URL path now is,
    http://portalhost:50000/sap/bc/ui5_ui5/sap/arsrvc_suite_pb/main.html?page=HR_SELFSERVICES.
    I have maintained the system object name in the Generic Content property category of iView and still it picks up the portal URL.
    The relative path should be appended with the ECC host details instead of portal host details.
    Please help me to resolve the issue.
    Thanks,
    Urmi

    Hi Sharadha,
    Run the role from backend and make sure its has correct expected url, then from portal we can address it easily.
    Once you copy and make Zrole, you have to modify and it should point it to the correct catalog.
    In case if you still face issue, pls open a new  thread and past ur screen shots and details, so that we can suggest appropriate. 
    Regards
    Yugandhar reddy

  • Need to solve serious security problem with Oracle Reports URL

    As mentioned repeatedly on this forum, Oracle Reports allows serious security breaches that allow users to see reports that they did not generate -- it's easy to guess a legal URL by changing the getjobid parameter.
    I've reviewed the JavaDocs to part of the rwrun.jar file and reviewed some of the example report plugins. This shows promise in helping to solve this security problem but critical pieces are missing.
    1) The javadocs are accurate for only 10g (9.0.4) but not correct for 10g (10.1.2+), which we are currently using. I need access to the updated version of this javadoc.
    2) Even with the updated version of the JavaDoc, I haven't found a class from which to inherit that would give me the opportunity to generate random jobid values, which then would effectively prevent users from guessing other jobid values, and thereby gaining access to other's reports (which in our cases, may contain sensitive information.
    3) We have found that we can send the parameter=value of EXPIRATION=1 which helps protect such information, but this requires that every program which invokes a report be modified to add this parameter. It would be far better for the report server to be configured to use a java class we write that inherits from some rwrun.jar class that would by default, add the EXPIRATION=1 parameter.

    Hi,
    Thanks for our replies. I will ask to an administrator about this security problem, now I know it depends of a security parameter.
    But I would know if it could be possible to hide the technical name of the query in the url. It could improve the security level of our reports in a first time in this way.
    Thanks a lot,
    JW.

  • Problem with Management Console

    This is not really an installation issue, but this seemed the most appropriate category.
    Whenever I try to access any functions of the Users Tool in the Solaris Management Console (gui), such as viewing users, viewing roles, etc., an error msg pops up stating "CIM_ERR_FAILED" . This occurs whether I load locally or over network from another machine's Management Console.
    The box is running Solaris 8 04/01 with several packages from the Sun companuon CD installed, as well as the latest Sun recommended patch cluster. Any help and/or suggestions would be greatly appreciated.

    I think I temporarily fixed this problem I am not sure how this will affect the development.
    But atleast I can start the J2EE/DB services so that I can start and stop services from the MMC
    What was happening was that the services
    SAPJ2E_00
    SAPJ2E_01
    were not starting up because of the logon problems, the default account that was created SAPService( something like that ) was not able to log on, I changed the logon permissions to "Local System" and started the service, this time atleast the service started.
    I need to launch the Development Studio and see if I am able to work with the new account permissions on the J2EE server

  • Problems with my subscription

    Even though I have 2 e-mails from Skype & Paypal dated the 19th September saying my payment had been made and my subscription delivered, when I logged on to skype this morning, it said I have £0.00 and no subscriptions. So when I try to phone the number I have paid my subscription for, it wont connect, and vice versa, I can't phone out using it. Anyone else had this problem? How do I get my subscription working? Need to make an urgent call and this has really thrown me

    Here's how you can check the status of your order. Each status is also briefly explained in that page;
    https://support.skype.com/en/faq/FA288/what-is-the-status-of-my-order
    If your transaction has been marked as delivered, try to sign out first, then login again (not simply closing Skype then running it again) as this may help update your account records. Please also be advised that in case of renewed subscription, it will become active when the billing period for the first/previous one ends (1 calendar month).
    Yet, if in case you may need further clarifications or assistance, you may need to contact customer service, just open the link below for instructions on how to get in touch with them.
    https://support.skype.com/en/faq/FA1170/how-can-i-contact-skype-customer-service
    CONTACT SKYPE CUSTOMER SERVICE   |  HOW TO RECORD SKYPE VIDEO CALLS  | HOW TO HANDLE SUPICIOUS CALLS AND MESSAGES   |  WINDOWS PROBLEMS TROUBLESHOOTING   |  SKYPE DOWNLOAD LINKS  
    MORE TIPS, TRICKS AND UPDATES AT
    skypefordummies.blogspot.com

  • Problem with Manage link on Creative Cloud Files page

    When I click the Manage link from https://creative.adobe.com/files it just opens up another Files page. The View link works fine. Is this a known problem at the moment? It was working fine until a couple of days ago. I can still access these pages from links elsewhere, but it was useful at times to just use the links from the Files page.
    I've tried from all three of my Macs and my iPad and it's the same every time.
    Safari 5.1.7, Mac OS X 10.7.4, Creative Cloud subscription

    It seems to be a compatability issue with the Safari browser platform. I'm encountering the same issue using Safari (same version - 5.1.7), but the link works fine using Google Chrome. I'm going to go ahead and submit a bug report regarding the issue, so hopefully this will get cleared up soon.
    For now, if you have Chrome (I haven't tested this on Firefox), the Manage link should work fine.
    Thanks for posting!

Maybe you are looking for