Exception behind the scenes while trying to paint images

Hi,
I am trying to load up an image (bufferedimage) by pasting 2 images one after the other. The response type of the jsp is set to image/jpg. I am able to see the image, but behind the scenes, i get an exception like this
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R java.lang.IllegalStateException: Context has not been prepared for next connection
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.NilSRPConnection.prepareForWrite(SRTConnectionContext.java:593)
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.SRTServletResponse.commit(SRTServletResponse.java:303)
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.SRTServletResponse.alertFirstFlush(SRTServletResponse.java:227)
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.BufferedServletOutputStream.flushBytes(BufferedServletOutputStream.java:359)
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.BufferedServletOutputStream.flush(BufferedServletOutputStream.java:343)
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at javax.imageio.stream.FileCacheImageOutputStream.close(FileCacheImageOutputStream.java:226)
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.sun.imageio.stream.StreamCloser$1.run(StreamCloser.java:79)
[3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at java.lang.Thread.run(Thread.java:570)
Any ideas here?
Thanks

Hello INFINITI11,
I've build a test machine and I can update the content so the online content doesn't have problem in my mind.
You may need to check your network setting here because we can see this error:
"The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist."
You can check your account privilege and check whether you have any policy settings on your OS. You'd better also check that you've disabled all Anti-virus software.
Best regards,
Barry
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Error 5 - An exception occurred in SMO while trying to manage a service

    Hi
    I use an instrument
    made by myself in vb.net using SMO
    objects to manage a mixed group of about
    80 MS Sql Server (rel. 2005-2008 r2 & 2012)
    With this tool I check the status of services,
    change service accounts and their passwords,
    etc.
    A few days ago one server
    started to return an error when I run
    the first operation on any property of the object
    ManagedComputer just created.
    Error: "Error 5 - An exception occurred in SMO while trying to manage a service"
    This is my code:
    If UserID = "" Then
                '//Use the credentials of current user
                                mc = New ManagedComputer(serverName)
                            Else
                             '// Use the credentials provided by interface
                                mc = New ManagedComputer(serverName, UserID, UserPsw)
                            End If
                            str = ""
                            For x = 0 To mc.Services.Count - 1
                                With mc.Services.Item(x)
                                       servNome = .Parent.Name.ToUpper
                                        srvNome = .Name
                                        srvStato = .ServiceState.ToString
                                        srvStartMode = .StartMode.ToString
                                        srvAccount = .ServiceAccount
                                    End If
                                End With
                            Next
    The instruction mc.Services.Count generates the error below:
    smoex = {"An exception occurred in SMO while trying to manage a service."}
        Microsoft.SqlServer.Management.Smo.FailedOperationException = {"An exception occurred in SMO while trying to manage a service."}
        _HResult = -2146233088
        _message = "An exception occurred in SMO while trying to manage a service."
        Data = {System.Collections.ListDictionaryInternal}
        FailedObject = Nothing
        HelpLink = "http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=11.0.2100.60+((SQL11_RTM).120210-1846+)&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.InnerWmiException&LinkId=20476"
        HResult = -2146233088
        InnerException = {"Failed to retrieve data for this request."}
        IPForWatsonBuckets = 1670498764
        IsTransient = False
        Message = "An exception occurred in SMO while trying to manage a service."
        Operation = ""
        ProductName = "Microsoft SQL Server"
        ProdVer = "11.0.2100.60 ((SQL11_RTM).120210-1846 )"
        RemoteStackTrace = Nothing
        SmoExceptionType = FailedOperationException {12}
        Source = "Microsoft.SqlServer.SqlWmiManagement"
        StackTrace = "   in Microsoft.SqlServer.Management.Smo.Wmi.WMIProxy.ExecProcess(Object request)     in Microsoft.SqlServer.Management.Smo.Wmi.WmiSmoObject.EnumChildren(String childTypeName, WmiCollectionBase
    coll)     in Microsoft.SqlServer.Management.Smo.Wmi.ServiceCol...
        TargetSite = {System.Object ExecProcess(System.Object)}
        WatsonBuckets = Nothing
    The server not have problems and the local Sql Server Configuration Manager work fine.
    I copied the tool on the server to run it
    locally. Strangely, if I use the credentials of the current logged user the tool works
    (mc = New ManagedComputer(serverName) )
    If I provide explicit the credentials
    (domain\username and password, but  the same of user logged in the server)
    is not working 
    ( mc = New ManagedComputer(serverName, UserID, UserPsw) )
    From a remote server instead
    does not work in both modes.
    The server configuration:os Win 2008 R2 EE Sp1 , Ms Sql 2008 R2 Sp2 10.50.4321
    Any suggestion is
    much appreciated
    Many thanks in advance

    Hi Lydia
    Thanks for your quick
    response.
    Unfortunately I had already considered this hypothesis
    and the security settings on the object WMI
    seems correct.
    The user with which I run the program
    is part of a domain's
    group inserted into
    the local administrators group. This group
    has the flag "Remote Enable" active.
    However, I verified that the
    problem occurred since I updated my tool
    to monitor and manage the new systems Sql
    2012. The tool now uses objects
    SMO 11.0 that I installed in the development environment,
    and on server where it is scheduled
    the tool, through the package
    SharedManagementObjects.msi.
    The documentation says that SMO 11 is
    compatible with SQL 2005
    and higher and, in fact, I only had problems
    with one server. The old version of tool in fact work fine again.
    This information will suggest
    some ideas?
    Thanks again
    Giovanni Camurri

  • Links work behind the scene

    Hi All,
    I have a pdf which is pretty much a guide. I created InDesign file with layers and exported as pdf.
    I'm trying to do the following:
    When i hit one of the navigation links, a layer associated with that link shows up. In layer that showed up, i have more links associated with images in its own layers. Everything works like i want.
    The problem is that links in non active layers work behind the scene when i hover over so i can hit link in non active layres.
    Is there a way to solve this problem?
    The script (in link action) i'm using to show/hide layers is:
    var ocgs = this.getOCGs();
    for (var i=0; i<ocgs.length; i++)
    if (ocgs[i].name == "LayerName")
    ocgs[i].state = ocgs[i].state=true;
    var ocgs = this.getOCGs();
    for (var i=0; i<ocgs.length; i++)
    if (ocgs[i].name == "LayerName")
    ocgs[i].state = ocgs[i].state=false;
    I'm using Acrobat 9 pro
    Please help
    Thanks in advance

    Hi,
    Thanks for the answer. I solved the problem in acrobat with buttons.
    Thanks anyway

  • Multiple Guest Accounts / Behind-the-scenes Login

    How would we go about logging a visitor in as a specific user behind-the-scenes (without them even seeing the Login Screen)? This question is driven from a requirement where we need to display a replica of the subportal branding at the guest view level. (Needs to go on the wish list for sure: Redirecting to a subportal and/or subportal guest accounts.) For example, if I created a [subportalname] Guest user for a subportal and wanted to automatically log a visitor in as that user, how would I trigger that process? Login PEI doesn't help me - none of those events seem to fire until the user is presented with the Login screen and manually clicks Log In - Looking at the Interpreter class right now, where we see the Guest login functionality (DoGuestLogin, etc.). How might we pass around a username and password and trigger an automatic login attempt with that data? We're basically looking for a work-around for multiple guest accounts - 1 per subportal - so that branding can appear right up front before a user actually logs in. We will have a parameter somewhere to branch out which subportal guest user to log the visitor in as. We've gone down a couple of different routes with no luck.
    Again, due to a tight timeframe, we need details - like, "Create a custom activity space replacing the Interpreter class, edit [blah] function and use [blah] function to pass in your hardcoded username and password. Rebuild [blah] and deploy [blah] dlls to [blah] directories."
    Regards,
    Sarah WheelerCox Enterprises, Inc.

    It turns out this is pretty complicated due to the internals of how user sessions get initialized. I've managed to get a test working where it logs you in as a guest in a different sub-portal. I can give you some rough information now.
    You will need a Login PEI, and a custom Space and IloginControl/IHTTPControl. Obviously, you will need to edit the Login PEI xml file and the CustomActivitySpaces.xml file to get your customizations deployed.
    The OnAfterLogin() method of the ILoginActions PEI should look something like this:
    publicRedirect OnAfterLogin(Object _oUserSession, ApplicationData arg1)
    IPTSession ptSession = (IPTSession) _oUserSession;
    if(ptSession.GetSessionInfo().GetCurrentUserID() == PT_INTRINSICS.PT_USER_GUEST)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_Browsing))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "Guest user login redirecting to guestloginspace to go to non-standard guest user.");
    Redirect guestRedirect = newRedirect();
    guestRedirect.SetLinkCreateNewSpace(GuestLoginSpace.STR_MVC_CLASS_NAME, null);
    guestRedirect.SetControl(GuestLoginSpace.STR_MVC_CLASS_NAME);
    returnguestRedirect;
    returnnull;
    and the LoginControl that I mentioned earlier is a bit more complicated than I implied. It also needs to be an IHTTPControl for login purposes. The custom space is very simple, so I will skip it. Here's the full class code for the custom guest login control:
    publicclassGuestLoginControl implementsILoginControl, IHTTPControl
    publicstaticfinalString STR_MVC_CLASS_NAME = "GuestLogin";
    privateAActivitySpace m_asOwner;
    privateIPTSession m_UserSession;
    /**theseneedtobenulledoutafterexecution.*/
    privateIWebData m_WebData = null;
    privateIXPRequest m_xpRequest = null;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#DoGetSession()
    publicbooleanDoGetSession()
    returntrue;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#GetSession()
    publicObject GetSession()
    // We need to set this manually before the Interpreter does because
    // DoTasksAfterLogout depends on it.
    // m_asOwner.SetUserSession(subportalGuestUser);
    LoginResult rReturn = null;
    try
    rReturn = LoginHelper.INSTANCE.AttemptLogin(m_UserSession, m_asOwner,
    m_xpRequest, m_WebData);
    catch(Exception e)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "AttemptLogin() failed.", e);
    if(!rReturn.m_bSuccess)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() failed: "+
    rReturn.m_strError);
    if(null!= rReturn.m_Redirect)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() return redirect ignored.");
    m_xpRequest = null;
    m_WebData = null;
    returnm_UserSession;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#CheckActionSecurityAndExecute(XPHashtable)
    publicRedirect CheckActionSecurityAndExecute(XPHashtable arg0)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() creating redirect to login space for dljr.");
    m_UserSession = PortalObjectsFactory.CreateSession();
    m_UserSession.Connect("non-standard guest", "", null);
    ILink rReturn = LoginHelper.INSTANCE.GetDefaultPageRedirect(newRedirect(), m_UserSession, m_asOwner);
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() finished.");
    return(Redirect) rReturn;
    *@seeIHTTPControl
    *@paramr
    *@parampageData
    publicvoidSetHTTPItems(IXPRequest r, IWebData pageData)
    m_xpRequest = r;
    m_WebData = pageData;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#Init(IModel,AActivitySpace)
    publicvoidInit(IModel arg0, AActivitySpace _asOwner)
    m_asOwner = _asOwner;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#SetRedirectForUseAfterLogin(Redirect)
    publicvoidSetRedirectForUseAfterLogin(Redirect arg0)
    *@seecom.plumtree.uiinfrastructure.activityspace.IMVCObject#GetName()
    publicString GetName()
    returnSTR_MVC_CLASS_NAME;
    *@seecom.plumtree.uiinfrastructure.activityspace.IManagedObject#Create()
    publicObject Create()
    returnnewGuestLoginControl();

  • Behind the Scenes in Captivate 2

    I'm creating an application where I ask the user to enter
    comments in a text entry box. What I want to be able to do is save
    whatever they type in the text box and display it in a later slide
    so they can compare their comments to an "expert's" assessment.
    When I was at a learning conference, I heard some Captivate
    users refer to going "behind the scenes" to make changes to
    Captivate. Is that what I need to do here? Any suggestions?

    See "Text Input/Output" by Silke Fleischer, posted on the
    Captivate Exchange:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1253 021
    Works great!

  • Running "nightly scripts" and other behind the scenes tasks

    I keep seeing posts about how the iMac Intel runs nightly scripts and/or other tasks behind the scenes. There is no mention of this in the user manual nor does Apple warn you about not putting the computer to sleep so that these tools will run. My iMac hard drive is asleep every night (as am I...) how can I get these things to run manually? How often? And can someone point me to literature to support this info?
    Thanks much,
    HS

    522/2968
    Hi HS,
    "There is no mention of this in the user manual"
    That's because the three nightly maintenance scripts are not important at all, and don't affect Mac OS X performance.
    They are only a relic from the glorious Unix system times when it was used on rather small capacities HDs, on computers that were running non stop for months or years...
    Running them yourself manually, as a "perfectionist measure", can be done easily using the "daily, weekly & monthly" features in OnyX or Cocktail for example. All three tasks together, once a month or so, is fine. No harm (but useless) rerunning them many times.
    Litterature:
    The KB article is quite old, it shows only the default 10.2 times and commands:
    - http://docs.info.apple.com/article.html?artnum=107388
    (almost same as 10.3 and 10.4 though)
    What I really would like to learn, is whether the scripts have been modified in the Intel version of Tiger.
    Could you please (or Joseph or somebody else), in Finder, Go To (shiftcommandG) this folder:
    /private/etc/
    see if there is still the same
    /private/etc/periodic
    folder, with the three
    /private/etc/periodic/daily
    /private/etc/periodic/weekly
    and
    /private/etc/periodic/monthly
    scripts?
    (I'm asking because I don't own an Intel Mac myself).
    Next you would Go To (⇧⌘G) this folder:
    /System/Library/LaunchDaemons
    please, see if you find those three files
    /System/Library/LaunchDaemons/com.apple.periodic-daily.plist
    /System/Library/LaunchDaemons/com.apple.periodic-weekly.plist
    and
    /System/Library/LaunchDaemons/com.apple.periodic-monthly.plist
    If they are still there, you can open them (with TextEdit if your Developer Tools are not installed), and read the default times when the tasks are scheduled to run.
    Thanks in advance!
    Axl

  • Unable to launch the installer while trying to install OWB 10.2.0.1

    Hi All,
    I am Unable to launch the Universal installer while trying to install OWB 10.2.0.1.
    My System Configurations : Intel Processor
    OS : Windows 2003 (64-Bit).
    Please share if you have faced any such issues earlier.
    Thanks,
    Shanthi
    Edited by: 880067 on Aug 18, 2011 1:09 AM

    It Throws me an error msg as follows
    An unexpected exception has been detected in native code outside the VM.
    Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x7D621157
    Function=RtlUnicodeToMultiByteSize+0x4A0
    Library=C:\windows\system32\ntdll.dll
    Current Java thread:
    at oracle.sysman.oii.oiip.osd.win32.OiipwWin32NativeCalls.GetAllOracleHomes(Native Method)
    at oracle.sysman.oii.oiip.oiipg.OiipgOracleHomes.getOsdOracleHomeInfo(OiipgOracleHomes.java:291)
    at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.add33Comps(OiifpContentsTabPanel.java:1020)
    at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.fillInventoryTree(OiifpContentsTabPanel.java:702)
    at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.refreshTree(OiifpContentsTabPanel.java:1508)
    at oracle.sysman.oii.oiif.oiifp.OiifpContentsTabPanel.prepareInvTree(OiifpContentsTabPanel.java:2253)
    at oracle.sysman.oii.oiif.oiifd.OiifdInventoryDialog.doModal(OiifdInventoryDialog.java:457)
    at oracle.sysman.oii.oiif.oiifw.OiifwWizDialog.onViewPrivate(OiifwWizDialog.java:863)
    at oracle.sysman.oii.oiif.oiifw.OiifwWizDialog.access$000(OiifwWizDialog.java:330)
    at oracle.sysman.oii.oiif.oiifw.OiifwWizDialog$PrepareInventoryTree.run(OiifwWizDialog.java:1778)
    at java.lang.Thread.run(Unknown Source)
    Tried applying various JDK versions but still the problem persists.
    Edited by: 880067 on Aug 18, 2011 10:55 PM

  • C++ exception in upgraded file while trying to change display to Always On

    I got the unknown exception while trying to change the display from off to always on of an image.

    The patch (EA 2014.1.1) with the fix is live now.
    Regards,
    Vivekuma
    Edge Animate Team

  • Error in the procedure while tried to increment the seq

    Hello ,
    I tried the following but giving the errors..
    Plz help me in this..
    CREATE OR REPLACE PROCEDURE Seq_inc AS
       vmaxarrec number(10);
       vseq number(10);
          select max(recid) into vmaxarrec from acc_rec;
          select SEQ_ACC_REC.currval into vseq from dual;
        BEGIN
          FOR i IN vseq .. vmaxarrec  LOOP
            select SEQ_ACC_REC.nextval  from dual;
          END LOOP;
        END ;And giving the following errors...
    LINE/COL ERROR
    4/7 PLS-00103: Encountered the symbol "SELECT" when expecting one of
    the following:
    begin function package pragma procedure subtype type use
    <an identifier> <a double-quoted delimited-identifier> form
    current cursor
    The symbol "begin" was substituted for "SELECT" to continue.
    11/9 PLS-00103: Encountered the symbol "end-of-file" when expecting
    one of the following:
    begin case declare end exception exit for goto if loop mod
    null pragma raise return select update while with
    LINE/COL ERROR
    <an identifier> <a double-quoted delimited-identifier>
    <a bind variable> << close current delete fetch lock insert
    open rollback savepoint set sql execute commit forall merge
    Thanks

    smile wrote:
    SQL> CREATE OR REPLACE PROCEDURE Seq_inc AS
    2     vmaxarrec number(10);
    3     vseq number(10);
    4       
    5      BEGIN   
    6      select max(recid) into vmaxarrec from acc_rec;
    7      select SEQ_ACC_REC.currval into vseq from dual;
    8       
    9        FOR i IN vseq .. vmaxarrec  LOOP
    10          select SEQ_ACC_REC.nextval  from dual;
    11        END LOOP;
    12   
    13      END ;
    14  /
    Warning: Procedure created with compilation errors.
    SQL> sho err
    Errors for PROCEDURE SEQ_INC:
    LINE/COL ERROR
    10/9     PLS-00428: an INTO clause is expected in this SELECT statementI tried with the above correction ..and still errorsIt looks to me like you're trying to reset the sequence number to a new starting value. In reality there's very little point in doing this, though I've come across a few test scenarios where it's good to start with the same sequence number each time.
    The logic for changing a sequence to a particular value is along the lines of:
    SQL> select test.nextval from dual;
       NEXTVAL
           125
    SQL> var v_inc number;
    SQL> var v_resetno number;
    SQL> exec :v_resetno := 50;
    PL/SQL procedure successfully completed.
    SQL> exec execute immediate 'select -(test.nextval-:x)-1 from dual' into :v_inc using :v_resetno;
    PL/SQL procedure successfully completed.
    SQL> exec execute immediate 'alter sequence test increment by '||:v_inc;
    PL/SQL procedure successfully completed.
    SQL> select test.nextval from dual;
       NEXTVAL
            49
    SQL> alter sequence test increment by 1;
    Sequence altered.
    SQL> select test.nextval from dual;
       NEXTVAL
            50
    SQL> select test.nextval from dual;
       NEXTVAL
            51
    SQL>Note: In your code you are reading the currval of the sequence before you know that you've read the nextval. That will give an error, because the currval is only known within the current session after a nextval has been obtained.
    So, as a procedure, you want something like:
    CREATE OR REPLACE PROCEDURE Seq_inc AS
      v_maxarrec number;
      v_inc      number;
      v_seq      number;
    BEGIN   
      select max(recid)+1 into v_maxarrec from acc_rec; -- get the required sequence value
      select -(seq_acc_rec.nextval-v_maxarrec)-1 into v_inc from dual; -- determine the difference
      execute immediate 'alter sequence seq_acc_rec increment by '||v_inc; -- alter the sequence
      select seq_acc_rec.nextval into v_seq from dual; -- query the sequence to reset it
      execute immediate 'alter sequence seq_acc_rec increment by 1'; -- alter the sequence to increment by 1 again
    END ;(+untested+)

  • Taking long time to get the data while trying to drill down the freechar's

    hi experts,
    i have a query on 0sd_c03, in this query PLANT and SALES ORG. are in free characteristics, whenever i am trying to drill down the plant or sales organization it is taking lot of time to retrieve the data.
    what is the problem,
    give me suggestions to solve this problem.
    thanks in advance,
    venkat

    From RSA1 double click on the infoobjects. Goto Business Explorer tab
    For the option Query Execution Filter Val. Selection select Only posted values for navigation
    Try whether thsi setting solves your problem

  • I lost a folder, with all the pictures, while trying to move some photos to a diferent folder (both folders disappeared)

    I was trying to move some pictures from a folder to another, but all the pictures disappeared! Even the folder that the pictures were! I searched all my computer but I can't find them! Does anyone know what can I do??
    Before I lost all pictures a message appeared asking if I wanted to replace the photos that have the same name, and I said "yes" and "do this to all"; after that a message appeared saying that there was an error and the pictures were note moved, but all my files disapeared!!
    I search even the trash (it is empty) and don't know whatelse to do!
    I would appreciate any help.
    Thanks

    First of all, we'd need to know what version of Bridge, Photoshop and the OS you are using.
    One of the earliest versions of Bridge was indeed known occasionally to disappear files and/or folders, but that was a long time ago, in CS2 I believe.  Later versions do not do that.
    Do a search for the names of the files and or folder(s), not with the pretty useless Spotlight or the Finder Search (which uses the same, limited Spotlight search engine).  Instead, try the free EasyFind.  http://www.versiontracker.com/dyn/moreinfo/macosx/8707
    Second, I'll assume you mean folder when you type "a file with all my photos in it". Unless you put the folder in the trash and then deliberately emptied the trash, it's more likely you just accidentally stuck the folder inside another one, or accidentally renamed it.  EasyFind will find it or its contents.
    If EasyFind fails to find a trace of any of the files or of the folder, then the files are indeed gone. but that 's highly unlikely unless you deliberately empied the trash.
    Good luck.
    Wo Tai Lao Le
    我太老了

  • No duplicates in my Itunes library, but every song is duplicated in my pc behind the scenes.  Any ideas?

    I have a large Itunes library of 16,000+ songs and when I am in my Itunes library, there are no duplicates.  But, in my pc, there are duplicates of every song in different file folders.  Does anyone have this issue?

    Everything is synced through itunes.  It is not stored in itunes.  itunes is simply a counduit through which photos are synced.
    "And a friend mentioned that to move photos I would need to set up a separate ITunes account."
    This does not make sense.  Your itunes accoutn whould have no impact on your pics.
    Still not sure what your question is.  Please explain what the issue is and what you are trying to accomplish.
    You remove photos from iphone the same way you put them there.  the sync process.  Open itunes. Connect iphone. Go to the photo tab.  Select what you want to be on the iphone. Sync

  • JMS Topics translate to Queues behind the scenes?

    Hi There:
    In discussing JMS implementation with coworkers I found someone mention that even if we created topics and have users subscribed to those topics, those topics get translated into individual queues per topic per user. So the queue in affect gets subscribed to the topic and the user is actually subscribed to the queue. While I can imagine that this kind of implementation makes sense for reliable delivery, I find it hard to believe that this is the way JMS implements topics internally.
    Can someone throw some lite on this please?

    RajMap wrote:
    Well the content gets replicated to the queues when it is not necessary to do that. If I am not doing reliable delivery, then the message that is published to the topic is delivered to the users that are subscribed to the topic at the point in time, and to do that I do not see the need to implement it via queues. Like I mentioned before for reliable delivery it makes sense to implement them to queues.
    And secondly it might lead to an explosion of queues internally. Consider for e.g. if we have say 5000 topics and about 10-15 subscribers for each topic, it will result in up to 75000 queues. I am not sure if that is a big number for queues, but it feel larger than what I designed for because in my mind I am thinking 4000-5000 topics.you are making a lot of conjectures based on entirely abstract concepts. what is a "queue"? what is a "topic"? these are just abstract ideas used by the jms spec. the words "queue" and "topic" define a bunch of behavior, but say nothing about how you need to implement that behavior. is 75000 queues a lot of queues? who knows, depends how i choose to implement a queue. is the data "replicated" to each queue in a topic? who knows, depends how i choose to store data. you can't make any of these statements outside of a specific implementation of the jms spec.

  • Nbagent sneaking around behind the scenes?

    I cannot find any info on this process, although nbagent.exe exists for windows machines (Nero Backup Agent).  What is going on here?  When I put on my tin foil hat, I wonder if it's NSA'sBoyAGENT phoning home via apple (it was trying to call out to swscan.apple.com, iirc).  :-o   Almost as soon as I ps'ed and caught nbagent using 50% CPU, it unloaded all traces of itself.  Very sneaky... or just coincidence....  I hope someone knows what this is, as ddg.gg turns up empty.

    To Csound1
    You say to me: ...Think prior to posting.
    Funny how much time people can spend time on absolutely nothing.
    I couldn't care less about points and levels.
    If I get any, I would like them to be deleted,
    i Like to be level 0 and have no points.
    That makes me a normal person you see.
    I am a IT geek anyway.
    I seek occasional a power user answer on a specific question.
    And the only I find is point hunters posting crap in very thread.
    So it take forever to scrool down to not even get the answer.
    In every thread the first thing should be
    the question. and the ONLY next to that should
    be the correct and full answer / solution.
    How hard can it be?!!!
    Everything else is a waste of time for the readers.
    So the thing about "Think prior to posting."
    I will redirect to ALL the IT supporters
    in this forum. Ether answer the questions completely
    with a 100% perfect solution/answer.
    OR do NOT write ANYTHING.
    That would require that yes.... Think prior to posting.
    The answer about the NBAGENT is STILL NOT answered fully.
    PEACE.

  • Quicktime conversion - behind the scenes

    What exactly happens when you export to Quicktime Conversion?
    I have my project exporting to a 300GB external folder. All I see is the file size is 37GB (and growing) but at the same time the remaining folder size is now only 64gb available. Where is the rest of my drive space? Is there a 200gb temp file created first and then it completes the actual converted file?

    No actually the trashcan was empty, I make sure I do that often.
    I have the external drive actually in a Windows PC that is networked to my Mac. So in the shared drive I could actually see a hidden file that was growing (while the actual output file name remained 1kb). Eventually this hidden file was going to be converted to the actual output mov file. When I realized this (and knew I was going to run out of space), I stopped the process and actually just renamed this temp file with a .mov extension and it worked! It made a 200+gb temp file and I was able to use that to export to Compressor for DVD.
    Anyways, I'm rambling on, but this is just in case someone else has the same issue in the future.

