Adding another PDF or PS file to another

Hi,
We've got variable merge letters that need to go out. They're being created in Word, unfortunately. Anyway, they're missing our company letterhead at the top. Does anyone know of a way where I could take the postscript for that letterhead and put it into the printed merged letter pages from Word, that is, when the merged letter Word files are sent to Distiller to be PDF'd?
Thanks,
Peter

An arbitrary file? You mean a file that could contain anything? text? HTML? XML? binary?
Even if you're just talking about a text file, conversion into PDF and/or PS is probably beyond the scale of anything you're going to find, and it also makes no sense. pdf and ps need info about the display. How are you going to get that?

Similar Messages

  • Adding another machine to Primary Zone

    Adding another machine to Primary Zone
    I have a good split-DNS configuration that has been working without issue for some months now since I installed OS X Server Snow Leopard (Mac Mini) at my company's office. We have another machine used as a file server (Mac Pro), without the dedicated server OS installed.
    We want to add a virtualized instance of Windows Server 2008 R2 as a guest OS on the Mac Pro via VMWare Fusion. We want to use this Windows Server instance to host some private web based services for our corporate team (intended to be reachable from within the local private network, and remotely, from the public internet (with proper authorization to access only).
    So far so good:
    -WinServer2008R2 installed as a guest OS on the host Mac Pro
    -WinServer's virtual NIC is in bridged mode (joins the host OS's physical network)
    -WinServer instance configured with an IP 10.0.1.33, which is set aside and reserved for the WinServer by the local DHCP service on the same network
    -WinServer successfully installed and tested IIS7 - both localhost from the WinServer instance and http://10.0.1.33 from other machines on the local private network (and from remote VPN clients) resolve to the WinServer's IIS default page properly.
    Where I am stumbling now in configuring DNS on the Mac Mini to properly forward requests aimed at the WinServer instance.
    DNS for the local domain is controlled by the Mac Mini. The configuration has been quite simple up to now, as that has met our needs. Just one Primary Zone and one Reverse Zone. We have an external DNS service from DYNDNS that handles any request for our domain from the external public internet. For now I'm not concerned with altering the external DNS service. Once I get the name service to properly resolve requests for the WinServer instance from the local domain, then I'll move onto matching up the external DNS.
    --Primary Zones
    Primary Zone:
    Primary Zone Name: ourcompany.net.
    Nameservers: Zone: ourcompany.net. Nameserver Hostname: server.ourcompany.net.
    --Records
    Machine Record:
    Machine Name: server.ourcompany.net.
    IP Address: 10.0.1.11
    --Reverse Zones
    Reverse Zone:
    Reverse Zone Name: 11.1.0.10.in-addr.arpa.
    Nameservers: Zone: 11.1.0.10.in-addr.arpa. Nameserver Hostname: server.ourcompany.net.
    Resolve 10.0.1.11 to: server.ourcompany.net.
    The -checkhostname command returns:
    Primary address = 10.0.1.11
    Current HostName = server.ourcompany.net
    DNS HostName = server.ourcompany.net
    The names match. There is nothing to change.
    dirserv:success = "success"
    So I attempted to add a Machine Record to the Primary Zone with the following settings:
    Machine Record:
    Machine Name: dash.thewcateam.net.
    IP Address: 10.0.1.33
    When I did this it added the following Reverse Zone:
    Reverse Zone:
    Reverse Zone Name: 1.0.10.in-addr.arpa.
    Nameservers: Zone: 1.0.10.in-addr.arpa. Nameserver Hostname: server.ourcompany.net.
    Resolve 10.0.1.33 to: dash.ourcompany.net.
    And with the following records added I don't seem to have a proper resolution to 10.0.1.33 when requesting dash.ourcompany.net.
    I'm wondering where I should look next in troubleshooting this issue. Any pointers or advice would be very appreciated.

    Remove the "Reverse Zone Name: 11.1.0.10.in-addr.arpa."
    It's probably left from when you first configured the server.
    Though the "Primary Zone Name: ourcompany.net." seems correct.
    Then update the 10.0.1.11 record so it's added to the right reverse zone - "1.0.10.in-addr.arpa."
    In a MacPro we run VM Ware on a separate interface (en1/"Built in 2") that is forced up using a LaunchDaemon. "Built in 2" must be active in Network config in OS X but don't need to be configured (red "LED").
    That way the MacPro can use it's own IP on the en0 interface without disturbing en1 and vice versa.

  • Powershell script assistance - adding another property to existing script

    This is not my script but was written by Richard L. Mueller. It works perfectly for us but I would like to know if the account is enabled or disabled when the output is created. Basically it would output the name, lastlogon and then either enabled or disabled.
    I've attempted to add a new property by adding another " $Searcher.PropertiesToLoad.Add" and "$Result.Properties.Item ".
    It works fine if I add something like "givenName" but I can't find the property name to show if the account is enabled or disabled.
    The entire script is shown below:
    # PSLastLogon.ps1
    # PowerShell script to determine when each user in the domain last
    # logged on.
    # Copyright (c) 2011 Richard L. Mueller
    # Hilltop Lab web site - http://www.rlmueller.net
    # Version 1.0 - March 16, 2011
    # This program queries every Domain Controller in the domain to find the
    # largest (latest) value of the lastLogon attribute for each user. The
    # last logon dates for each user are converted into local time. The
    # times are adjusted for daylight savings time, as presently configured.
    # You have a royalty-free right to use, modify, reproduce, and
    # distribute this script file in any way you find useful, provided that
    # you agree that the copyright owner above has no warranty, obligations,
    # or liability for such use.
    Trap {"Error: $_"; Break;}
    $D = [System.DirectoryServices.ActiveDirectory.Domain]::GetCurrentDomain()
    $Domain = [ADSI]"LDAP://$D"
    $Searcher = New-Object System.DirectoryServices.DirectorySearcher
    $Searcher.PageSize = 200
    $Searcher.SearchScope = "subtree"
    $Searcher.Filter = "(&(objectCategory=person)(objectClass=user))"
    $Searcher.PropertiesToLoad.Add("distinguishedName") > $Null
    $Searcher.PropertiesToLoad.Add("lastLogon") > $Null
    # Create hash table of users and their last logon dates.
    $arrUsers = @{}
    # Enumerate all Domain Controllers.
    ForEach ($DC In $D.DomainControllers)
    $Server = $DC.Name
    $Searcher.SearchRoot = "LDAP://$Server/" + $Domain.distinguishedName
    $Results = $Searcher.FindAll()
    ForEach ($Result In $Results)
    $DN = $Result.Properties.Item("distinguishedName")
    $LL = $Result.Properties.Item("lastLogon")
    If ($LL.Count -eq 0)
    $Last = [DateTime]0
    Else
    $Last = [DateTime]$LL.Item(0)
    If ($Last -eq 0)
    $LastLogon = $Last.AddYears(1600)
    Else
    $LastLogon = $Last.AddYears(1600).ToLocalTime()
    If ($arrUsers.ContainsKey("$DN"))
    If ($LastLogon -gt $arrUsers["$DN"])
    $arrUsers["$DN"] = $LastLogon
    Else
    $arrUsers.Add("$DN", $LastLogon)
    # Output latest last logon date for each user.
    $Users = $arrUsers.Keys
    ForEach ($DN In $Users)
    $Date = $arrUsers["$DN"]
    "$DN;$Date"

    It is part of the userAccountControl attribute. Retrieve that attribute for each user and test if the ADS_UF_ACCOUNTDISABLE bit (2) is set.
    -- Bill Stewart [Bill_Stewart]

  • ITunes adding another copy "Someone Like You" by Adele over and over and over.... literally every 10 seconds

    I recently bought a used Mac Mini which has a fresh copy of Mountain Lion 10.7.5 installed on it which includes iTunes 10.7
    Since my time machine backup of my now dead iMac (very 1st Intel iMac) has far more data on it (the iMac has a 250 GB internal HD and my "new" Mac Mini only has a 160 GB. internal HD) So I did a minimum transfer of my user data using Migration Assistant from a Time Machine backup of my old iMac.
    I manually copied the songs from the iTunes folder from the back up drive to the iTunes Media folder on the new Mac Mini
    Everything seemed fine until started seeing iTunes adding another copy "Someone Like You" by Adele over and over and over.... literally every 10 seconds, as long as iTunes is open and running, this song just keeps adding another copy.  The program has been open again for a few minutes and there are now over 100 copies of this song in the iTunes window!  I've never seen anything like this.
    I've selected the songs deleted them from itunes "MUSIC" window in the program and it just keeps replicating the song.
    I turned off in "ADVANCED PREFERENCES, "Keep iTunes Media folder organized and also unchecked Copy files to iTunes Media folder when additng to library" to see if that would make this behavior stop.
    I've removed the "Adele" file folder from the iTunes Media/Music folder and trashed it...
    Still keeps adding the song.... 
    (I just bought my iPhone 5 today and this is stopping me from transefering and syncing my apps and other data from my old iPhone 3GS for fear it might do something strange to iTunes or the iPod function in the new iPhone.)
    Thanks!

    octothorpe wrote:
    After going through the forums, I did find some more information.
    i noticed
    So in other words, yes, it is a known problem, and yes, it's a bug with the (11) version that was fixed, for most people, with the (12) version.
    have it your own way, buddy ...
    By the way, I have no idea why you would coyly allude to this issue, parsing out little bits of half-information. You've clearly participated in the other discussions about this issue and could just come out and say what I said above.
    i'm an end-user like you, no Apple engineer or tech. i *don't know* if a specific release contained a bug or not. i'm trying to choose my words carefully to stay in line with the ToU.
    if you didn't find my replies helpful, say so. i certainly meant no harm and was giving it my best shot.
    happy computing !
    JGG

  • Adding another AM to existing setup

    Hi All,
    I have following setup at present.
    2 backend servers and 2 front end servers. 2 backend servers a and b has directory server installed in MMR. 2 front end servers p an q has webservers and Access Manager. AM session fail over has been configured on it.
    Now I have added another backend server ‘c' in the setup. I have configured LDAP on it and now I am all three in MMR.
    I have following MMR agreements:
    Agreemenr suffix Source server Destnation server.
    dc=DOMAIN,dc=COM a b
    dc=DOMAIN,dc=COM b a
    dc=DOMAIN,dc=COM a c
    dc=DOMAIN,dc=COM c a
    dc=DOMAIN,dc=COM b c
    dc=DOMAIN,dc=COM c a
    Exactly similar for following suffixes:
    o=comms-config
    o=pab
    o=piserverdb.
    Now I am trying to add new Access manager (server r) to the existing setup.
    However when I am trying to configure AM using modified amsamplesilient file it works. But when I restart web server, I see the error below:
    warning: WEB6100: locale-charset-info is deprecated, please use parameter-encoding
    failure: WebModule[/amserver]StandardWrapper.Throwable
    java.lang.StackOverflowError
    at java.lang.Integer.parseInt(Integer.java:497)
    at java.net.URLStreamHandler.parseURL(URLStreamHandler.java:195)
    at java.net.URL.<init>(URL.java:596)
    at java.net.URL.<init>(URL.java:464)
    at java.net.URL.<init>(URL.java:413)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:801)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.service
    failure: WebModule[/amserver]PWC1396: Servlet /amserver threw load() exception
    java.lang.StackOverflowError
    at java.lang.Integer.parseInt(Integer.java:497)
    at java.net.URLStreamHandler.parseURL(URLStreamHandler.java:195)
    at java.net.URL.<init>(URL.java:596)
    at java.net.URL.<init>(URL.java:464)
    at java.net.URL.<init>(URL.java:413)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:801)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updatePlatformServerIDs(WebtopNaming.java:802)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:704)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405) As I resolution to this, I followed following steps. But failed to remove &lsquo;iplanetamplatformservice'.
    [root@dr-msgfe1|mailto:root@dr-msgfe1] # ./amadmin -u amadmin -w 14amrk20 -r iplanetamplatformservice
    com.sun.identity.authentication.spi.AuthLoginException: Could not get module properties
    at com.sun.identity.authentication.AuthContext.checkException(AuthContext.java:1396)
    at com.sun.identity.authentication.AuthContext.checkAndSetLoginStatus(AuthContext.java:1417)
    at com.sun.identity.authentication.AuthContext.runRemoteLogin(AuthContext.java:728)
    at com.sun.identity.authentication.AuthContext.runLogin(AuthContext.java:606)
    at com.sun.identity.authentication.AuthContext.login(AuthContext.java:498)
    at com.sun.identity.authentication.AuthContext.login(AuthContext.java:356)
    at com.iplanet.am.admin.cli.Authenticator.getAuthContext(Authenticator.java:231)
    at com.iplanet.am.admin.cli.Authenticator.sessionBasedLoginInternal(Authenticator.java:130)
    at com.iplanet.am.admin.cli.Authenticator.ldapLogin(Authenticator.java:148)
    at com.iplanet.am.admin.cli.Main.runCommand(Main.java:707)
    at com.iplanet.am.admin.cli.Main.main(Main.java:1141)
    com.sun.identity.security.AMSecurityPropertiesException: AdminTokenAction: FATAL ERROR: Cannot obtain Application SSO token.
    Check AMConfig.properties for the following properties
    com.sun.identity.agents.app.username
    com.iplanet.am.service.password
    at com.sun.identity.security.AdminTokenAction.run(AdminTokenAction.java:243)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.identity.sm.SMSEntry.read(SMSEntry.java:505)
    at com.sun.identity.sm.SMSEntry.read(SMSEntry.java:492)
    at com.sun.identity.sm.SMSEntry.<init>(SMSEntry.java:325)
    at com.sun.identity.sm.CachedSMSEntry.getInstance(CachedSMSEntry.java:315)
    at com.sun.identity.sm.ServiceConfigManagerImpl.checkAndUpdatePermission(ServiceConfigManagerImpl.java:496)
    at com.sun.identity.sm.ServiceConfigManagerImpl.getInstance(ServiceConfigManagerImpl.java:459)
    at com.sun.identity.sm.ServiceConfigManager.<init>(ServiceConfigManager.java:121)
    at com.iplanet.ums.ConfigManagerUMS.<init>(ConfigManagerUMS.java:992)
    at com.iplanet.ums.ConfigManagerUMS.getConfigManager(ConfigManagerUMS.java:121)
    at com.iplanet.ums.TemplateManager.<init>(TemplateManager.java:133)
    at com.iplanet.ums.TemplateManager.getTemplateManager(TemplateManager.java:151)
    at com.sun.identity.authentication.internal.server.LocalLdapAuthModule.getDN(LocalLdapAuthModule.java:298)
    at com.sun.identity.authentication.internal.server.LocalLdapAuthModule.login(LocalLdapAuthModule.java:133)
    at com.sun.identity.authentication.internal.LoginContext.login(LoginContext.java:125)
    at com.sun.identity.authentication.internal.AuthLoginThread.ru,
    n(AuthLoginThread.java:82)
    Deleting Service Schema iplanetamplatformservice
    Error 9: Operation failed: AdminTokenAction: FATAL ERROR: Cannot obtain Application SSO token.
    Check AMConfig.properties for the following properties
    com.sun.identity.agents.app.username
    com.iplanet.am.service.password Any idea how to get rid of this issue? I want to add 3^rd^ AM to the existing setup.
    Thanks and Regards,
    -Shashank
    Edited by: shashankj on Aug 2, 2008 10:32 PM

    Hi Shashankj,
    I am having the same issue with Access Manager 7.1.I am trying to configure another AM instance with Directory server replication but when i start second Access Manager webserver throws same exception as follow.
    [23/Nov/2008:15:29:40] failure ( 3500): WebModule[amserver]StandardWrapper.Throwable
    java.lang.StackOverflowError
    at java.util.Hashtable.put(Hashtable.java:401)
    at com.iplanet.services.naming.WebtopNaming.updateServerIdMappings(WebtopNaming.ja
    va:765)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:70
    2)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.nam
    [23/Nov/2008:15:29:40] failure ( 3500): WebModule[amserver]PWC1396: Servlet /amserver thr
    ew load() exception
    java.lang.StackOverflowError
    at java.util.Hashtable.put(Hashtable.java:401)
    at com.iplanet.services.naming.WebtopNaming.updateServerIdMappings(WebtopNaming.ja
    va:765)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:70
    2)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:405)
    at com.iplanet.services.naming.WebtopNaming.getServerID(WebtopNaming.java:381)
    at com.iplanet.services.naming.WebtopNaming.updateNamingTable(WebtopNaming.java:72
    4)
    at com.iplanet.services.naming.WebtopNaming.getNamingProfile(WebtopNaming.java:603
    at
    Is there anything I can do while installing second instance of Access Manager. or how can I modify Directory server.Help will be valuable.
    Thanks and Regards,
    Parul

  • How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.)it ask for the info

    How do I delete a credit card from my iTunes account without adding another one? My friend bought an app with her credit card and I no longer have the info but every time I try to download a free app (ex: Instagram, Twitter, vine etc.) it ask for the credit cards security code. I can not find a way to delete that cards info without adding another cards info.

    http://support.apple.com/kb/ht1918
    http://support.apple.com/kb/ts5366

  • Gettig error while adding a pdf file in Data Manager

    Dear All,
    When I m trying to add a new pdf file in the Data manger then it gives the error as:" Unable to open Adobe Acrobat. See your administrator about installing Adobe Acrobat."
    Please help me in adding this pdf file to Data Manager.
    Thanks And Regards
    Gaurav Kumar sharma

    Hi Gaurav,
    In order to load PDF files Adobe Acrobat® Standard or Professional Version is required and it needs to be installed on the machine that is loading the PDF and not on the Server machine.
    That's why it is giving you error to Install Adobe Acrobat. It is also required to generate Thumbnails.
    Refer, SAP Note for more details:
    https://websmp130.sap-ag.de/sap/support/notes/1258537
    Thanks and Regards,
    Mandeep Saini

  • I am unable to access my mail on my IMac after adding another email account. Somehow I manage to knock myself out of the Telus acct that I had recently migrated to my IMac. Any idea of how I can reconnect to my Telus acct?

    Hi
    I am having trouble accessing my IMac mail after I added another mail account to my list of email accts. I had migrated my outlook acct. from my PC to my IMac and when I went back to use my password it wouldn't let me in. Any ideas of what I should do?

    Adding another account would not affect one that you already had. Either the password is wrong, or the server is coincidentally rejecting your credentials for some reason, or you did something different.
    OS X Mail: Troubleshooting sending and receiving email messages

  • My time capsule was working and then I added another Macbook pro. TC stopped appearing in Airport Utilities. I have tried resetting TC, I have turned if off and held reset button with pen for 10 secs. I just cannot work out what else to do?

    My time capsule was working and then I added another Macbook pro. TC stopped appearing in Airport Utilities. I have tried resetting TC, I have turned if off and held reset button with pen for >10 secs. I just cannot work out what else to do? I have turned router off and on. Amber light is flashing.

    The ethernet says self assigned IP 169.254.67.6
    Then the ethernet is not getting an IP from the TC.. there is no connection.
    I am not sure where you mean when you say the green LED should be on. Do you mean the TC?
    Thanks
    In order to help troubleshoot ethernet connections all routers use connectivity leds.. even APPLE.. it has one big LED on the front.. and 4 tiny leds beside each ethernet port. That light has to come on for ethernet to be active.. if you plug an ethernet cable into the port and the light doesn't come on.. then there is no connection.. either the other end isn't plugged in.. or the cable is bad.. or the ethernet port is bad.. something is wrong.
    To get access to the TC you need this led to be green.. is it?
    If it is green and the WAN is also green.. then I want you to unplug the WAN connection.. the blue wire in the picture.. the port slightly separated from the 3 LAN port.. computer plugged just into LAN port.. no airport turned on.. and press the reset again for 10sec until front led flashes rapidly.. then try and bring up the airport utility again.. assuming the ethernet led is green.
    How old and what model is the TC?
    The A number from the rubber mat will tell us the model.

  • Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been usin

    Help! We have a form with more than 200 entries and when I looked at it yesterday it had one! When you download the form to excel they all show up. However, when I added another record today it disappeared. Can you tell me what's happening? I've been using adobe forms for 2 years with mass response feedback and have never had this problem.

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Adding another  dimension on BI Admin layer.......

    hi,
    i already have a cube with few dimensions and its running fine on dashboard. Now i added another dimension in oracle warehouse builder cube (same running cube) now i want to upgrade this cube and its data on BI Admin layer so that i can see results accordingly on BI Answers and dashboard.
    How to add this dimension in BI Admin layer as i don't want to import all the dimensions and cube again on physical layer, then make hierarchies for each dimension on business model and mapping layer and changes on presentation layer (just to avoid rework).
    If i import a single dimension it behave like a fact table (cube) with a yellow color.
    thanks in advance
    Mimran

    Hi,
    As I understood from your query you are importing a new dimension table to the physical layer of your RPD. Once you import the dimension table it will be a stand alone table. So join this table to the existing Fact table with the proper key. Then Drag and drop the same table to the BMM layer. In the BMM layer open the Business model diagram and join it to the fact table and then drag it to the presentation layer. This should solve your purpose.

  • Adding another Airport Extreme – I'm having problems-

    …please help.
    I am a total novice when it comes to networking so please explain clearly. I had one AE connected to some speakers in the kitchen so I could stream music there. I got another AE today to connect to my router to hopefully provide a quicker and more reliable wireless connection.
    I'm having problems adding the 2 AE to the same network. Tried lots of different ways but nothings worked. I can't my mac to find them both at the same time? When I try to add the other one it asks me to switch networks. When I switch networks i can't see the previous one so I can't add it.
    is there any step by step guide to getting 2 AE up and running i.e. adding another AE to an existing network?
    Cheers in advance.

    kroc_kroc, Welcome to the discussion area!
    Even though the title of your thread says "Extreme" I thing you really mean "Express".
    If you are trying to connect the 2nd AirPort Express (AX) wirelessly...
    (1) Make sure that the 2nd AX is in an area with a good wireless signal from your current wireless network.
    (2) Configure the 2nd AX to join a wireless network and select your current wireless network.

  • Adding another Verizon router....

    I currently have FIOS installed at my home.  I have my wireless router installed on the main level in my home.  The wireless signal is great on the main level and upstairs, but the signal in the basement varies from good to low.  I am looking for a solution that will allow for either better signal strength or adding another router in the basement that connects to my existing FIOS line.  This would also require adding a phone line in the basement as well...unfortunately the previous owner of my home did not have lines put in the basement.
    At any rate, can someone assist with this solution.  Thanks in advance

    If running an Ethernet aconenction from the Current Router to the Baement is not an option you can get another FIOS Router and connect it to the COAX Cabling in your house.  It has to be configured properly and information can be found here:
    http://www.dslreports.com/faq/verizonfios/3.0_Networking#15984
    Keep the SSID the same and put the 2nd router on a diffent channel from the 1st.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it.
    If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • Cyrus: Adding another mailstore

    The RAID disk with our mailstore on it is full. Unfortunately, adding another mailstore to the Cyrus mail server isn't quite as easy as the documentation states.
    I added a second one and moved my account there, but I wasn't able to access it.
    The original mailstore was on raid1. The new one was on raid0. Every possible setting that I can find reflected that account move to raid0. However, the logs had complaints stating the the account was 'not found' on raid1...
    Does this really work? Our server is currently online and I am on-hold for the Apple tech support phone line.
    Sakshale
    Message was edited by: sakshale

    I haven't found an answer yet, but I did find the reason my disk was full. I discovered the following CRON job.
    0 3 * * * /usr/sbin/mailbfr -b /Volumes/raid1/mail_server/backup --mode rotate
    It copies the entire tree every morning and keeps the Saturday copy forever.
    Deleting these backup copies freed up enough disk space to get us going again.

  • Added another email account, won't send from it?

    I have a couple email accounts on my phone and all is great. I just added another account from a local internet provider for a small business I have. It will recive mail from there but when I try to send i get "The sender address is invalid" I checked and double checked and all seems to set up correctly???
    The account is with Plantation Cable in Georgia, if that means anything to anybody.

    If the local internet service provider for this email account does not provide an authenticated SMTP server (most ISPs do not provide an authenticated SMTP server), you won't be able to send with the account using the ISP's SMTP server unless you are connected to the internet with your ISP via an available wi-fi network. When connected to the internet via AT&T'a network, you can use AT&T's SMTP server to send messages with the account, which is available on your iPhone to select as the SMTP server for the account. This may or may not work for sending with the account when connected to an available wi-fi network with a different ISP used for internet access.

  • Adding another link with etherchannel-PAGP

    Hi all,
    I have a 10g trunk link between my two 4510 coreswitches.   Now the utilization on this link is shooting up to 9.5gb which is forcing us to put another 10g link  between these two switches.
    We are planning to configure Etherchannel-PAGP. There should be any sort of downtime on the current link while adding another link to it.
    How do i add another link with etherchannel -PAGP with out having downtime on the current link?  could you please guide me on this?
    Thanks
    Shibu

    Shibu,
    Jon is 100% correct, that since this is not already and Etherchannel, there will be downtime, but it should be minimal. Now, what you could do, is depending on your physical topology, you should connect these two switches together with a GigbitEthernet link in the meatnime, it will be blocked by spanning tree (if it's a L2 port), since the 10G link will be give priority by default. Then you could afford downtime on the 10 gig link, while you create an etherchannel, If these two links are L2, you could configure UplinkFast, so the switchover is VERY fast.
    I've done this same setup before when making changes, but it all depends on if you can acutally physically do that. If not, you will have some downtime involved.
    You can also, just configure all this on notepad, and copy and paste.

Maybe you are looking for

  • Live Cyle forms

    I have Adobe Acrobat Pro 9 and in an update I have Live Cyle Designer for doing forms. I need to do a calculation and cannot figure out how. Where can I find a step by step explanation or a video explanation on how to do this.

  • Issues Creating PDF's From AutoCAD

    My company is working on standardizing how our AutoCAD drawings are created from AutoCAD. In the past each AutoCAD drawing has been printed to PDF using a third party PDF printer such as DocuPrinter or BlueBeam PDF Revu. While those methods work, the

  • How ftp reader read a JPEG file.

    i have to read a jpeg file through FTP reader. i want to know that should i need to define schema for native format??? if yes then which type of file is this... or i dnt need to define.please let me know. and plz tell me should i need to change in oc

  • How to pick dates using Datenavigator UI element.

    Hello, If I use DateNavigator UI element and if I select first date and last date how do i get all the dates in that period. Regards, Rahul

  • Re : Availability check in third party

    Hi       While creating sales order for third party scenatio a availability check is automatically carried out. But for noraml sales processes if stock is there it does nor check availability. I want to know how to avoid the availability check in thi