Portlet Edit Mode in a Remote Portlet doesn't work with JSP

I am facing a strange problem. I created a protelet and attached the edit to a JSP Page(edit.jsp). When I create a portlet of this and display in a portal, the edit works fine in case of a local portlet. But when the same is made as a remote portlet, I get an Operation failed fault.
The exception is:
Fault: {urn:oasis:names:tc:wsrp:v1:types}OperationFailed
Internal Server Error: Page Flow [testPortlet.edit.edit.jsp] is invalid..; nested exception is: java.lang.IllegalStateException: Page Flow [testPortlet.edit.edit.jsp] is invalid
Does anyone know why the edit in a remote portlet works only with a page flow?

There is no edit mode defined in this portlet.
Subbu
Chandra Mouli Parameswaran wrote:
Here you go!. This is the portlet file on the producer side.
<?xml version="1.0" encoding="UTF-8"?>
<portal:root xmlns:netuix="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0"
xmlns:portal="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0 portal-support-1_0_0.xsd">
<netuix:portlet definitionLabel="portlet_2" title="ViewQuotesController">
<netuix:titlebar/>
<netuix:content>
<netuix:pageflowContent contentUri="/viewQuotes/ViewQuotesController.jpf"/>
</netuix:content>
</netuix:portlet>
</portal:root>