Maybe you are looking for

  • 9.2.0 Upgrade (CPSID_50026) "Files in Use" - "Some files that need to be updated are currently in use" "Program Manager"

    I have no other applications open, when I try to update with 9.2.0, but I receive subject error message.  Task Manager shows NO Image Name called "Program Manager".  There is nothing else running, that is obvious to shut down.  Any suggestions, Pleas

  • Inspection type 08 restricted by SLoc

    Hi All, I have a scenario in which various Storage locations like A B C D are dedined in plant X. Now the user wants the inspection to happen only when the goods are transfered from any SLoc to SLoc A while for any other stock transfer, no quality in

  • Sync iPhone Contacts to Yahoo

    Hi, I just got a Verizon iPhone and used Verizon's app to transfer my contacts from the old Verizon phone to the iPhone. Then I set my Yahoo contacts to sync with the iPhone over the air. If I add a new contact on the iPhone, it will sync to Yahoo bu

  • Lumia 820 software update problem

    I got notified via mail that phone update for Lumia 820 is released and available now for my device but when i manually tried to search it shows "we are unable to check for updates" plz some solution would be appreciated....Help!!!

  • Pop up : "sign in required.." Tap and sign in to check for downloads

    Whenever I play or browse the over the internet with my iPod touch 4th gen, theres a pop up saying "sign in required" then I gave my apple i.d and password. It keeps on popping up but I didnt download any apps. Pls help it really *****.and. Oh after