Messaging working in BlazeDS deployed on Windows Tomcat but failing in Tomcat deployed on Ubuntu

I have been going round and round on this for days. I have no idea how to solve it. Everything works fine in windows but now I have to move to Ubuntu. I set up a streaming server with BlazeDS which is messaging to my clients great when my war is in tomcat 7 on windows but is failing in tomcat 7 on Ubuntu.
I see my client connect to BlazeDS on Ubuntu. The DEBUG messages print out that I have a client subscribed. It says that I have one FlexSession for an id and one client subscribed to streaming-amf. Then, a few seconds later, it says that the client sent a duplicate request "streaming-amf recieved a duplicate sreaming connection request from, FlexClient with id ... Faulting request."
Next the log files print out that there are no streaming clients for the FlexSession and no streaming clients for the endpoint streaming-amf.
This is the same software that works fine in the Windows Tomcat container but is not in Ubuntu Tomcat even though the WAR is exactly the same. In case it helps, my config files and calls are below:
messaging-config.xml
    <destination id="sp-streamingchannel">   
                       <properties>
            <network>
                <session-timeout>0</session-timeout>
                <throttle-inbound policy="ERROR" max-frequency="50"/>
                <throttle-outbound policy="REPLACE" max-frequency="500"/>
            </network>
            <server>
                <allow-subtopics>true</allow-subtopics>
                <subtopic-separator>.</subtopic-separator>
                <max-cache-size>1000</max-cache-size>
                <message-time-to-live>0</message-time-to-live>
                <durable>true</durable>
            </server>
        </properties>
            <channels>
             <channel ref="streaming-amf"/>           
            </channels>
           <adapter ref="SPStreamingAdapter"/>
           </destination>
services-conf.xml
    <channel-definition id="streaming-amf" class="mx.messaging.channels.StreamingAMFChannel">
              <endpoint url="http://localhost:8080/SP-Web-1.0/messagebroker/spamf" class="flex.messaging.endpoints.StreamingAMFEndpoint"/>
                    <properties>
                        <idle-timeout-minutes>0</idle-timeout-minutes>
                        <max-streaming-clients>150</max-streaming-clients>                      
                        <server-to-client-heartbeat-millis>5000</server-to-client-heartbeat-millis>
                              <user-agent-settings>
                      <user-agent match-on="MSIE" kickstart-bytes= "2048"  max-streaming-connections-per-session="2"/> 
                      <user-agent match-on="Firefox" kickstart-bytes="0"  max-streaming-connections-per-session="4"/>
                      <user-agent match-on="AdobeAIR" kickstart-bytes="2048" max-streaming-connections-per-session="2" />
            </user-agent-settings>
                    </properties>
          </channel-definition>
The calls in Flex:
public var channelDest:String = "http://98.193.212.138:8080/SP-Web-1.0/messagebroker/spamf";
private var channelName:String = "streaming-amf";
channelSet = new ChannelSet();
channel = new StreamingAMFChannel(channelName, channelDest);
var c:StreamingAMFChannel = new StreamingAMFChannel();
channelSet.addChannel(channel);
channel.connect(channelSet);
consumer = new Consumer();
consumer.destination  = "sp-streamingchannel";
consumer.channelSet = channelSet;
consumer.subtopic = "table." + tableID;
consumer.subscribe();
Why would this work fine on one server but fail on the other? Thanks so much for any help you can offer.
While it may not be releavnt to this question, I do have remoting working fine with BlazeDS on both systems. When my app starts, the user has to log in. All of that is done with BlazeDS and is working fine on both Win and Ubuntu. I only have a problem when it comes to streaming with BlazeDS as is shown above.

