Other Problem with lookup

What can i do in this situation? (I use Sun Application Server 8.1) :
In this piece of code in a ejb test client:
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.cosnaming.CNCtxFactory");
env.put(Context.PROVIDER_URL, "iiop://127.0.0.1:4700");
//get naming context
Context context = new InitialContext(env);
//look up jndi name
Object ref = context.lookup("JNDIName");I have an error in a lookup, and i tried ejb/JNDIName, java:comp/env/ejb/JNDIName but ... the error is in all situations:
javax.naming.NameNotFoundException [Root exception is org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0]
     at com.sun.jndi.cosnaming.ExceptionMapper.mapException(ExceptionMapper.java:44)
     at com.sun.jndi.cosnaming.CNCtx.callResolve(CNCtx.java:453)
     at com.sun.jndi.cosnaming.CNCtx.lookup(CNCtx.java:492)-- Failed initializing bean access.
Thanks

Originally posted by: mikhailk.qnx.com
The debugger retrieves the name of the source file from the debug
information associated with the current stack frame. Check if the file name
can be found in the source lookup path.
"Sheldon" <[email protected]> wrote in message
news:31a9c281623f66e5ba98901be99b5ec0$[email protected]..
> Hi all
>
> I am having a problem with step over in the my integrated
> debugger, when i press step over an editor pops up saying no source found
> with a button attached to it. I am trying to solve the problem, i need
> some help as to where in the source i could look to solve this problem. I
> also want to know for sure whether this is a problem with source lookup or
> due to some other reason.
>
> regards,
> Sheldon
>