Similar Messages

  • My remote Control doesn't work with my new imac

    I have a brand new iMac 27" with mountain lion, and Doesn't work with my aluminium remote control, I already follow the steps on Help, but there's no IR option on the advanced button of security and privacy. Of course I already check with my iphone dock and the batteries are OK, So I think it's a bug from the OS.
    Any thougths?

    Thanks mende1.
    Apple that, *****!!

  • Remote app doesn't work with ipad 2 and ios 7.0.3

    Hi to everyone!
    I have a problem with the remote app and my ipad 2 using ios 7.0.3
    If I try to add a song to "next songs" the app crashes. But it works fine on the iphone 5 with ios 7.0.3
    What could be the solution to solve this problem?

    there's been an update for the remote app, now all works fine :-)

  • I am still having trouble with Guided Edit mode in Photoshop. It doesn't work and I have been

    careful about the size of the files that I open or work on. Initializing doesn't run and I was wondering if not down-loading Revel was effecting the editing features in Photoshop 12. I have a IMAC with Snow Leopard and Mavericks. I am [email protected] My case number is 0185190932. I have been using an Adobe book.

    What do you mean by:
    I have a IMAC with Snow Leopard and Mavericks
    Those are two entirely different versions of the mac operating system. Snow Leopard is 10.6, and Mavericks is 10.9.
    If you are really running 10.6, the specs for PSE require at least 10.7. If that's not the problem, more information, please, about just what you have and just what is going on. Incidentally, this is the user to user forum, so we have no access to any case number stuff. We're just other customers like you.

  • Weblogic Portlet doesn't work with Icefaces

    Hi..
    I've created a simple helloworld portlet using oracle workshop for weblogic. I can open the icefaces pages, but when I open it from portlet seems like they don't render all the tag.
    Anyway, here's my facesportlet.portlet
    <?xml version="1.0" encoding="UTF-8"?>
    <portal:root xmlns:netuix="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0"
         xmlns:portal="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0 portal-support-1_0_0.xsd">
         <netuix:portlet definitionLabel="facesportlet" title="Ice Faces">
             <netuix:titlebar>
                 <netuix:maximize/>
                 <netuix:minimize/>
                 <netuix:delete/>
             </netuix:titlebar>
             <netuix:content>
                 <netuix:facesContent contentUri="/fcsport/facesportlet.faces"/>
             </netuix:content>
         </netuix:portlet>
    </portal:root>faces-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
       "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
       "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
         <managed-bean>
              <managed-bean-name>TestBean</managed-bean-name>
              <managed-bean-class>com.av.test.TestBean</managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
         </managed-bean>
         <navigation-rule>
              <from-view-id>/fcsport/facesportlet.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>process</from-outcome>
                   <to-view-id>/fcsport/facesportlet.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
         <navigation-rule>
              <from-view-id>/fcsport/anotherjsf.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>process</from-outcome>
                   <to-view-id>/fcsport/anotherjsf.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    </faces-config>and jsp file is
    <f:view
         xmlns:h="http://java.sun.com/jsf/html"
         xmlns:ice="http://www.icesoft.com/icefaces/component"
         xmlns:f="http://java.sun.com/jsf/core">
         <html>
         <head></head>
         <body>
              <ice:form id="UserForm">
                   <table>
                   <tr>
                        <td colspan="2"><ice:outputText value="#{TestBean.message}"/></td>
                   </tr>
                   <tr>
                        <td><ice:outputLabel value="Enter Your Name:"/></td>
                        <td><ice:inputText value="#{TestBean.username}"/></td>
                   </tr>
                   <tr>
                             <td></td>
                             <td><ice:commandButton action="#{TestBean.processName}" value="OK"/></td>
                   </tr>
                   </table>
              </ice:form>
         </body>
         </html>
    </f:view>if I open facesportlet.portlet from browser and view the source code, it'll display the whole complete tag without rendering it at all (eg: <f:view/> etc..)
    Anybody have a clue or reference document for it?
    Thanks in Advance..

    You should use java portlet in order to use icefaces work. Please follow the instructions from ICEfacesDevelopersGuide.pdf which comes with icefaces installation.

  • Remote Desktop doesn't work with local printer

    I am having trouble using a locally networked printer when I use Remote Desktop to connect to a Vista machine.  Under the local resources tab for RD, I have checked printers.  The only thing I can figure is that my printer is networked locally, not connected directly to my machine.  Every time I try to print during my remote desktop session, I can't access my locally networked printer.
    I installed the printer drivers on the remote computer and when I try to locate the printer, I get the following error: "Windows cannot connect to the printer.  Server print spooler service is not running..." but the spooler service IS runing.
    I also found a post elsewhere that discussed setting 'share permissions' and 'network permissons' to resovle the spooler error.  Still no go.
    I tried to plug in my printer to a local USB port this morning.  Still would not work.  I keep getting the same spooling error.  The drivers are not corrupt, as others have indicated may be the cause.  They work fine on my system locally with 7.
    Any advice would be greatly appreciated.  I've spent a few hours on this one and am at a loss at this point.
    Please help.  I really need to print locally.

    My problem was that the Vista remote system never saw local port that my printer was using for some reason and it never accepted the path noted above (\\servername\printer)...always came back with an error that it was an invalid path.  This was with it both networked and plugged in via USB port.
    I finally figued it out after four days and many hours on the phone with Microsoft.  Microsoft support claimed that it was related to my router settings, but I didn't believe it since the remote computer saw my iPhone just fine when it was connected locally.  After simply playing around, here's what I found...it was actually quite basic!
    On the remote system, when you try to add a 'local' printer, there's a drop down menu with a list of local ports that your remote system sees.  Some of those will be on the remote system, but others will be on your local system.  Make a note of the ones that are seen on your local system.  In my case, LPT1 was not visible, but COM3 was.
    Next, on your local system, in the settings for your functioning printer (Printer Properties, Ports Tab), there's a tick box that says "Enable Printer Pooling."  Once you check that box, you can select multiple ports on your local machine.  Here, you need to tick the box that your remote system is seeing (in my case, it's COM3), but make sure that your exisitng port remains checked as well (in my case, an IP port for my wireless router).  Basically what you're doing is on your local system, you are pooling your exising printer setup with a port that can be seen by your remote system. 
    Then, on the remote system, install the printer drivers but don't select a port.  Then go into Printers and add a printer.  Select 'local' setup for that and when asked for the port, use the port you checked in the previous step on your local system (in my case, I selected COM3 on my local system).  Select your printer from the list.  It will ask if you want to use the exisiting drivers...say yes.  Then print a test page to be sure that it works.  Worked fine for me.
    I simply can't believe how obvsious that solution was!  If the remote system can't see the port you currently use, pool your printer setup with a port that it can see!

  • Remote App doesn't work with iPod 2nd Gen or iPhone 3G

    I have been using till recently the "Remote" app to control a Apple Express base station from an iPod 2nd Generation (and it also would work from iPhone 3G. It worked great.
    Today, I noticed that it is not working. I am getting a message that says the the update of the App is no longer compatible with the iPod or the iPhone that I was using.  Both of them are running Version 4.2.1
    Does anybody know anyway to get the iPod 2nd generation or the iPhone 3G to be compatible with the "Remote" app?  Is there anywork around. 
    My teenager loved to be able to control the tunes in his room with one of these devices. 
    I appreciate any advice or help you can offer. 

    Maybe:
    Remote app for iPhone, iPad, or iPod touch can't connect to iTunes or Apple TV
    http://support.apple.com/kb/HT1947
    If you have a copy of the Remote app in your iTunes library that is compatible with your iPod delete the app from your iPod/iPhone and sync the app to yur device.
    If not, delete the version in you iTunes library and transfer/copy the app to your iTunes library by
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    There is no way to the later version on your devices.

  • Firefox command line option "-no-remote" doesn't work with profile.

    I want to run the stripped version of firefox in background with one application and another full version of firefox for normal browsing. I have created the profile for the stripped version of firefox and loading the same using command firefox -P "stripped" -no-remote/firefox -no-remote -P "stripped". But when I start the full version of firefox by launcher "firefox" than it directly loads the stripped version even used the -no-remote option with profile. So I have created launcher for firefox and used the -no-remote with default profile like "firefox -no-remote". It works when first time I click on launcher but for second click it shows the message "Firefox instance is running, or not responding. close the firefox and restart the system". I have gone through the online available documents that suggests that use the -no-remote option with profile so the default profiles works correctly. But -no-remote option doesn't work with the profile. So is there any way to launch the full version of firefox by launcher on second click on launcher?

    Yes, I used separate profiles only. But the -no-remote option doesn't work as mentioned http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile.
    Please find below the command what I am using
    firefox -P "stripped" -no-remote
    firefox
    If I use the above command than the new firefox window get the configuration from the stripped even if I have used the -no-remote.
    I use the -no-remote with firefox default than it works for the first time.
    I have created the launcher for firefox default. So if I click second time on launcher than it doesn't work.
    firefox -P "stripped"
    firefox -no-remote
    (But doc on link -> http://kb.mozillazine.org/Opening_a_new_instance_of_Firefox_with_another_profile) says do not use the -no-remote with default.
    Do you have any idea why this is happening?

  • After updating my iphone 3G and my ipodtouch 3G ios5, universal dock and remote control doesn´t work

    After updating my iphone 3G and my ipotouch 3G with ios5, the apple remote controls (the white and the aluminium one) doesn´t react when iphone or ipod are docked at the universal dock. The remote controls both still work with my Macbook, therefore it must be a problem with the dock. I have tried to connect both with the dock (Menu + left for 6 seconds) but it doesn´t help. Further the volume control doesn´t react on the iphone and the ipod when they are docked. Neither the one on the touchscreen nor the buttons. The day before the update everything was fine. Anyone any idea?
    Thanks!

    Look at the previous posts on the right under the heading: "More Like This".  I appears that others are having the same problem.

  • HT3325 Keynote Remote doesn't work with hyperlinks?

    Remote sync well with iPad .. Impressive
    However, it doesn't work with any hyperlinks!
    It's simply an image and swiping the pages ... Ignoring all hyperlinks ... It does work with media but u would have to put them in sequence in your slides. If you work with many hyperlinks within a slide, you can't get any to work with the remote!
    Quite disappointed that Apple actually charges for an app so simple with no value added services!
    There are many free apps doing the same simple tasks.
    Thumbs DOWN.
    Do something about it Apple!

    Any remote that actually works?

  • HT4352 I have turned home share on my iPhone and my Apple TV and the remote app doesn't work all of the sudden. How can I fix this?

    I have turned home share on my iPhone and my Apple TV and the remote app doesn't work all of the sudden. How can I fix this?

    Welcome to the Apple Community.
    Have you updated to the latest version of the Remote App.

  • Earbuds remote control doesn't work anymore!

    Hi!
    I've had an iPhone 4 since September 2010, and I've always used the earbuds that came with him.They used to work great until this week.
    Now, it's buillt-in remote control doesn't work anymore.By that I mean I can not skip, pause or even use voice control through the earbuds.
    And this probably isn't an iPhone problem, because I tested these earbuds in my iPad 2 and the remote control still doesn't work.
    I noticed that the rubber that used to cover the cable itself is coming off, especially near the remote control area.
    Is there a fix for these unresponsive controls?
    Or what Apple email I should reach in order to ask them about this issue?
    Thanks!
    My iPhone 4 is running iOS 5.0 and so is my iPad 2.

    Is your phone locked in portrait orientation? I've found that for some reason my controls will not work when my portrait orientation is locked.
    Try double-clicking the main button, and then sliding your thumb right. You should get some controls at the bottom of your screen, and the button on the far left is the Portrait Lock button. Try unlocking your phone, and see if your earbuds will then work.
    Hope that might help!
    -Dave

  • Media Encoder CS4 doesn't work with Premiere (pic related)

    Oh hai!
    I just got Adobe Master Collection CS4 and my Media Encoder doesn't work with Premiere CS4. When I try to export the file, Encoder starts normally. Then I click "Start queue" and Encoder starts loading. Loading takes almost five minutes, which is a long time, because my project is very simple. After that nothing happens, just a warning sign appears. When I click it open, some kind of log file open and it says:
    Encoding failed
    Could not read from the source. Please check if it has moved or been deleted.
    And I didn't deleted anything. So what does that mean? Why that "Source Name's" path is different than my project files path? Can this problem relate that somehow?
    I have also another problem with Premiere CS4, maybe there's a link between these two problems. I can't get Premiere projects linked to open in Premiere CS4. When I right-click the project icon, and click “Open with…”, I can't find Premiere from the list. When I click "Browse", I can find Premiere.exe from my computer, but if i doubel-clicked it, nothing happens. It won't appear to the list or anywhere else. Or have I missed something? So now the project files are linked to open in After Effects. Of course I can open projects from Premiere, but how do I get them open straight from file?
    I have long experience using Adobe Premiere and this is the first time I got this kind of problems. I have also downloaded new updates for Premiere and Encoder, this didn't help. Does that matter, that I didn't installed Premiere in C-drive? However it's in my computers internal drive, I have divided my hard drive for five parts, one part contains all of my softwares. My scratch disks are in different hard drive (external), does that matter? I tried different location, but that didn't help.
    Please help, I can't do any video editing, because of this problem. And sorry for my english, ask if you didn't understand something. =)

    Hello, this is terrible problem, which i found in CS 6 softwares ...
    solution i found only working, is uninstall and reinstall full package.. but it is not all,
    you need to do BRAND NEW admin account in windows, and install it there.
    that means, i could not export after repair from encoder in my original account never more (!!)   .. this is really terrible way how to repair this issue, because :
    1.by reinstalling of software, client WASTE HIS TIME
    2.by necessity to begin work in another windows profile you again WASTE YOUR TIME because of learning and migrating all other profile modifications, which i see really unaccpetable. Adobe means, this solution of repair is ok, and they did not do till today any steps of creating some "clever" solution.
    I ask everybody, who will meet this issue in future, guys, please, complain about this situation, give "BUG Report" to them, and write "feature request" to them , in the way of creating some repair tool, which check actual  "broken" connections between encoder and premiere, which refuses to "take material" from it and encode, and REPAIR it automatically..  
       I am not IT, but ..does it seems so hard to create this ? Adobe IT developers should know their systems, and should create such utility tool really easy.
    History of this problem and detailed description, HOW i did "repair" this. With wasting of app 2,5 days of my working time :
    1. after repairing "error 5" problem , i solved it by reinstalling the suite from the new admin user profile (profile B) . 
    I continued my work on my normal working windows profile . (profile A)
    Every cooperation (AE+Pr, export media via "queue" to Encoder) was working fine . . .
    2. suddenly it stop working (without knowing any possible reason - i did not do installations )
    and showed in error export log file :
    "Could not read from the source. Please check if it has moved or been deleted."
    3.repair via procedure(procedure "a"):
    i did this procedure on the profile B (profile from last time installation of repairing problem error 5)
    I did these steps :
    a-uninstall master coll suite
    b-i used Adobe cleaner tool (remove ALL)
    c-removed raw directories in locations
    •C:\Program Files\Adobe
    •C:\Program Files(x86)\Adobe
    •C:\Program Files\Common Files\Adobe
    •C:\Program Files(x86)\Common Files\Adobe
    •C:\ProgramData\Adobe
    d-removed these links from registry file
    •HKEY_LOCAL_MACHINE\SOFTWARE\Adobe
    •HKEY_CURRENT_USER\Software\Adobe
    •HKEY_LOCAL_MACH INE\SOFTWARE\Wow6432Node\Adobe
    •HKEY_CURRENT_USER \Software\Wow6432Node\Adobe
    e-restarted the PC
    f- newly installed the Master Coll CS6
    g-update the software
    result of repair of "3" : problem still exists
    4.Ok i find out after coordination with support, it should have been created  ANOTHER NEW admin account.
    4a:so i did the same procedure (uninstalling) in profile B
    4b: and then i created brand new admin profile (profile C)for INSTALLATION of software
    4c: restarted the pc (and did not updated it yet)
    result :
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile C) : export WORKS
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile B) : export WORKS
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile A) : export DOES NOT WORK ! ! !
    (in profile A, is possible to export some raw video material in encoder which is imported to it via "drag and drop)
    problem i see:, i have my basic profile A, which i am interested to work, because of all my directory modifications are in there..
    this issue should be some "broken" connections between encoder and premiere, which refuses to "take material" from it and encode.
    what i expect :
    to get from Adobe some repair tool, which automatically checks these connections and repair if necessary, without necessity of founding the new profile and reinstallation of whole software.. this is madness !
    what i do NOT expect from Adobe:
    to get from Adobe advice of kind : you have to reinstall full software in new admin profile. sorry , we do not know the solution, because we do not know, how do behave our software.

  • My Custom Converter Doesn't Work With DataModel

    Hi,
    I have this simple object with its custom converter taken from the Core JSF Book. It works fine, but when I put it in DataModel, somehow it didn't get updated. I don't put the whole codes here, only the important parts.
    Any1 knows what is the reason? I have been looking for an answer but I haven't found one. Plz help.
    public class CreditCard {
    private String number;
    public CreditCard(String number) { this.number = number; }
    public String toString() { return number; }
    public class CreditCardConverter implements Converter, Serializable {
    private String separator;
    public void setSeparator(String newValue) { separator = newValue; }
    public Object getAsObject(............);
    return new CreditCard(builder.toString());
    public String getAsString(..............)
    throws ConverterException {
    return result.toString();
    public class MyBackBean{
    private DataModel creditCardDataModel;
    private static final CreditCard[] ccs = {
    new CreditCard("1111 111 111 111"),
    new CreditCard("2222 222 222 222")
    public DataModel getCards(){
    if (creditCardDataModel == null) {
    creditCardDataModel = new ArrayDataModel(ccs);
    return creditCardDataModel;
    <h:dataTable value="#{myBackBean.cards}" var="card">
    <h:column>
    <h:inputText id="card" value="#{card}"/>
    </h:column>
    </h:dataTable>
    Edited by: JW77 on Dec 3, 2009 12:47 AM

    Please explain.
    What does "cellcom line doesn't work with my iPhone" mean?
    What are you trying?  What is happening?
    Where did you buy the iphone?
    Any info abnout your issue at all?

  • IPhone original doesn't work with Belkin TuneBase FM after 2.0.1 update

    iPhone original doesn't work with Belkin TuneBase FM after 2.0.1 update

    Firstly, XE 10.2.0.1 isn't the same as 10gR2 10.2.0.1
    It was released a bit later and had some fixes that were in later 10.2.0.x patchsets (and also had some different security settings). Maybe they should have gone with 10.2.1.1.
    Second, the embedded PL/SQL gateway was okay for XE, but isn't supported for Apex on the Standard/Enterprise Edition until 11g. It doesn't mean it never works, but it does mean that you shouldn't rely on it.
    That said, there are other issues with 10.2.0.1 so I'd recommend going for the latest patchset anyway.
    Thirdly, if you get the XDB login dialog box, something has gone wrong. For the embedded PL/SQL gateway, XDB is acting as a virtual webserver. Generally what should happen is you connect to the webserver (XDB) and request a page (the APEX login page) and XDB should give it to you, no questions asked.
    If it asks you to login then the XDB webserver is running but is trying to get authorisation before it gives you the page. [By the way, if it does prompt for a username/password, it is expecting a database username/password, not an apex one or an O/S one] I'd suspect something is wrong with the setup.
    What happens if you ask for a simple image like
    http://URAN:8080/i/bottom_left.gif

Maybe you are looking for