I have been going round and round on this for days. I have no idea how to solve it. Everything works fine in windows but now I have to move to Ubuntu. I set up a streaming server with BlazeDS which is messaging to my clients great when my war is in tomcat 7 on windows but is failing in tomcat 7 on Ubuntu.
I see my client connect to BlazeDS on Ubuntu. The DEBUG messages print out that I have a client subscribed. It says that I have one FlexSession for an id and one client subscribed to streaming-amf. Then, a few seconds later, it says that the client sent a duplicate request "streaming-amf recieved a duplicate sreaming connection request from, FlexClient with id ... Faulting request."
Next the log files print out that there are no streaming clients for the FlexSession and no streaming clients for the endpoint streaming-amf.
This is the same software that works fine in the Windows Tomcat container but is not in Ubuntu Tomcat even though the WAR is exactly the same. In case it helps, my config files and calls are below:
messaging-config.xml
    <destination id="sp-streamingchannel">   
                       <properties>
            <network>
                <session-timeout>0</session-timeout>
                <throttle-inbound policy="ERROR" max-frequency="50"/>
                <throttle-outbound policy="REPLACE" max-frequency="500"/>
            </network>
            <server>
                <allow-subtopics>true</allow-subtopics>
                <subtopic-separator>.</subtopic-separator>
                <max-cache-size>1000</max-cache-size>
                <message-time-to-live>0</message-time-to-live>
                <durable>true</durable>
            </server>
        </properties>
            <channels>
             <channel ref="streaming-amf"/>           
            </channels>
           <adapter ref="SPStreamingAdapter"/>
           </destination>
services-conf.xml
    <channel-definition id="streaming-amf" class="mx.messaging.channels.StreamingAMFChannel">
              <endpoint url="http://localhost:8080/SP-Web-1.0/messagebroker/spamf" class="flex.messaging.endpoints.StreamingAMFEndpoint"/>
                    <properties>
                        <idle-timeout-minutes>0</idle-timeout-minutes>
                        <max-streaming-clients>150</max-streaming-clients>                      
                        <server-to-client-heartbeat-millis>5000</server-to-client-heartbeat-millis>
                              <user-agent-settings>
                      <user-agent match-on="MSIE" kickstart-bytes= "2048"  max-streaming-connections-per-session="2"/> 
                      <user-agent match-on="Firefox" kickstart-bytes="0"  max-streaming-connections-per-session="4"/>
                      <user-agent match-on="AdobeAIR" kickstart-bytes="2048" max-streaming-connections-per-session="2" />
            </user-agent-settings>
                    </properties>
          </channel-definition>
The calls in Flex:
public var channelDest:String = "http://98.193.212.138:8080/SP-Web-1.0/messagebroker/spamf";
private var channelName:String = "streaming-amf";
channelSet = new ChannelSet();
channel = new StreamingAMFChannel(channelName, channelDest);
var c:StreamingAMFChannel = new StreamingAMFChannel();
channelSet.addChannel(channel);
channel.connect(channelSet);
consumer = new Consumer();
consumer.destination  = "sp-streamingchannel";
consumer.channelSet = channelSet;
consumer.subtopic = "table." + tableID;
consumer.subscribe();
Why would this work fine on one server but fail on the other? Thanks so much for any help you can offer.
While it may not be releavnt to this question, I do have remoting working fine with BlazeDS on both systems. When my app starts, the user has to log in. All of that is done with BlazeDS and is working fine on both Win and Ubuntu. I only have a problem when it comes to streaming with BlazeDS as is shown above.