Similar Messages

  • The password for the account "account name" was not changed. Your system administrator may not allow you to change your password or there was some other problem with your password. Contact your system administrator for help.

    I have a user who's Active Directory password is going to expire. I had her reset her password by going to apple > system prefs > user > and clicking change password. She received the error "The password for the account "account name" was not changed. Your system administrator may not allow you to change your password or there was some other problem with your password. Contact your system administrator for help."
    I had her change her password via the kpasswd command in terminal and that changed her password on the server sucessfully however the laptop has FileVault on it. Filevault is not recognizing the new password just the old password.
    I have deleted the keychain which didn't resolve and now I am going to decrypt and reencrypt the drive. I'm hoping this is an isolated issue I have over 25 laptops configured like this.

    I "think" the trick was unbinding and rebinding the computer account.
    After unencrypting and trying to reencrypt Filevault would still not take the new password.
    Rebooted the prompt to update the keychain appeared. Updated the keychain. Filevault would still not take the new password.
    Unbinded and rebinded the computer account. It worked and let me add the user to filevault.

  • Missing ID Tags & Other Problems with Music Transfers

    Hello,
    I have been having some inconsistent problems with adding songs to my main iTunes Music Folder. Occasionally, songs will transfer without some of the ID tag information, despite the transfer (or consolidate) method used. Let me explain...
    My main 30000 song and 170 GB iTunes database is located on my PowerMac G5 1.8 GHz DP at home. I usually rip small portions of my CD’s on the road via my PowerBook G4 1.5 GHz (assuring that all of the tag information is correct). Once home, I transfer the iTunes Music Folder (usually only 1 GB big) from my PowerBook to the Desktop of my G5. From there, I drag the folder onto my iTunes window and allow it to duplicate directly into my large iTunes Music Folder. Once done, I delete the temporary iTunes Music Folder from both the PowerBook and the G5. I also delete the iTunes Library and iTunes Music Library.xml files from my PowerBook before starting up the process with another batch of CD’s. This is how I have built most of this database and only recently begun to have problems. The problem songs always retain the song name and, since I have always used the default ID tag setting, most songs show version 2.2 to 2.4.
    In my troubleshooting, I tried to make completely new iTunes Library and iTunes Music Library.xml files by using this same method with my entire main iTunes Music Folder (yes, it took a long time to finish and I had a clone for backup). Suprisingly, almost 10% of those songs suffered from the same problem! Reattempts with smaller transfers showed no change. In this process, I also noted that some song files transferred, but showed NO signs in the new iTunes Library!
    As I am a big fan of the iTunes AppleScripts by Doug Adams, I have ways to discover and correct these problems. However, I still would like to find out what is causing it. Does any of this sound familiar to anyone? Would converting every song to the ID tag version 2.4 make any difference? Obviously, this is my most prized database of information and I want to protect it, as well as administer any preventitive maintenance that it needs for good health.
    If we learn from our mistakes, then I obtained my PhD years ago,
    Dr. Z.

    It shouldn't matter what size your library is - if the information is in your files then it should get imported.
    1. Are you sure your problematic mp3 files are in fact valid mp3 files? If you open Terminal.app, and type this (substituting your mp3):
    hexdump -C -n 30 ~/Desktop/Sample.mp3
    You should see some hex & ASCII come back - for example:
    00000000 49 44 33 03 00 00 00 03 13 68 54 59 45 52 00 00 |ID3......hTYER..|
    00000010 00 15 00 00 01 fe ff ff ff 00 7f 00 7f 00 |..............|
    All id3v2 mp3's begin with "ID3" and the 4th byte represents the id3v2 tag version (2,2, 2.2.1, 2.3, 2.4); mp3's with an id3v1 headers are a little odd, but they generally begin with "FF FB" or "FF FA". I've seen moov files masquerading... all kinds of things. These won't hold tag data, and so would exhibit the behavior you describe. I myself got duped into making these abominations by using QuickTime to select a chunk of an mp3 and renaming to "file.mp3" - when it was a full blown quicktime movie that it really exported as.
    2. Are you sure the information exists within your file at all? All tags get written back into the file (except I think rating and certainly playcount). You can use any number of utilities to get at the data, some easy (python/perl utilities) or that require compiling (id3lib, taglib). You can get use the above method (with a longer number than 30) or a hex editor and look for the values manually as well.
    Using for example PyID3 (http://icepick.info/projects_old/pyid3/), download & extract; open a Terminal.app window and type:
    export PYTHONPATH=/Some/path/to/YOUR/PyID3_folder
    (or you can just type up the the = and drag-n-drop the folder onto the window & hit return. Then type:
    python -c 'import id3'
    Then in the examples folder, drag-n-drop the "listid3v2.py" script onto that same terminal window/session, and then an mp3 file (and hit return). If whatever information is missing from there, it isn't in your file. Note: PyID3 might have some issues with a v2.4 tag (specifically year is carried on the TDRC tag, and TYER is obsoleted). You can get an v2.4-enabled id3lib binary here:
    http://members.verizon.net/pucklock/id3Infiltr8/IDInfiltr8.htm
    Find "id3info" in the support folder, and drag-n-drop that binary onto a Terminal.app window, followed by your mp3 file. It should spit back all your info (except Grouping). The application itself should do much the same, just not the full breadth of tags available - just use it on copies.
    3. Converting to a different tag version wouldn't impact most tags (year being 1 major exception) - the other conversions (latin1, unicode, blahblah) woudn't change anything if you use mainly ASCII text. It could if you're big into Ukranian Progressive Polka - and used Cyrillic to tag everything.

  • Problem with lookup xref not happening Properly

    Hi All,
    we are facing an issue in lookup xref.
    Sometimes the lookup xref happens correctly and sometimes we get empty value from lookup xref even if the xref table has data properly populated.
    Check the below 2 cases.
    CASE-A:
    This mainly happens in the following scenario:
    BPEL A (Populate xref with itemid)------------> ESB ---------->BPEL B (lookup the itemid from the same xref)
    1)     The xref table is populated in a BPEL process A.
    2)     Payload passes through ESB and reaches BPEL B.
    3)     In Process B, we try to look up the same value populated in BPEL A, although the data is inserted in lookup table, it did not get committed to DB as it is a single flow.
    This issue is occuring intermittently due to which the entire process is failing.
    Hence , Request you to let us know how can this issue will be resolved.
    CASE-B:
    Where as Lookup works properly in the following scenario:
    BPEL C (Populate xref with itemid)<---> BPEL A----------> ESB ---------->BPEL B (lookup the itemid from the same xref)
    1)     BPEL A calls BPEL C.
    2)     The xref table is populated in a BPEL process C.
    3)     Control comes back to BPEL A.
    4)     Payload passes through ESB and reaches BPEL B.
    5)     In Process B, we try to look up the same value populated in BPEL C, now the data gets committed.
    We are facing issue with Case-A due to which the entire process is failing. Hence, Request you to let us know how can it will get resolved.
    Thanks
    Narendra
    Mailto: [email protected]

    Hi Narendra,
    Are you still having this problem?
    Just in case you are:
    Please check the descriptor properties of the ABCS processes
    Are they async or sync? If 'sync' make them transaction 'required'.
    Cause: The lookup fails at Provider because there is no data in the XREF_DATA (or ur custom xref table).
    The ReqABCS is inserting data into the table but actually will not Commit it until the Provider has successfully completed.
    If the processes are async or have a savepoint then you should be able to see the data in the xref even before the ProvABCS call and the problem shouldnt occur; however if its sync then all the processes must be in a single transaction for xref data to be "visible" at ProvABCS.
    --thanks
    debashis

  • Problem with lookup query in clustered enviornment!!!

    Hi,
    I have a lookup query in object form which will bring all users in OIM. It works fine on Standalone. But what I really dont understand is that when I use the same lookup in clustered enviornment(weblogic cluster and oracle DB cluster) it doesnt work. it brings up empty lookup.
    My lookup query is configured with the following properties:
    Defined field in object form
    - LookupQuery, Select usr_login, usr_first_name, usr_last_name from usr
    - Column options, User ID,First Name,Last Name
    - Column Names,usr_login,usr_first_name,usr_last_name
    - Lookup column name, usr_login
    - Column width, 10,100
    Thanks,
    doki
    Edited by: doki.prasad on Jun 9, 2009 11:25 AM

    Did you resolve this issue? I see a similar problem
    Thanks.

  • Problem with lookup-table and single quotes

    SOA Suite 10.1.3.3. I have an ESB project with an XSLT map that uses orcl:lookup-table to translate values. I use this instead of lookup-dvm because I want non-IT users to manage the mappings without having access to the ESB Console.
    According to the doco:-
    G.1.79 lookup-table
    orcl:lookup-table(table, inputColumn, key, outputColumn, datasource)
    This function returns a string based on the SQL query generated from the parameters.
    The string is obtained by executing:
    SELECT outputColumn FROM table WHERE inputColumn = key
    The problem I'm having is that it seems if "key" contains a single quote (i.e an apostrophe), then lookup-table fails to find the corresponding value - even though the value in table.inputColumn also contains the single quote.
    I've put the incoming into an XSL variable, but to no avail.
    <xsl:variable name="incoming">
    <xsl:value-of select="/obj1:DEV_MESSAGE_TYP/DATA1"/>
    </xsl:variable>
    <xsl:variable name="dvm-text">
    <xsl:value-of select="orcl:lookup-table('MYTABLE','INVAL',$incoming,'OUTVAL','ds/dev')"/>
    </xsl:variable>
    Are there any XSLT Gurus out there that have come across this or can think of ways around it?
    Thanks in advance...
    Regards,
    Greg

    Ok - the above was on the right track but wasn't 100% because it can't handle more than 1 single quote (apostrophe) in the input to lookup-table.
    I've since found a better solution - an XSLT re-usable template that operates recursively and so can replace multiple occurances of single quotes. I've modified it to handle a null input value, otherwise lookup-table will just return the value of the first row in the lookup table - doh! The way I've done it below, if null is passed in, then null will be returned.
    This goes at the top of your XSLT map file...
    <!-- reusable replace-string function -->
    <xsl:template name="replace-string">
    <xsl:param name="text"/>
    <xsl:param name="from"/>
    <xsl:param name="to"/>
    <xsl:choose>
    <xsl:when test="contains($text, $from)">
         <xsl:variable name="before" select="substring-before($text, $from)"/>
         <xsl:variable name="after" select="substring-after($text, $from)"/>
         <xsl:value-of select="$before"/>
         <xsl:value-of select="$to"/>
    <xsl:call-template name="replace-string">
    <xsl:with-param name="text" select="$after"/>
    <xsl:with-param name="from" select="$from"/>
    <xsl:with-param name="to" select="$to"/>
         </xsl:call-template>
    </xsl:when>
    <xsl:when test="$text=''">NULL</xsl:when>
    <xsl:otherwise>
    <xsl:value-of select="$text"/>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    Then you call it from within the XSLT map as follows:-
    <!-- if contains a single quote, replace with 2x single quotes. This makes lookup-table work! -->
    <xsl:variable name="incoming">
    <xsl:call-template name="replace-string">
    <xsl:with-param name="text" select="inp1:myinputfield"/>
    <xsl:with-param name="from">'</xsl:with-param>
    <xsl:with-param name="to" select="'&amp;apos;&amp;apos;'"/>
    </xsl:call-template>
    </xsl:variable>
    <xsl:variable name="dvm-text">
    <xsl:value-of select="orcl:lookup-table('MYLOOKUPTABLE','INVAL',$incoming,'OUTVAL','ds/dev')"/>
    </xsl:variable>
    <!-- lookup-table returns null if input value not found. Output original value instead -->
    <xsl:choose>
    <xsl:when test="$dvm-text=''">
    <xsl:value-of select="inp1:myinputfield"/>
    </xsl:when>
    <xsl:otherwise>
    <xsl:value-of select="$dvm-text"/>
    </xsl:otherwise>
    </xsl:choose>
    Much Thanks to everyone who shares information and methods on the Internet!
    Cheers,
    Greg

  • Problems with Lookups

    Hi all!!
    I'm developing with Workflow Builder some notifications, where the user can select an organization unit from a list of 400 values.
    I found some problems in the creation of this list, cause I cant see about 200 values, even if in the db table WF_LOOKUPS_TL i have all the organization units!!
    My question is : is it possible to set either the buffer size or something else to put the limit of this list at a higher value?! in order to see all the list and not only a part of it??
    P.S.: I'm using db 10g with workflow builder 2.6.3 and eb-suite 11.5.10
    Thanks all for your attention
    Jacopo ;)

    Can you please elaborate on the requirement? I am not sure if you should be using Workflow Lookups or FND Lookups. Workflow lookups are basically used as Result within Response required Workflow Activities. Where are you trying to view these list of organizations that 200 is missing?

  • HT4623 Sound and other problems with Ipad 3 after ios 6.1.3 update

    I purchased Ipad 3 last year and got problem of losing sound when I restored the Ipad throgh itunes. The sound came back automatically after I charged the device to 100%. Recently I got the same problem when the operating system was Ios 6.1.2 and then i got updated it to ios 6.1.3. The problem has not been solved while has been added up. Now the Ipad operation is slow, its either freezes and crashes frequently. Once it gets in sleep mode then it does not come back untill i press power button and home button togehter for sometime. I have checked all settings like mute and have restored the ios multiple times on two separate PCs but the problem is still there. Please help me what i need to do next.

    Try a reboot of your ipad. Hold the Sleep/Wake button and Home button simulataneously. Keep holding, ignoring the red slider, until the Apple logo appears. Release the buttons and let the ipad restart. A reboot often fixes numerous problems.
    Also are you aware that by suncing with a different computer it is likely the personal stuff you had on your ipad from your imac will be removed?
    The ipad is designed to sync with only one device.

  • Start-up / shut-down (and other) problems with ZFS over iSCSI

    Hi,
    I've had a limited time in which to try some concepts on an evaluation x4500 server. This is unfortunately my last day, so by the time anyone can reply I will probably not be able to to further tests, but maybe someone will be able to reproduce the issues.
    I'm using the evaluation server to export some iSCSI targets, and I'm connecting to them from my laptop, which has a fresh installation of SXDE 01/08. I was able to attach to the targets with
    iscsiadm add static-config \
    iqn.1986-03.com.sun:02:f4281081-c3fc-e448-c8f0-943d8861c9e8,192.168.15.62
    iscsiadm add static-config \
    iqn.1986-03.com.sun:02:371c6fe7-f0c8-e02c-c865-baef90fb71ce,192.168.15.62
    iscsiadm add static-config \
    iqn.1986-03.com.sun:02:ee74d5de-3046-6295-f35e-afe60e13db23,192.168.15.62
    iscsiadm modify discovery -s enableThis made the appropriate entries appear in /dev/dsk so I could then set up a simple zpool and zfs filesystem with:
    zpool create -m none dPool c3t010000144FA70C1400002A0047C2BF73d0 \
    c3t010000144FA70C1400002A0047C2BF81d0 c3t010000144FA70C1400002A0047C2BF8Bd0
    zfs create -o mountpoint=/data -o sharenfs=on dPool/dataThe general concept I'm testing is having a ZFS-based server using an IP SAN as a growable source of storage, and making the data available to clients over NFS/CIFS or other services. In principle this solution should also allow failover to another server, since all the ZFS data and metadata is in the IP SAN, not on the server. Although not done in this example it should also be possible to run raidz across multiple iSCSI disk arrays. However, it's not been a bed of roses. I've had a lot of errors in dmesg like the following, which I think are causing zfs/zpool commands to stall at times:
    Feb 28 14:30:39 F4060 iscsi: [ID 866572 kern.warning] WARNING: iscsi connection(ffffff014f6b6b78) protocol error - received an unsupported opcode:0x41
    Feb 28 14:30:41 F4060 iscsi: [ID 158826 kern.warning] WARNING: iscsi connection(10) login failed - failed to receive login response
    Feb 28 14:30:41 F4060 scsi_vhci: [ID 734749 kern.warning] WARNING: vhci_scsi_reset 0x1
    Feb 28 14:30:41 F4060 iscsi: [ID 339442 kern.notice] NOTICE: iscsi connection failed to set socket optionTCP_NODELAY, SO_RCVBUF or SO_SNDBUF
    Feb 28 14:30:41 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(13) unable to connect to target iqn.1986-03.com.sun:02:ee74d5de-3046-6295-f35e-afe60e13db23
    Feb 28 14:30:41 F4060 iscsi: [ID 339442 kern.notice] NOTICE: iscsi connection failed to set socket optionTCP_NODELAY, SO_RCVBUF or SO_SNDBUF
    Feb 28 14:30:41 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(7) unable to connect to target iqn.1986-03.com.sun:02:f4281081-c3fc-e448-c8f0-943d8861c9e8Does anyone know why a Solaris iSCSI target would send an unsupported opcode (0x41) to a Solaris iSCSI initiator? Surely they should be talking the same language!
    The main problems however are with shutdown and start-up. On occasions, I suspect that the ordering of ZFS, iSCSI and network services gets a bit out of sync. On one occasion the laptop even refused to complete the shutdown because it was reporting a continuous stream of console messages like
    Feb 27 18:26:37 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(13) unable to connect to target iqn.1986-03.com.sun:02:ee74d5de-3046-6295-f35e
    -afe60e13db23
    Feb 27 18:26:37 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(10) unable to connect to target iqn.1986-03.com.sun:02:371c6fe7-f0c8-e02c-c865
    -baef90fb71ce
    Feb 27 18:26:37 F4060 iscsi: [ID 933263 kern.notice] NOTICE: iscsi connection(7) unable to connect to target iqn.1986-03.com.sun:02:f4281081-c3fc-e448-c8f0-
    943d8861c9e8I also get these on start-up, where it looks like ZFS tries to load the zpool configuration before iSCSI has found the disks, and even worse, iSCSI is starting up before nwamd has time to do its network auto-magic, and complains that the devices are unavailable.
    If these problems sorted themselves out after everything came up, I wouldn't really mind some temporary complaints in the log file, but what I get after a reboot is a working zpool but an unmounted ZFS filesystem! Here is what I have today:
    bash-3.2# zpool status
      pool: dPool
    state: ONLINE
    scrub: scrub completed with 0 errors on Thu Feb 28 14:33:43 2008
    config:
            NAME                                     STATE     READ WRITE CKSUM
            dPool                                    ONLINE       0     0     0
              c3t010000144FA70C1400002A0047C2BF73d0  ONLINE       0     0     0
              c3t010000144FA70C1400002A0047C2BF81d0  ONLINE       0     0     0
              c3t010000144FA70C1400002A0047C2BF8Bd0  ONLINE       0     0     0
    errors: No known data errors
    bash-3.2# zfs list
    NAME         USED  AVAIL  REFER  MOUNTPOINT
    dPool        480M  28.9G     1K  none
    dPool/data   480M  28.9G   480M  /dataThis all looks fine, and you can see that I was even able to scrub the pool data with no problems. But where are the 480MB of data I have put in the /data mountpoint:
    bash-3.2# ls /data
    bash-3.2# df -h /data
    Filesystem             size   used  avail capacity  Mounted on
    /dev/dsk/c1d0s0         15G   4.4G    11G    30%    /As you can see, /data is unmounted, causing df to revert to the / filesystem containing the empty /data mountpoint, instead of showing the zpool mount.
    Since zfs is supposed to take care of its own mounts rather than using vfstab, I can't use "mount /data" to force this to mount. The only workaround I've found is to export and import the zpool. Then I get the filesystem to reappear:
    bash-3.2# df -h /data
    Filesystem             size   used  avail capacity  Mounted on
    dPool/data              29G   480M    29G     2%    /dataDoes anyone know if these are known issues with snv_79b, and is there a fix available or in the works?
    TIA,
    Graham

    EasyE, Welcome to the discussion area!
    (a) Call Apple and get your iMac G5 fixed since it is in the repair extension group. Don't waste your time doing anything else.
    (b) This area is for discussing the iMac G4. Since you have an iMac G5 in the future you should post in the iMac G5 discussion area.

  • Other problems with loading Captivate files into Flash AS3 project

    I have a Captivate file done with Captivate 3, published to
    Flash player 9 that is being loaded into Flash AS3. The captivate
    is a simple recording of some mouse clicks in a browser. I am
    displaying the playbar along the bottom, and its buttons all work
    fine except for the progress bar, where you can drag the knob and
    scrub back & forth in your presentation.
    This progress bar is not working as it should. I see the
    mouse cursor change to a hand, but when I click I cannot drag the
    knob to control the progress bar. The other buttons in the playbar
    do work (replay, pause, play, back, forward).
    This is a unique problem in that it is only happening when
    viewed in IE (7) when loaded into my Flash AS3 project. When viewed
    in Firefox in my project, or as a standalone SWF, or as a SWF
    simply embedded onto a plain HTML page, it works just fine.
    Does anybody have any insight?
    Another thing I notice with loading Captivate files with AS3
    is the the amount of output messages it displays. Rather annoying
    (unless this is a "feature" I've yet to be aware of - heh)

    Hi,
    I know exactly how you feel, there is simple answer; replace
    Captivate for Camtasia Studio 5 at techsmith.com. The weight on
    those shoulders will be gone! You'll smile more, be more
    socialable. One Happy Person.
    I am very happy person ;)
    Kind Regards,
    Boxing Boom

  • Problems with lookup query

    Hi all,
    I added a lookup query in a form.
    The query is:
    select lkv_encoded ,lkv_decoded from lookup_ad_folder_vw where lkv_encoded not in (select encoded from ad_folder_vw where usr_login = '$Requester Information.User Login$')
    I need to filter by the beneficiary's username.
    This query works if the request is a self-service request. But if it is requested by other people, it doesn't work. Because the parameter "$Requester Information.User Login$" gets the requester login.
    My question is the follwing:
    How can I get the beneficiary's username?
    Are there any workaround for this?
    Thanks,
    Ariel

    As this looks moreover like a Object Form, so their is nothing you can do in this query to get the Beneficiary's username. The reason is simple that you can select multiple target users in the same request with the same Object Form and OIM in that case would not be aware as to which information from all the beneficiaries should be supplied.
    If this would have been a Process Form then individual beneficiary username could directly be mapped as every user would have its own sub-thread in that case during provisioning.
    Thanks
    SRS

  • Screeching sounds in games and other problems with Soundblaster live extern

    Okay i have the USB external Creative soundblaster li've sound card. i have had a few problems. My first problem is When im in games such as Americas Army i get random Screeches like a tin can being scraped on concrete. My 2nd problem is Talking with my mic. For others to hear me MONITORING has to be enabled, there for i hear myself out of my own speakers as well. I have done everything to try and fix this, i've tried updating drivers, rolling back drivers, using windows automatic drivers. Is there an option i dont see that is causing my card to not sound good? I am using a 2.0 speaker configuration, and i only play the games with headphones on.
    please help.
    thanks for your time.Message Edited by Zombeh on 0-6-2006 08:30 AM

    You waited 24 hours and gave up? So I'll offer this for anybody else who reads the thread. I have a USB external SB card, but it's in a box somewhere. But IIRC, the Volume Controls work similar to other SB cards. In Volume Controls, Playback, mute the Microphone. In Volume Controls, Recording, select Microphone. This should let you "record" without hearing it on your speakers. Now if a game sets the mixer options for itself, that complicates things. If allowed, choose game audio options similar to these Volume Controls.

  • Installation problems - Vise software probs + Other problems with 10.4.11

    I've posted elsewhere on the forum about this but wanted to try another tack. I have recently hit the automatic update button (having left it a year) when promted and let the Mac go and get the updates - including a firmware update. Then the problems began - Combustion won't open, After effects 7 won't open etc, etc, all the cross over aps wont work (ie the rosetta items). My scanner had continued to work ok until yesterday when it decided not to. I've downloaded the drivers, tried to reload the software and if allways goes to the dialogue box - this software unexpectedly crashed do you wish to report. All the time. Has anybody else had these kinds of problems??? has anyone got any solutions? Are the Vise/installation crashes a feature of 10.4.11? Help....

    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot.
    The usual reason why updates fail or mess things up, is if Permissions are not fixed before & after every update, with a reboot... you may get a partial update when the installer finds it doesn't have Permissions to change one obscure little part of the OS, leaving you with a mix of OS versions.
    Some people get away without Repairing Permissions for years, some for only days.
    If Permissions are wrong before applying an update, you could get mixed OS versions, if Directory is the slightest messed up, who knows!
    If many Permission are repaired, or any Directory errors are found, you may need to re-apply some the latest/biggest updates.
    May even need to do an Archive and Install if you have room on the HD...
    http://docs.info.apple.com/article.html?artnum=107120

  • AFP to a default host in AEBS (and other problems with F/W 7.1.x)

    Hi all -
    I have a AEBS version N connecting a workgroup of several Macbooks and a Mac Mini acting as a app server/file server. This workgroup is connecting to the internet via the AEBS running WPA.
    Due to the network configutation, I have 1 publically routable IP address (200.13.99.x), which the Mini needs in order to allow "outsiders" access to a database app. The other laptops can share a NAT address for normal email, web browsing etc.
    After several attempts, I found the best solution was to set the AEBS Ethernet WAN manually to the public IP address (200.13.99.x), and set connection sharing to share a public IP address. Then using DHCP and NAT options, I fix and specify the MAC address of the Mini (10.0.1.2), and get the AEBS to enable a default host to be the public IP address (200.13.99.x -> 10.0.1.2).
    So far, so good. To recap, the AEBS has the public IP address (everthing else has a DHCP 10.0.1.x address). When outside users need to connect to the database on the Mini, they use the same public IP that the AEBS has. It works perfectly.
    NOTE: This ONLY WORKS WITH FIRMWARE 7.0. F/W 7.1 & 7.1.1 FAIL and do not allow any connections in this configuration.
    My question is this: How do I enable people to connect to the Mini and mount the filesystem remotely?
    If someone goes to Finder, Go, Connect to Server, then input the public IP (200.13.99.x), they attempt to mount the AEBS (which does not have any disks). How do I disable disk sharing on the AEBS and forward all AFP (disk mount) requests to the Mini (acting as Default Host)? I have attempted to Port Map Personal File Sharing, but when attempting to mount 200.13.99.x I still see the AEBS.
    The fallback plan is to buy an external disk for the AEBS, but it would be nice not to have that expense.
    Any thoughts appreciated!
    Regards,
    Charles
    ===
    Footnote: I have also seen a lack of stability in F/W 7.1.1. In addition to the above, I was having to restart the AEBS every week or so, and was also getting peridic connection problems to the Internet. F/W 7.0 seems fine. Hopefully these issues will be address in the next F/W release.

    Hi Robby
    I don't know if you solved your 'register now' problem concerning LE7 & LE8. I suspect the error your making is trying to open up each project in it's initial program - i.e. 7 or 8. The computer sees it differently (concerning Library settings etc) and your problem will be solved (hopefully) if you open up things in the right order :
    1° Open Logic EX 8.
    2° Then open the old project from LE 7. This should then open in your new system of LE8.
    Of course if you wish to keep working on LE7 projects in LE7 then you'll have to change between each system as you go. You should remember that in terms of programs (with the same 'name/directory') that a computer works much like a tightly packed garage - if you wish to get out your old bike you'll have to move the new one first and vice versa!!
    Normally you won't be asked to register again, BUT ... remember that you have to decide if you're going to save in 8 (and so keep working in that format) or not and I imagine if you've bought an update this is certainly your idea. Of course if you now decide to close LE8 and then start clicking on files in LE7 you'll be back at square one ..... register now etc. Please also remember that LE7 projects can work in LE8 but not the other way round, so once you've opened a LE7 project and made adjustments using LE8 you can't reuse 7 - I suggest you back up all your LE7 first on external/DVD support for later/backwards adjustments or reference.
    Another small point to remember is that your computer will now be saving your project a second time in a LE8 format. So at some point you should remember that you'll be using valuable HD space twice over if you just convert and save in the new format - if you see what I mean?!

  • Other Problems with installing iWork

    I had to go through the whole "i had the demo and now I'm trying to install the full version" and i did everything people suggested. I finally got it to install and when it says its complete, i find the iWork folder in applications but it's empty. I don't know where everything might have been placed or if there is a problem of some sort. When i try searching for iWork in spotlight two file folders named iWork come up (one empty, on with the iWork tour) and 2 files named something like iWork fonts and iWork extras.
    if anyone has any idea on what i should do please let me know.
    I think the problem might have to do with the serial number from my old demo. when installing the full version, it doesn't ask for a new serial number.
    thanks

    This is absolutly fantastic, i had the same problem. After trying to delete the demo version i then had problems trying to install the full version. But the trick is to get rid of all the signatures, iWorks Pages and Keynote (using spotlight this is dead eaasy). then do the install and works like a dream! thanks guys!

Maybe you are looking for

  • Folder audit properties

    I have multiple Windows 7 computers that I have set the auditing on C:\ to Fail everyone and I selected Replace all existing inheritable auditing entries on all descendants with inheritable auditing entries from this object. All these computers are o

  • In Mountain Lion, Safari Reader recognises fewer webpages than in Lion. Do you experience the same?

    In Mountain Lion, Safari Reader does not accept webpages than used to work with Reader in Lion, for example Wikipedia entries. Do you experience the same? I find the Reader Function very useful for reading and saving webpages. Please expand its compa

  • Office Product Key will not work (A505)

    I just bought a Satelitte A505-s6005 two days ago. I've tried all of the suggestions to get Office 2007 working as a trial version, but no luck. Every path I try asks me to install Office and nothing gives me a simple activation key. Any ideas?

  • Attachment Based Web Services

    Where do I get More details about Attachment based web services with netbeans 5.5. Any Links for, Any Technical Articls, Example Source code Downloads?

  • After downloading adobe flash player, twice, still says i need to update it

    I am trying to put a swf file on my website. It says that the flash player need to be updated. i updated it twice in firefox but it still says it needs to be updated. what am i doing wrong. thanks mary duplicate of [/questions/909951]