Similar Messages

  • Problem : App works with Sun App server 8.0 but fails with 8.1

    Hi All
         I am experiencing some strange problem with executing my JSF application with Sun App Server.
         I have an EAR deployed on Sun Application Server 8.0 and 8.1.
         Strangely it works quite fine with 8.0 but fails with 8.1.
         In my JSP page ..I have a dummy component whose getter method is used as a "FormLoad" event of the page.
         <h:form id="imageForm" enctype="multipart/form-data">
         <h:messages showDetail="true" />
         <table width="980" border="1" cellpadding="0" cellspacing="0" bordercolor="#A9B8C2">
              <tr>
    <td>     
                   <h:inputHidden value="#{Screen1.initializeService}"/>
              <h:selectOneListbox styleClass="style2" id="cmbMiddleArea" immediate="true" value="#{Screen1.selectedMiddleArea}">
              <f:selectItems value="#{Screen1.middleAreaList}" />
         </h:selectOneListbox>
         In my backing bean i have ..
         public String getInitializeService() {
              ..... Retrieve all the data from DB to initialize all the components on the JSP page
              .......setMiddleAreaList......
              .......setSelectedMiddleArea.....
              ........set the values of the individal component...
         I am retrieving all the data from DB in this getter method and intializing the components on the JSP page.
         I have also checked the code generated for JSP by both the servers.I am posting the code here for reference although
         i did not find any significant difference between the two...
         For Server 8.0
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
         return false;
         For Server 8.1
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         PageContext pageContext = jspxpage_context;
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{searchBean.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
         return false;
         Now the actual problem is "getInitializeService" method never gets called when i deploy and run the application on Sun App Server8.1
         However with Sun App Server 8.0 it woeks perfectly fine.
         Can anybody help me in resolving these issues ?
         

    Actually generated JSP code can be referred as ...
    For Server 8.0
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value.reuse(_jspx_th_h_inputHidden_0);
         return false;
         For Server 8.1
         private boolean jspxmeth_h_inputHidden_0(javax.servlet.jsp.tagext.JspTag jspxth_h_form_0, PageContext jspxpage_context)
         throws Throwable {
         PageContext pageContext = jspxpage_context;
         JspWriter out = jspxpage_context.getOut();
         // h:inputHidden
         com.sun.faces.taglib.html_basic.InputHiddenTag jspxth_h_inputHidden_0 = (com.sun.faces.taglib.html_basic.InputHiddenTag) jspxtagPool_h_inputHidden_value_nobody.get(com.sun.faces.taglib.html_basic.InputHiddenTag.class);
         jspxth_h_inputHidden_0.setPageContext(_jspx_page_context);
         jspxth_h_inputHidden_0.setParent((javax.servlet.jsp.tagext.Tag) jspxth_h_form_0);
         jspxth_h_inputHidden_0.setValue("#{Screen1.initializeService}");
         int jspxeval_h_inputHidden_0 = jspxth_h_inputHidden_0.doStartTag();
         if (_jspx_th_h_inputHidden_0.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
         return true;
         jspxtagPool_h_inputHidden_value_nobody.reuse(_jspx_th_h_inputHidden_0);
         return false;
         }

  • Airport Extreme Disk works great on OSX and Windows XP but no go on Vista

    Just bought the Airport Extreme and attached a Seagate 320GB HDD to the USB port (formatted MAC journaled).
    Using the Airport Disk Ultility, I can access the NAS drive and read/write files from a 24" iMac and Windows XP PC.
    But on the Vista PC, Airport Disk Ultility recognise there is a drive, but when I try to connect to it and enter the password, I get this error;
    AirPort Disk Agent
    Unknown user, incorrect password, or login is disabled. Please retype the login information or contact the disk's administrator.
    I have tried setting the share to disk password, base station password and user accounts. All with the same error and only in Vista.
    Has anyone managed to get the Airport Disk working in Vista?
    24" iMac, windows XP/ Vista   Mac OS X (10.4.8)   Airport Extreme, Windows 2000 + XP + Vista

    You may want to try the Airport for Windows discussions:
    http://discussions.apple.com/forum.jspa?forumID=1014

  • Messages works fine on my iPhone and iPad, but replies get mixed up on my Mac.

    My Mac's Messages app sometimes places replies (for a group chat) in other group chats. There are a lot of overlapping people in both chats (that may haver something to do with it?)
    If I'm group chatting with A, B, C, and D, and then, in a separate group chat, I'm chatting with A, B, D, E, and F, then sometimes B's chats will appear in the wrong group chat window.
    They look fine on my iOS devices. It only happens on the Mac Pro.

    Because the Google calendar has nothing to do with Apple, as its name suggests it is hosted by Google. To see both calendars on your devices add both calendars to them.
    The Google calendar will not appear at iCloud.com, Google have their own website.

  • Scp works when logging with my user id but fails when using another one

    Hello all:
    I wrote a script that uses scp to transfer specific local files to a server. The script takes the user id and password and pass them as scp's parameters for authentication.
    Everything works fine when I uses my own user id to test the script but it fails when I used another id (with ligitimate password) to do the same thing.
    I suspect it's a privilege issue. Both ids belong to the same group. Where should I look to fingure this out?
    Thanks,
    John

    SCP is part of SSH. SSH requires the exchange of authorization keys to prevent man-in-the-middle attacks.
    When you log in the first time you may see a prompt like:
    RSA key fingerprint is 98:2e:d7:e0:de:9f:ac:67:28:d2:42:2e:37:16:58:45.
    Are you sure you want to continue connecting (yes/no)?
    This might be where your script fails. Since it prompts only the first time, you may just have to do one interactive SSH login to create an entry in ~/.ssh/known_hosts
    Or setup User equivalence to omit the exchange of passwords.
    You may find the following interesting:
    Oracle Linux 5 Howto: Installing and using cURL with support for SCP and SFTP
    OL5 Howto: Installing and using cURL with support for SCP and SFTP
    see 3) Set up SSH user equivalence for SCP and SFTP

  • You Tube requires Flash update. Worked for laptop Windows 7 but not PC Windows Vista. Can you help?

    You Tube said I needed latest Adobe Flash Player, so uninstalled old version and reinstalled latest version 11.6.602.171 on PC running Windows Vista Home Basic SP2 32-bit OS.  My system says it's there, but it still won't work on You Tube - still get same message saying Ineed latest version.
    Had same message on my Laptop running Windows 7 and it updated and works fine.  I use Internet Explorer 9.
    Detailed Problem Description: Problem with downloading latest Adobe Flash update and viewing YouTube.  On PC running Windows Vista Home Basic SP2 32-bit OS, You Tube home page red banner at top said I needed to install latest Adobe Flash Player but even after installing, it does not work and will not play most videos in browser and shows black screen with message still asking to download latest version.  Seems to be rather random as to which videos it will play and which ones it won't, although there may be some common link (see examples below).  I thought it might have been HTML5 problem but I have successfully played HTML5 and Non-HTML videos through Adobe test site (Adobe Flash Player Help/Video Playback Issues) as well as Stage Videos. (Note: Had same You Tube messages when viewing on Laptop running Windows 7 but that updated without problem.)
    Ran Adobe Uninstall. Closed all other programs before reinstalling direct from Adobe (rather than You Tube link). No change.
    Ran all Adobe troubleshooting suggestions listed at http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html#main_2__Disable_Ac tiveX_Filtering__if_you_are_using_Internet_Explorer_9_.
    Removed browsing data and deleted cache, checked that Internet Tools\Safety\Active X filtering was disabled (but in Internet Option\Security, Active X controls are enabled), disabled Hardware Acceleration, restarted computer but no change to You Tube viewing.  Re-enabled, but no change.  (WOULD LOVE ADVICE FOR FUTURE REFERENCE IF I SHOULD KEEP THIS ENABLED OR DISABLED.)
    I have updated graphics drivers for NVIDIA GeForce 9400 GT- although had to do manually as NVIDIA auto system scan said "could not detect your GPU". Noted they said Windows Vista supports up to Direct X 10, but my system is running Direct X 11.  Had optional update message for "nVidia Graphics Adapter WDDM1.1, Graphics Adapter WDDM 1.2, other Hardware NVIDIA GeForce 9400 GT" on both PC & laptop.  Laptop downloaded fine. Tried to download on PC but was not successful. Error Code 80070103, possibly because system had already been updated? Current driver version 9.18.13.1407 - "Windows has determined that your current driver software is up to date".
    Running Norton 360 but it did not block or indicate any problems with Flash Player download.
    Problem URL: http://www.youtube.com/?utm_source=navclient (red banner at top of home page says I still need to download latest Adobe Flash).
    Example of specific video that will not play: http://www.youtube.com/watch?v=384IUU43bfQ
    Example of specific video that will not play: http://www.youtube.com/watch?v=YgMen4-PI74
    Example of video that will play: http://www.youtube.com/watch?v=TGbrFmPBV0Y

    Dear Chris,
    Thanks for reply.  I ran the recommened Adobe uninstall program so assumed it deleted whatever it should have, before installing new version.  When it didn't work I followed instructions in Flash Player help page (screen shot below) which said to delete the Roaming App Data/Macromedia/Flash folder and Roaming App Data/Adobe/Flash folder, which I did. 
    Below are screen shots of C:\windows\system32\macromed\flash files as they currently stand.  I have a fuzzy recollection that it was deleted at some point because I think I went searching for it during one troubleshooting session and it couldn't be found (but maybe I'm geting confused with the App Date folders?).  Anyway I presume these current files are all post-reinstallation as the dates are all 5 or 6 March (did them before and after midnight).  I'm on Australian time - not sure where you are. However, notice install.log date is 21/05/2010 and Flash Player Trust sub-folder is dated 6/09/2008.
    When I right click on the screen of both videos that will and won't play, I just get a list of options starting at "Copy video URL" down to "About HTML5".   So not sure what you mean when you say "For the videos that do play, when you right click on them what version of Flash Player is reported at the bottom of the context menu?" as I can't see any info like this.  Do I click somewhere else?
    If you are able to get the info you are after yourself, two videos that will work are:
    http://www.youtube.com/watch?v=OLKlTN1JN7w and
    http://www.youtube.com/watch?v=TGbrFmPBV0Y
    Also, with hardware acceleration enabling or disabling, the only place I can find to do this is through the Adobe Flash Help page http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html#main_2__Disable_Ac tiveX_Filtering__if_you_are_using_Internet_Explorer_9_
    and right clicking on the Flash Player info box, going into Settings and checking or unchecking the Enable box.  Do you know if there is another setting in my actual computer where I can do this and or there's some other setting I need to change?  There doesn't seem to be anything similar when I go through Conrol Panel - Flash Player.
    5. Delete all Flash Player browsing data
      a.. Click Start > Control Panel.
      b.. Double-click Flash Player.
      c.. In the Flash Player Setting Manager, click Advanced.
      d.. Under Browsing Data and Settings, click Delete All.
    6. Remove Flash Player cache
      a.. On your computer, select Start > Run. (On Windows 7, click Start and type in Search Programs and Files.)
      b.. Type %appdata%\Adobe and click OK.
      c.. Delete the Flash Player folder.
      d.. Repeat step 1 and type %appdata%\Macromedia.
      e.. Delete the Flash Player folder.

  • Java mapping in ccBPM works in PI 7.0 but fails in PI 7.1

    Hi guys,
    at the moment we are upgrading form SAP PI 7.0 to SAP PI 7.11.
    In a scenario for processing of incoming orders we use an ccBPM.
    In this ccBPM there is an mapping where the original xml document of the order are combined with some
    additional information form an web service (multi mapping 2 => 1)
    The result of this mapping is processed further to create an sales order in the backend.
    The multi mapping an java mapping is used.
    Now we are testing the scenario with PI 7.11 and it fails at this mapping step.
    in the workflow log following error occurs.
    An exception with the type CX_ST_MATCH_ELEMENT occ urred, but was neither handled locally, nor de
    Message no. W8899
    I tested the same message on out SAP PI 7.0 system and the whole ccBPM works well.
    When I extract the 2 messages from workflow log and paste them into the test tab of the operation mapping of Enterprise Service Builder of SAP PI 7.11, surrounding by the envelope used by multi mappings
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
       <ns0:Message1>
                   XML MESSAGE 1
       </ns0:Message1>
       <ns0:Message2>
                   XML MESSAGE 2  
       </ns0:Message2>
    </ns0:Messages>
    the mapping works without error, but at runtime it fails, throwing the error mentioned above.
    What could be the reason for this error?
    Does the multi mapping change in PI 7.11 at runtime?
    Could it be a problem parsing the multi message?
    Any help appreciated.
    Kind regards
    Jochen

    Hi Raja,
    thanks for your suggest.
    I know this issue, the java class files are compiled using jdk 1.5.
    We made some more tests.
    e.g. created an dummy ccBPM with two mappings, one two spilt the incoming message in two messages (graphical message mapping) and one to merge this two messages to one message again (java mapping)
    the mapping works at design time on test tab, but fails with the same error at rumtime.
    Also we tested one single operation mapping with this two mappings (split via graphical mapping and merge via java mapping)
    This works also at design time but fails at runtime with a similar error shown in smq2
    The error message is Error ST_MATCH_FAIL occured. P1=element-start P2=M
    we tried to add the whole incoming message to the trace by
    getTrace().addWarning()
    but an trace object is never created in for this step in the workflow log.
    it seem whether you can not add trace messages using the command or that the error occures before this command will be used.
    Kind regards
    Jochen

  • In PHotoshop CC, my blenidng options are not working at all.  A window comes up with the message "

    In PHotoshop CC, my blenidng options are not working at all.  A window comes up with the message "Could not complete your reequest because of a program error.  "
    Linda

    In Photoshop CC whenever I try to apply blending options to a layer, an error message comes up.. In my error message log, this is what comes up
      2013:07:12 16:17:16 : tracked key 0000000000000238 of type struct _ADsc * __ptr64 not found : 1 : REQUIRE failed 2013:07:12 16:17:16 : e:\ps13\ps_14_win_x64_daily_retail\20130423.r.221\photoshop\main\photoshop\interfaces\UTr ackResourceImp.h : 137 : REQUIRE failed 2013:07:18 19:20:19 : tracked key 0000000000000100 of type struct _ADsc * __ptr64 not found : 1 : REQUIRE failed 2013:07:18 19:20:19 : e:\ps13\ps_14_win_x64_daily_retail\20130423.r.221\photoshop\main\photoshop\interfaces\UTr ackResourceImp.h : 137 : REQUIRE failed 2013:09:05 22:42:22 : ..\..\sources\USheetRendererCommands.cpp : 556 : REQUIRE failed 2013:09:16 17:22:13 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:16 17:22:20 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:19:20 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:19:37 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:25:58 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:21 16:28:01 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:34:51 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:35:19 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:35:22 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:35:30 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:37:55 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:37:59 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:38:04 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:38:08 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:38:22 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 14:43:33 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:13:25 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:13:42 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:13:59 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:23 17:14:16 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:25 22:04:18 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 16:58:46 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:46:04 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:47:08 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:47:32 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:54:05 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:54:12 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:54:33 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 17:57:02 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 18:05:03 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 18:05:40 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 18:05:49 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 20:31:17 :
    ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed 2013:09:26 20:31:53 : ..\..\sources\UPattern.cpp : 1679 : REQUIRE failed

  • Keep getting error message saying ipod detected but could not be identified properly - I have tried all the steps on the support page twice and it still will not work!  I am running windows 8 (which it has worked with ok before) - struggling :(

    keep getting error message saying ipod detected but could not be identified properly - I have tried all the steps on the support page twice and it still will not work!  I am running windows 8 (which it has worked with ok before) - struggling
    I recently bought some new albums and can't play them on my ipod

    I just encountered the same problem on my 2 month old MBPro.  I found a work around by changing USB ports.  As for the actual cause or the reason why that worked, I dont know.  The USB port I was using works fine with my phone or other USB devices.

  • When i try to send email in my hotmail i get this message webkit2 web process.exe stopped working then it closes the window any ideas

    when i try to send email in my hotmail i get this message webkit2 web process.exe stopped working then it closes the window any ideas

    Do you know how it is chaning the addresses?  Can you compare what is send to what it is your address book?
    In the meantime, make a temporary, backup copy of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    OT

  • I am suddenly getting a message that the 'mobile device services' has stopped working on my computer and windows seems unable to fix.  I have tried finding the file and making sure that it is enabled.  It says 'enabled' but does not work.

    I recently downloaded a new update of the operating system on my 3GS  It seems to be a bit slower since and I have no idea if that is part of what is going wrong.  I cannot get itunes to recognise my phone.  Windows pops up a 'window' that says my 'mobile device services' is not working and would I like Windows to look online for the problem - I say yes, windows does it's thing, blanks out and I am back where I was.  I tried updating itunes but no luck.
    I found the mobiledeviceservices.exe file and made sure it was all 'on' and 'enabled' still no luck  I did a search and came up with some other people who had the same problem but the answers that they were given didn't help me.

    When you erased the disk did you select Mac OS Extended Journaled as the format option?

  • BPEL process fails in SOA (in UNIX), but works fine in SOA (in Windows) env

    Hello,
    BPEL process fails in SOA (in UNIX), but works fine in SOA (in Windows) environment
    Step 1: Build a asynchronous BPEL process which has no extra node. Make and deploy it in 'local windows desktop SOA' server
    The BPEL process has three nodes:
    a. client - on the left side of the swim lane
    b. receiveInput - first node in swim lane (client calls 'receiveInput')
    c. callbackClient - second and last node in the swim lane ('callbackClient' calls client)
    Step 2: Go to BPEL console and 'Initiate' the BPEL process -> 'Post XML Message'
    Step 3: Now, I can see the successfully completed BPEL instance in the BPEL console.
    Now,
    Step 4: Deploy the same BPEL process (dummy asynchronous) in the SOA server (hosted in unix box)
    Step 5: Go to BPEL console and 'Initiate' the BPEL process -> 'Post XML Message'
    Step 6: I find that the BPEL instance appears to have ended in error (on the second node i.e. callbackClient )
    With the following error message
    +<invalidVariables xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>9710</code>+
    +</part><part name="summary"><summary>Invalid xml document.+
    According to the xml schemas, the xml document is invalid. The reason is: Error::cvc-complex-type.2.4.b: The content of element 'DummyBPELProcessProcessResponse' is not complete. One of '{"http://xmlns.oracle.com/DummyBPELProcess":result}' is expected.
    Please make sure that the xml document is valid against your schemas.
    +</summary>+
    +</part></invalidVariables>+
    Has anyone faced similar issue as above ?
    i.e. process works find in windows environment (local SOA), but fails in SOA server in UNIX environment
    Appreciate your help in understanding this issue.
    Thanks,
    Santhosh

    Hello,
    The fix to this issue appears to have been as follows:
    +<schema attributeFormDefault="unqualified"+
    +     elementFormDefault="qualified"+
    +     targetNamespace="http://xmlns.oracle.com/DummyBPELProcess"+
    +     xmlns="http://www.w3.org/2001/XMLSchema">+
    +     <element name="DummyBPELProcessProcessRequest">+
    +          <complexType>+
    +               <sequence>+
    +                    <element name="input" type="string"/>+
    +               </sequence>+
    +          </complexType>+
    +     </element>+
    +     <element name="DummyBPELProcessProcessResponse">+
    +          <complexType>+
    +               <sequence>+
    +                    <element name="*:result*" type="string"/>+
    +               </sequence>+
    +          </complexType>+
    +     </element>+
    +</schema>+
    In DummyBPELProcess.xsd,
    modifiying "result" to ":result" appears to have resolved the issue in SOA under unix environment.
    If anyone can explain why "result" works in SOA under windows and ":result" works in SOA under unix environment, I would really appreciate your help.
    Thanks,
    Santhosh

  • HT5654 Just tried 3 times to update iTunes on my PC running Vista.  There was an error.  It stopped the installation.  Now iTunes will not start at all.  The error message tells me to reinstall which I tried but did not work.  What should I do?

    Just tried 3 times to update iTunes on my PC running Vista.  There was an error.  It stopped the installation.  Now iTunes will not start at all.  The error message tells me to reinstall which I tried but did not work.  What should I do?

    Hello, Jdragone. 
    Thanks for the question.  Start with completely uninstalling iTunes and all of it's components in the order specified in the article below.  Once this is done, download and install iTunes.
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    If you receive any errors when uninstalling any components of iTunes, try the steps in the article below for each component that gives you an error.
    "The feature you are trying to use is on a network resource that is unavailable" alert appears when removing Apple software in Windows
    http://support.apple.com/kb/TS3704
    Cheers,
    Jason H.

  • I get "an error has occurred in the script on this page" it comes up for no reason on Firefox and I can't remove the message, it then goes away on it's own after 3 minutes? how do I prevent this message coming up? I have Windows 7.

    I get "an error has occurred in the script on this page" it comes up for no reason on Firefox and I can't remove the message, it then goes away on it's own after 3 minutes? how do I prevent this message coming up? I have Windows 7.
    I can work the screen behind the message which stays in the centre of my screen.

    Windows version is...?
    What pages are giving you problems? [post links to same]
    Are you getting the script errors only when attempting to print or...?
    Has your printer's manufacturer confirmed that your currently installed printer software is IE11-compatible (yet)?
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • Icloud sync only works between mac pro and windows outlook, not with iphone and ipad anymore

    Hi
    Can anyone help me with my problem?
    I do have icloud installed on my MacBookPro, on my Windows Outlook computer, on my iPad 2 and on the iPhone 4S.
    Now until yesterday everything synchronized perfectly well.
    Then I created some groups on my MacBookPro address book and since then (I believe that was when it started) icloud no longer synchs from and to the ipad and the iphone. It still works between the Mac and Windows Outlook.
    On the iPad/iPhone I have tried everything but it still won't do. I have even reset the whole iPad and obviously lost all data and tried again. I all sometimes get is a few contacts back into the address book on the ipad. But only a limited number, not all.
    Also, to delete the icloud account on the ipad/iphone is sometimes not possible. It just hangs and I can see the message "Deleting..." for ever.
    Anyone an idea?
    Thanks in advance!

    One more comment. Wired connection seem to be stable neither. I have ping running to the Windows computer and after a couple of minutes, it gets broken.
    However if I have both WiFi and cable connection to the home router and disconnect from cable (after ping is broken), I get the network to the Windows comptuer back. Nothing serious on the network change, I just get 192.168.1.x instead of 192.168.1.y as IP).
    During this network switch I do nothing with the Windows computer.
    This is not valid if I want to connect to the Windows computer via Microsoft sharing (smb://192.168.1.x), then it immediately breaks the connection. Can't get it back until Windows is restarted.
    Getting lost...

Maybe you are looking for

  • Run_report_object is giving error

    I am tryimg to run report. In Form Builder i have a report obgect 'report_numb1' In my procedure i am using pl_id paramlist; report_job_id VARCHAR2(100); BEGIN I have some parameters passed to the report Add_Parameter (pl_id, report_job_id := RUN_REP

  • Mplayer and xine don't work

    I cannot say much. I've tested it with Mplayer and xine but both don't work. I want to use Mplayer so I'll speak only from mplayer. When I start Mplayer and go to DVD - Open Disc this error appears -> "Cannot open the IFO file for DVD title1" I don't

  • Change Management & Change Transport Process in GRC AC RAR

    With RAR not being able to leverage the SAP ABAP Change Management Process (CTS) what is the best practise for controlling the changes for RAR rule set ? How do we acheive job segregation from 1. Making Changes to Rules in Dev RAR 2. Transporting (Im

  • Regarding BPM Object Retrieval in PAPI API

    Hi, I am using Oracle BPM10gR3 to develop BPM processes. I am having external connectivity of BPM processes with external Java application through PAPI API. I am having a BPM Object defined as "ApplicationObject" under Module which consists of instan

  • HOW CAN I USE A PURCHASED RING TONE ....

    .... instead of the pre-loaded & boring as all **** ringtones, that come with this phone? Someone in Discussions told me to buy a ringtone and then I'd be able to select it to be my ringtone, etc., but my list of sounds does not include my purchased