Copying the enterprise example

Does anyone have the steps to copy the enterprise sample desktop. I would like to use the enterprise desktop as my template. I have copied the desktop directory and changed all of the references to the enterprise sample. I have defined JOHNTabContainer but I keep getting this message.
[#|2008-02-22T20:38:31.163+0000|FINEST|SJS Portal Server|debug.com.sun.portal.providers.jsp|ThreadID=18; ClassName=com.sun.portal.providers.jsp.JspServletEnvironment; MethodName=getResource; |PSDT_CSPPJ0019 : File handle is null for channel JOHNTabContainer and template /menubar.jsp.|#]
[#|2008-02-22T20:38:31.164+0000|INFO|SJS Portal Server|debug.com.sun.portal.providers.jsp|ThreadID=18; ClassName=com.sun.portal.providers.jsp.JspServletEnvironment; MethodName=getRealPath; |PSDT_CSPPJ0016 : Exception thrown while getting real path of uri path /menubar.jsp.
java.net.MalformedURLException: JspServletEnvironment.getResource(): not found for channelName=JOHNTabContainer, path=/menubar.jsp

Please check if this helps you -
http://blogs.sun.com/jimfaut/entry/portal_7_creating_a_new
Thanks,
Vivek

Similar Messages

  • UCCX copy data in the enterprise data window right to the clipboard

    Hello I need help please! how to write a macro to copy data in the enterprise data window right to the clipboard? I should be able to take the data right from enterprise data and copy it to the clipboard so the agent can paste it into any application they want.  The macro step wants an application first - how do I get around this?
    Thanks.Hello I need help please! how to write a macro to copy data in the enterprise data window right to the clipboard? I should be able to take the data right from enterprise data and copy it to the clipboard so the agent can paste it into any application they want.  The macro step wants an application first - how do I get around this?
    Thanks.

    Do you have more than one enterprise fields showing your CAD layout?
    Do you wish to copy all of the them or just one of them?
    Do you wish to copy the name as well as the value?
    At any rate, a macro is not needed to copy the enterprise data.  You simply double click it and press CTRL+C.
    See this video here, which shows me doing just that:
    http://www.youtube.com/watch?v=88E-z0ShlFE&list=UUkB02mmFBBZqVBWY5XHAsoA&index=12&feature=plcp
    A macro might just complicate the matter, and force the Agent into a single option.  But let's get your answers to the above first, before we make any final decisions on the matter.
    Anthony Holloway
    Please use the star ratings to help drive great content to the top of searches.

  • Copy a folder from one user to another  with the enterprise SDK

    Can anyone tell me how to copy a request in "My favorites" from one User to another with the enterprise SDK ?
    thanks in advance
    a great day to you'all
    Quentin

    Please post this query to the .NET Development - BusinessObjects Enterprise forum:
    .NET SDK Application Development
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all BOE queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Ludek

  • Help!!!I can not pass the Logger example of Rmi-iiOP

    I am using the j2sdk1.4.0 and j2sdkee1.3.1 as back ground.And use Win2000
    I try the rmi-iiop example given by Sun.But it doesn't work.
    Firstly , compile Logger.java LoggerHome.java LogMessage.java LoggerEJB.java to class
    javac -classpath "c:\j2sdkee1.3.1\lib\j2ee.jar;c:\wytestejb\" Logger.java LoggerHome.java LogMessage.java LoggerEJB.java
    that was ok.
    Then I draw idl from that just like
    rmic -idl -noValueMethods -classpath "c:\j2sdkee1.3.1\lib\j2ee.jar;c:\wytestejb\" Logger LoggerHome
    then I got Logger.idl LoggerHome.idl javax\ejb\...idl java\lang\...idl
    After that I create one directory named client.copying all idl file into it,I transfered idl to java using
    idlj -i C:\j2sdk1.4.0\lib -i c:\wytestejb\client -i C:\j2sdkee1.3.1\lib -emitAll -fclient Logger.idl
    idlj -i C:\j2sdk1.4.0\lib -i c:\wytestejb\client -i C:\j2sdkee1.3.1\lib -emitAll -fclient LoggerHome.idl
    Then I got *.java such as Logger.java LoggerHome.java .....java java\lang\***.class javax\ejb\****.class
    I put the LogClient.java in this directory and compile *.java like
    C:\wytestejb\client>javac -classpath "c:\j2sdkee1.3.1\lib\j2ee.jar;c:\wytestejb\
    client;c:\j2sdk1.4.0\lib;c:\j2sdk1.4.0\bin" *.java
    And I got
    c:\wytestejb\client\java\lang\_Exception.java:23: cannot resolve symbol
    symbol : method _read  (org.omg.CORBA.portable.InputStream)
    location: class java.lang.Throwable
    super._read (istream);
    ^
    c:\wytestejb\client\java\lang\_Exception.java:28: cannot resolve symbol
    symbol : method _write  (org.omg.CORBA.portable.OutputStream)
    location: class java.lang.Throwable
    super._write (ostream);
    ^
    LogClient.java:20: cannot resolve symbol
    symbol : method println (java.lang.String)
    location: interface java.io.PrintStream
    System.out.println("Looking for: " + loggerHomeURL);
    ^
    LogClient.java:38: cannot resolve symbol
    symbol : method println (java.lang.String)
    location: interface java.io.PrintStream
    System.out.println("Logging...");
    ^
    LogClient.java:47: cannot resolve symbol
    symbol : method println (java.lang.String)
    location: interface java.io.PrintStream
    System.out.println("Done");
    ^
    LogClient.java:59: cannot resolve symbol
    symbol : method println (java.lang.String)
    location: interface java.io.PrintStream
    System.out.println("Args: corbaname URL of LoggerHome");
    ^
    LogClient.java:66: cannot resolve symbol
    symbol : method printStackTrace ()
    location: class java.lang.Throwable
    t.printStackTrace();
    ^
    7 errors
    C:\wytestejb\client>

    By the way
    My java file is as
    Logger.java
    The file Logger.java is the enterprise bean's remote interface, and as such, it extends EJBObject . A remote interface provides the remote client view of an EJB object and defines the business methods callable by a remote client.
    //Code Example 1: Logger.java
    package ejbinterop;
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    * Accepts simple String log messages and prints
    * them on the server.
    public interface Logger extends EJBObject
    * Logs the given message on the server with
    * the current server time.
    void logString(String message) throws RemoteException;
    LoggerHome.java
    The file LoggerHome.java extends EJBHome . The EJBHome interface must be extended by all EJB component's remote home interfaces. A home interface defines the methods that allow a remote client to create, find, and remove EJB objects, as well as home business methods that are not specific to an EJB instance.
    //Code Example 2: LoggerHome.java
    package ejbinterop;
    import java.rmi.RemoteException;
    import javax.ejb.EJBHome;
    import javax.ejb.CreateException;
    public interface LoggerHome extends EJBHome
    Logger create() throws RemoteException, CreateException;
    LoggerEJB.java
    The file LoggerEJB.java contains the code for a session bean. A session bean is an enterprise bean that is created by a client and that usually exists only for the duration of a single client-server session. A session bean performs operations such as calculations or accessing a database for the client. In this example, the enterprise bean accepts simple String log messages from the client and prints them on the server.
    //LoggerEJB.java
    package ejbinterop;
    import javax.ejb.*;
    import java.util.*;
    import java.rmi.*;
    import java.io.*;
    * Accepts simple String log messages and prints
    * them on the server.
    public class LoggerEJB implements SessionBean {
    public LoggerEJB() {}
    public void ejbCreate() {}
    public void ejbRemove() {}
    public void ejbActivate() {}
    public void ejbPassivate() {}
    public void setSessionContext(SessionContext sc) {}
    * Logs the given message on the server with
    * the current server time.
    public void logString(String message) {
    LogMessage msg = new LogMessage(message);
    System.out.println(msg);
    LogMessage.java
    The file LogMessage.java takes the current date and time, creates a formatted String showing the message, and prints the message to the server.
    //LogMessage.java
    package ejbinterop;
    import java.io.Serializable;
    import java.util.Date;
    import java.text.*;
    * Simple message class that handles pretty
    * printing of log messages.
    public class LogMessage implements Serializable
    private String message;
    private long datetime;
    * Constructor taking the message. This will
    * take the current date and time.
    public LogMessage(String msg) {
    message = msg;
    datetime = (new Date()).getTime();
    * Creates a formatted String showing the message.
    public String toString() {
    StringBuffer sbuf = new StringBuffer();
    DateFormat dformat
    = DateFormat.getDateTimeInstance(DateFormat.MEDIUM,
         DateFormat.LONG);
    FieldPosition fpos = new
    FieldPosition(DateFormat.DATE_FIELD);
    dformat.format(new Date(datetime), sbuf, fpos);
    sbuf.append(": ");
    sbuf.append(message);
    return sbuf.toString();
    //Code Example: LogClient.java
    package ejbinterop;
    import java.rmi.RemoteException;
    import javax.rmi.*;
    import java.io.*;
    import javax.naming.*;
    import javax.ejb.*;
    * Simple Java RMI-IIOP client that uses an EJB component.
    public class LogClient
    * Given a corbaname URL for a LoggerHome,
    * log a simple String message on the server.
    public static void run(String loggerHomeURL)
    throws CreateException, RemoveException,
    RemoteException, NamingException
    System.out.println("Looking for: " + loggerHomeURL);
    // Create an InitialContext. This will use the
    // CosNaming provider we will specify at runtime.
    InitialContext ic = new InitialContext();
    // Lookup the LoggerHome in the naming context
    // pointed to by the corbaname URL
    Object homeObj = ic.lookup(loggerHomeURL);
    // Perform a safe downcast
    LoggerHome home
    = (LoggerHome)PortableRemoteObject.narrow(homeObj,
         LoggerHome.class);
    // Create a Logger EJB reference
    Logger logger = home.create();
    System.out.println("Logging...");
    // Log our message
    logger.logString("Message from a Java RMI-IIOP client");
    // Tell the application server we won't use this
    // EJB reference anymore
    logger.remove();
    System.out.println("Done");
    * Simple main method to check arguments and handle
    * exceptions.
    public static void main(String args[])
    try {
    if (args.length != 1) {
    System.out.println("Args: corbaname URL of LoggerHome");
    System.exit(1);
    LogClient.run(args[0]);
    } catch (Throwable t) {
    t.printStackTrace();
    System.exit(1);

  • Where to download the Enterprise-R5-x86-dvd.iso

    I have went to the Oracle E-delivery site to download Oracle EL 4 and 5 but never see an option to download a dvd iso, just 4-5 iso for cds when I try to mount disk1.iso via the instruction it errors not able to find a particular directory. The example uses the Enterprise-R5-x86-dvd.iso as an example. Does anyone know where i can download this?
    BTW, the error i get when running virt-install is:
    ERROR: Invalid NFS location given: [Errno 2] No such file or directory: '/var/lib/xen/xennfs.u4_7vU/images/xen/vmlinuz'
    Message was edited by:
    MrOracleDude

    MrOracleDude,
    Did u intend to create a vm by manager with a oel4 or oel5 iso? In that case,there may 2 workarounds for u if you've not got a dvd iso,
    1.Simply extract all of the contents from cd1-cd5 to a given directory,next,export that directory by a nfs/http service to support a pvm installation.
    2.As dyno commented,burn these several CDs to a dvd manually,here I just recommend following scripts for u as a cd2dvd tool(help to create a bootable DVD iso of a Oralce Enterprise Linux or Redhat Linux). you could simply copy/paste these free codes,then save as cd2dvd.sh,what's more,it is pretty easy to use,plz enjoy:)
    ==========code starts here===============
    #!/bin/bash
    # No warranties, Have fun.
    if [ $# -lt 2 ]; then
    echo "Usage: `basename $0` source /destination/DVD.iso"
    echo ""
    echo " The 'source' can be either a directory containing a single"
    echo " set of isos, or an exploded tree like an ftp site."
    exit 1
    fi
    cleanup() {
    [ ${LOOP:=/tmp/loop} = "/" ] && echo "LOOP mount point = \/, dying!" && exit
    [ -d $LOOP ] && rm -rf $LOOP
    [ ${DVD:=~/mkrhdvd} = "/" ] && echo "DVD data location is \/, dying!" && exit
    [ -d $DVD ] && rm -rf $DVD
    cleanup
    mkdir -p $LOOP
    mkdir -p $DVD
    if [ !`ls $1/*.iso 2>&1>/dev/null ; echo $?` ]; then
    echo "Found ISO CD images..."
    CDS=`expr 0`
    DISKS="1"
    for f in `ls $1/*.iso`; do
    mount -o loop $f $LOOP
    cp -av $LOOP/* $DVD
    if [ -f $LOOP/.discinfo ]; then
    cp -av $LOOP/.discinfo $DVD
    CDS=`expr $CDS + 1`
    if [ $CDS != 1 ] ; then
    DISKS=`echo ${DISKS},${CDS}`
    fi
    fi
    umount $LOOP
    done
    if [ -e $DVD/.discinfo ]; then
    awk '{ if ( NR == 4 ) { print disks } else { print ; } }' disks="$DISKS" $DVD/.discinfo > $DVD/.discinfo.new
    mv $DVD/.discinfo.new $DVD/.discinfo
    fi
    else
    echo "Found FTP-like tree..."
    cp -av $1/* $DVD
    [ -e $1/.discinfo ] && cp -av $1/.discinfo $DVD
    fi
    rm -rf $DVD/isolinux/boot.cat
    find $DVD -name TRANS.TBL | xargs rm -f
    cd $DVD
    mkisofs -J -R -v -T -o $2 -b isolinux/isolinux.bin -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table .
    /usr/lib/anaconda-runtime/implantisomd5 --force $2
    cleanup
    echo ""
    echo "Process Complete!"
    echo ""
    ==========code ends here===============

  • Airprint in the Enterprise across subnets [Solution]

    This is a message to help folks figure out how to setup
    Airprint across wired/wireless subnets. Hopefully it will help a few people.
    Airprint was designed to work with Bonjour on a local subnet/broadcast domain.
    To print in the enterprise where we have wired/wireless infrastructure,
    we need to use a DNS server to find the printer resources
    Assumptions:
    Our internal domain is: foocompany.com
    We create a new subdomain: bonjour.foocompany.com
    Creating a new subdomain allows up to apply DNS views so we can show print/bonjour services in
    close proximity of the user.
    You have a CUPS printer server (linux/apple) running at printserver.bonjour.foocompany.com
    1. Setup a DNS server
    If you setting up a test domain server, you can setup forwarding to your primary production server.
    This way all DNS queries continue to work
    In your named.conf file setup forwarding
    options {
    forwarders { YOURTOPNAMESERVER_IPADDR; YOURTOPNAMESERVER_IPADDR2; };
    forward first;
    allow-query-cache { any; }; // Allow client queries from other subnet to query from cache
    Create a new zone, "bonjour.foocompany.com"
    zone "bonjour.foocompany.com." { type master; file "/etc/bind/db.home"; };
    zone "foocompany.com" { type forward; forward only; forwarders { YOURTOPNAMESERVER_IPADDR; YOURTOPNAMESERVER_IPADDR2; }; };
    Create the following entries to support bonjour browsing
    #=======DNS====Begin======
    lb.dns-sd.udp IN PTR @
    b.dns-sd.udp IN PTR @
    dr.dns-sd.udp IN PTR @
    db.dns-sd.udp IN PTR @
    cf.dns-sd.udp IN PTR @
    printserver IN A 10.47.203.188
    # For every printer queue defined at the printer server you need to create a TXT and SRV entry
    # The visual printer name that show up in the iOS listbox will be the part before .ipp.tcp, example "hpv8a", "hpv8acolor"
    # _ipp and _printer seem to be equivalents, either seem to work on iOS.
    # Printer 1
    cups._sub._ipp.tcp IN PTR hpv8a.ipp.tcp
    universal._sub._ipp.tcp IN PTR hpv8a.ipp.tcp
    #Printer 2
    cups._sub._ipp.tcp IN PTR hpv8acolor.printer.tcp
    universal._sub._ipp.tcp IN PTR hpv8acolor.printer.tcp
    hpv8a.ipp.tcp IN SRV 0 0 631 printserver
    hpv8acolor.printer.tcp IN SRV 0 0 631 printserver
    # The "adminurl" points to the printer queue url on the CUPS server
    # The "rp" key points to the queue name as well
    hpv8a.ipp.tcp IN TXT ( "txtvers=1" "qtotl=1" "rp=printers/V8A08A246LJ" "adminurl=http://printserver:631/printers/V8A_08A24
    6_LJ" "ty=HP Laserjet V8A" "product=(HP LaserJet 4200)" "transparent=t" "copies=t" "duplex=t" "color=f" "pdl=application/octet-stream,
    application/pdf,application/postscript,image/jpeg,image/png,image/urf" "URF=W8,SRGB24,CP1,RS600" )
    hpv8acolor.printer.tcp IN TXT ( "txtvers=1" "qtotl=1" "rp=printers/V8A08A246_ColorLJ" "adminurl=http://printserver:
    631/printers/V8A08A246_ColorLJ" "ty=HP Laserjet V8A Color" "product=(HP color LaserJet 4650)" "transparent=t" "copies=t" "duplex=t" "
    color=t" "pdl=application/octet-stream,application/pdf,application/postscript,image/jpeg ,image/png,image/urf" "printer-type=0x801046" "URF=
    W8,SRGB24,CP1,RS600" )
    ####Printer TEMPLATE
    #cups._sub._ipp.tcp IN PTR NAMEX.printer.tcp
    #universal._sub._ipp.tcp IN PTR NAMEX.printer.tcp
    #NAMEX.ipp.tcp IN SRV 0 0 631 PRINTSERVERDNSNAME
    #NAMEX.ipp.tcp IN TXT ( "txtvers=1" "qtotl=1" "rp=printers/QUEUENAME"
    # "adminurl=http://PRINTSERVERDNSNAME:631/printers/QUEUENAME"
    # "ty=Printer name"
    # "product=(Printer PPD model line)" "transparent=t" "copies=t" "duplex=t" "color=f"
    # "pdl=application/octet-stream,application/pdf,application/postscript,image/jpeg ,image/png,image/urf"
    # "URF=W8,SRGB24,CP1,RS600" )
    #=======DNS====End======
    2. Setup CUPS
    Add printers to the CUPS server.
    Enable access to the printer queue from remote machines,
    GUI: "System->Admin->Printing->Server->Server Setting: Allow printing from the internet"
    Also make sure the following lines are present in /etc/cups/cupsd.conf
    # Allow remote access
    Port 631
    Listen /var/run/cups/cups.sock
    AccessLog syslog
    AccessLogLevel all
    LogLevel debug
    MaxLogSize 0
    SystemGroup lpadmin
    # Enable printer sharing and shared printers.
    Browsing On
    BrowseOrder allow,deny
    BrowseAllow all
    BrowseRemoteProtocols CUPS
    BrowseAddress @LOCAL
    BrowseLocalProtocols CUPS dnssd
    BrowseProtocols all
    DefaultAuthType Basic
    3. Change iPAD configs
    Add your DNS server as the first DNS server in the network settting page.
    Add "bonjour.foocompany.com" to the DNS domains to search
    4. Test printing
    Open up Photos application.
    Select a picture
    Select "Send To->Print"
    Select "Printer", now a list of printer names should show up as defined in the DNS server
    Select a printer and hit "Print"
    Fast task switch to Print Center to verify print job is being sent
    Thanks
    Ashish Desai
    Security Architect
    Fidelity Investments
    email: [email protected]

    Update for ios 8:
    With ios 8 it appears that _printer and _ipp are no longer equivalent. For this to work it looks like you have to use _ipp._tcp
    Also - the underscore characters are important and they are missing from the example above.
    Last - you can use the "note" field to add a second line that is displayed in smaller text below the printer name in ios 8.
    Here is an updated template:
    ####Printer TEMPLATE
    cups._sub._ipp._tcp IN PTR NAMEX._ipp._tcp
    universal._sub._ipp._tcp IN PTR NAMEX._ipp._tcp
    NAMEX._ipp._tcp IN SRV 0 0 631 PRINTSERVERDNSNAME
    NAMEX._ipp._tcp IN TXT ( "txtvers=1" "qtotl=1" "rp=printers/QUEUENAME"
    "adminurl=http://PRINTSERVERDNSNAME:631/printers/QUEUENAME"
    "note=more info about printer"
    "ty=Printer name"
    "product=(Printer PPD model line)" "transparent=t" "copies=t" "duplex=t" "color=f"
    "pdl=application/octet-stream,application/pdf,application/postscript,image/jpeg ,image/png,image/urf"
    "URF=W8,SRGB24,CP1,RS600" )

  • Implementing the Enterprise Support in Solution Manager

    Hi Experts,
    Can anybody tell me what are the pre requisites to implement Enterprise support in solution manager?
    Also let me know what are steps involved in implementing the enterprise support.
    Thanks in Advance
    Hari

    Hello Hari,
    In order to implement Enterprise Support your organization should registered as a Value Added Reseller(VAR) with SAP. You can get all the required documentation under https://websmp104.sap-ag.de/solutionmanager --> Information for VARs, ASPs and AHPs which is in the left hand side of the page. However, you need to have a S-user ID of the VAR.
    The following are the steps need to perform in implementing the Enterprise Support firmly known as Service Desk for VARs.
    1. SAP Solution Manager basic settings (IMG)
      a) Initial Configuration Part I
      b) Maintain Profile Parameters
      c) Maintain Logical Systems
      d) Maintain SAP Customer Numbers
      e) Initial Configuration Part II
         1) Activate BC Set
             a) Activate Service Desk BC Set
             b) Activate Issue Monitoring BC set
             c) Set-up Maintainance optimizer
             d) Change online Documentation Settings
             e) Activate Solution Manager Services
             f) Activate integration with change request Managemnt
             g) Define service desk connection in Solution Manager
       2)Get components for SAP Service Market place
            a) Get SAP Components
       3) Get Service Desk Screen Profile
           a)generate Business Partener Screen
       4)Copy By price list
           a)activate Service Desk BC Set
           b)Activate Issue Monitoring BC set
           c)Set-up Maintainance optimizer
          f) Business Add-In for RFC Connections with several SAP customers
          g) Business Add-In for RFC Connection of Several SAP Cust. no.
          h) Set-Up SAP Support Connection for Customers
          i) Assign S-user for SAP Support Portal functionality
          j) Schedule Background Jobs
          k) Set-Up System Landscape
          l) Create Key Users
          m) Create Message Processor
    2. Multiple SAP Customer Numbers
          a) Business Add-In for RFC Connections with several SAP customer numbers
          b) Set-Up SAP Support Connection for Customers
    3. Data transfer from SAP
          a) Data Transfer from SAP
    4. Create u201COrganizationu201D Business Partner
    5. Service Provider function (IMG)
          a) Business Add-In for RFC Connections with several SAP customer numbers
          b) Business Add-In for Text Authorization Check
          c) Activate BC Set for Service Provider
          d) Activate Text Types
          e) Adjust Service Desk Roles for Service Provider Menu
    6. Service Provider: Value-Added Reseller (VAR)
          a) Business Add-In to Process Actions (Post-Processing Framework)
         b) Activate BC Sets for Configuration
         c) Create Hierarchy and Product Category
         d) Set-Up Subcategories
         e) Create Business Partner as Person Automatically
         f) Set-Up Automatic Confirmation of Messages
        g) Maintain Business Partner Call Times
        h) Set-Up Incident Management Work Center
    7. Work Center (Web UI)
        a) Activate Solution Manager Services
        b) Assign Work Center Roles to Users
    Hope it helps.
    Regards,
    Satish.

  • Leopard in the Enterprise

    I'm partner in a small company with 7 employees. We are all Mac fans and would like to be able to work collaboratively with our Macs. I originally came from a Windows work-environment where I got to know Microsoft Exchange and Microsoft SharePoint. Both products designed for the enterprise with collaboration in mind.
    What can a small company like us, with a limited budget, do to get the following (prioritized)?
    1. Filesharing (shared common drive)
    - It is important that the individual user can access the files while offline and then later sync with the common drive.
    - This should also handle situations where two people accidentally work on the same file simultaneously.
    - It would be nice if it was possible to set access restrictions on certain folders that only management had access to.
    2. *Calendar sharing*
    - Employees should be able to see other peoples calendars so they know when to book meetings etc.
    - I guess this could be done with some kind of CalDAV service?
    3. *Common Address Book*
    - I guess this could be done with some kind of LDAP service?
    We already have a bunch of FreeBSD servers running that could handle some of these things I guess - But I would like a solution that was easy/quick to implement and maintain so I could focus on my business.

    I am an IT manager in a similar situation. However, I have shelled out the thousands to upgrade everything to the latest OS with my xserve running 10.5.5, and users running 10.5.5 or 10.5.6. Spotlight is totally useless. I have talked to tech "supportless" several times - no help. I have installed and reinstalled 10.5 on the server, reformatted drives, copied and deleted hundreds of gigs of data, done all kinds of terminal commands that were supposed to fix it, but it still just doesn't work. I wish Apple would stop coming out with new stuff for a while and fix this basic computer function. For now I use "Better Search". Better Search is Freeware from http://www.fornextsoft.com. Its ok - at least it finds stuff, but it is still not 100% accurate sometimes.

  • How do you copy the entire contents of a hard drive?

    Without all the permission issues and such? One example is when I try to copy my drive to an external firewire drive that's empty I get the can't copy a file cause one already exists. The drive is blank? I'm doing a quick reformat and it would be easiest to just copy the entire drive and pull files I need over later. It's a powerbook G4.
    Mac Pro Tower 2.0GHz   Mac OS X (10.4.9)  

    Hi
    Will Kappy's answer in this thread (link below) help?
    http://discussions.apple.com/thread.jspa?threadID=959886&tstart=0
    Steve

  • How to bind an IIS to the enterprise portal installed on a linux machine

    Dear all,
    I am very new to the topic of Enterprise Portal.
    Our intention is, to develop .NET IViews and deploy them in the Enterprise Portal.
    The Enterprise Portal Server is set up on a linux machine.
    The Guy who did install the Portal Server, has no idea how to "integrate" the Microsoft IIS to the Portal.
    After deploying my .net Component, i tried to view this component in the portal (by right clicking the mouse on the Component in in the .NET Solutions Explorer).
    This gives me the following error:
    Portal Runtime Error
    An exception occured while processing a request for:
    iView:N/A
    Component Name: N/A
    Could not find portal application com.sap.portal.dotnet.framework.
    Exception id: 02:06.......
    See the details for the exception ID in the log file
    I think that this has something in common with integrating the IIS on the Linux Machine, and maybe additionaly installing the pdk.net on the IIS webserver machine which should be used.
    Thank you for your help.
    Regards

    Hi,
    Welcome to the world of Enterprise portal
    Seems to me like you are trying to use the PDK for .NET. If so - Please read the overview section in the documentation to get a general idea of how it works (for example - IIS is not used at all!).
    See the Visual Studio integrated help or click this https://media.sdn.sap.com/html/submitted_docs/dotnet/index.htm
    there go to "Getting Started" and mostly "Overview".
    Anyway, It seems like the problem is that you didn't deploy the 2 required SDA's to the portal. You should also take a look at the "installation and configuration" guide. Download it here: https://www.sdn.sap.com/sdn/developerareas/dotnet.sdn?contenttype=url&content=/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/pdk for .net administrator guides.zip
    Good luck,
    Ofer

  • How to compare and copy the fields from repeating subform to another subform, same structure.

    Dear All,
    I am using LiveCycle Designer 8.2.
    I have the following requirement, and did not figure out the best way to implement it using JavaScript.
    The Form has, say, Subform A with Repeating Inner Subform, say it has the Education History of the Staff.
    I want to put another Subform B, with similar structure to From A, and create a button/function to copy the field data values from A to B.
    Subform A will show the user the fields of education with Read-Only Mode.
    Subform B will show the user the same data values with write-enable mode. This subform will allow the user update his Education Records.
    The fields are:
    0. Staff ID: Text (Key 1) (always read-only and hidden, becuase it is on the main form),
    1. Degree: Text,
    2. Specialization: Text,
    3. Institution: Text,
    4. Start Date: Date (Key 2),
    5. End Date: Date.
    Another function is needed is to compare the same records between form A and Form B.
    (Note: The Education record of a Staff has primary key of Staff ID and Start Date. Meaning, the Staff cannot have tow different degrees in starting on the same date.)
    The user may change the Institution in form B or change the Degree. I need to highlight, on Subform B, the row which was changed or added by the user. This means I need to do lookup against Subform B using the Key Values from Subform A.
    I have already developed the Form, and I have about 5 Subforms to allow updated by Staff: Education, Experience Inside the company, Experience Outside the company, Job Skills, Membership Record, ..etc. One thing I did is that the Field Names I used in Subform A are not the same of the fieldname in Subform B, but the have same suffix, and different prefix. For example, for the Education:
    Subform A - Original Values:
    1. Degree: OrgDegreet,
    2. Specialization: OrgSpecialization,
    3. Institution: OrgInistitution,
    4. Start Date: OrgDateStart (Key),
    5. End Date: OrgDateEnd.
    Subform B - Updated Values:
    1. Degree: UpdDegreet,
    2. Specialization: UpdSpecialization,
    3. Institution: UpdInistitution,
    4. Start Date: UpdDateStart (Key),
    5. End Date: UpdDateEnd.
    I understand if the Key field is updated, then it is like it was deleted, and added a new one.
    I know how to do that in ASP.NET, but need help in Adobe LiveCycle using JavaScript.
    Please help me to write these two functions, as they are very urgent requirement.
    Tarek.

    In the event Exit of the 1st subforum.invoice you will find the code to assign the value to it's "brother" on page4.
    Also, on the add button i added the code to add a record to the page4 subforum.
    To make this work you will have to copy/past the code of the exit event to all fields you want to copy and in the xfa.resolvenode("XXXXXXX[].fieldName") command replace fieldname with the actual name of the field you're at.
    I didnt't do anything to te remove line button because i don't know how you want it to work, but, if you want to control the p4 subform with the p1 subform, you shouldn't allow for lines to be removed directly in the p4 subform.
    Hope this helps.

  • Using PowerShell to Copy the content of a Word Document and Paste that content into a New Message in Outlook

    So, I'm a little new to PowerShell and I came across a PowerShell which allow me to copy the content od a spreadsheet, into the new message in Outlook 2007.  I have search and search on a way to do the same with a Word Document.  I would like to
    create a PowerShell Script that copies the content of a Word Document and paste that content in an email message.
    I am basing my script on this
    #Create and get my Word Obj
    $w1 = New-Object  -comobject Word.Application
    $w1.Visible = $True
    $UserWord = $w1.Workbooks.Open("C:\Users\hhhh\Documents\Powershell\test.docx")
    #create outlook Object
    $Outlook = New-Object  -comObject  Outlook.Application 
    $Mail = $Outlook.CreateItem(0)
    $Mail.SentOnBehalfOfName = "[email protected]"
    $Mail.Recipients.Add("[email protected]")
    #Add the text part I want to display first
    $Mail.Subject = "Test email"
    $Mail.Body = "My Comment on the Excel Spreadsheet"
    #Then Copy the Word using parameters to format it
    $Mail.Getinspector.WordEditor.Range().PasteExcelTable($true,$false,$false)
    #Then it becomes possible to insert text before
    $wdDoc = $Mail.Getinspector.WordEditor
    $wdRange = $wdDoc.Range()
    $Mail.Display()
    Any Help would be great!

    My requirements are the Word documents are a template of sorts.  The document will be changes prior to its email with some changes.  The other twist is that the customer might more that one recipients, and each recipient will have to have a separate
    email, with the same content of the word document. 
    For example: Say I'm doing maintenance. The Word doc might descript that maintenance, in a set format. Once save the script is run to generate 3 to 10 email with separate recipients with the body of the email containing what was in the Word document.

  • How do I copy the style from one control to another?

    I need to programmatically copy the style from one graph to another. I'm currently using the importstyle and export style functions but I'd like to avoid that since: 1) I'm creating >100 of the same graphs in a scrolling window and execution time is a concern, and 2) it makes it harder to redistribute the application, and 3) you shouldn't have to import/export from disk just to copy a graph style.
    I noticed the copy constructor was disabled so you can't just create a new one from the original. I suppose I could iterate through all the styles and transfer them from the master graph to all the copies but is there an easier way to do that? If not, is there some sample code for that?
    I'm using MStudio 7.0 for C
    ++.
    Thanks,
    -Bob

    One way that you could do this would be to create a helper method that configures your graph rather than configuring it at design-time, then use that helper method to apply the settings to the new graphs that you create. However, this would only work if you wanted all graphs to be configured exactly the same way - this would not work if the settings of your master graph are changing at run-time and you want the new graphs to be configured with the current settings of the master graph.
    Another approach is to query each control for IPersistPropertyBag, create an IPropertyBag, pass the IPropertyBag to the master graph's IPersistPropertyBag:ave, then pass the IPropertyBag to the new graph's IPersistPropertyBag::Load implementation. I'm not aware of any implementations of IPropertyBag that are readily available for use in applications, so the tricky part is creating the IPropertyBag. Below is a very simple implementation of IPropertyBag that should be enough to get the job done for this example. First, add this to your stdafx.h:
    #include <atlbase.h>
    CComModule _Module;
    #include <atlcom.h>
    #include <atlcoll.h>
    Here's the simple IPropertyBag implementation:
    class ATL_NO_VTABLE CSimplePropertyBag :
    public CComObjectRootEx<CComSingleThreadModel>,
    public IPropertyBag
    private:
    CAtlMap<CComBSTR, CComVariant> m_propertyMap;
    public:
    BEGIN_COM_MAP(CSimplePropertyBag)
    COM_INTERFACE_ENTRY(IPropertyBag)
    END_COM_MAP()
    STDMETHODIMP Read(LPCOLESTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    if (SUCCEEDED(::VariantClear(pVar)))
    CComBSTR key = pszPropName;
    CComVariant value;
    if (!m_propertyMap.Lookup(key, value))
    hr = E_INVALIDARG;
    else
    if (SUCCEEDED(::VariantCopy(pVar, &value)))
    hr = S_OK;
    return hr;
    STDMETHODIMP Write(LPCOLESTR pszPropName, VARIANT* pVar)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    m_propertyMap.SetAt(pszPropName, *pVar);
    hr = S_OK;
    return hr;
    Once you have a way to create an implementation of IPropertyBag, you can use IPropertyBag and IPersistPropertyBag to copy the settings from one control to another like this:
    void CopyGraphStyle(CNiGraph& source, CNiGraph& target)
    LPUNKNOWN pSourceUnknown = source.GetControlUnknown();
    LPUNKNOWN pTargetUnknown = target.GetControlUnknown();
    if ((pSourceUnknown != NULL) && (pTargetUnknown != NULL))
    CComQIPtr<IPersistPropertyBag> pSourcePersist(pSourceUnknown);
    CComQIPtr<IPersistPropertyBag> pTargetPersist(pTargetUnknown);
    if ((pSourcePersist != NULL) && (pTargetPersist != NULL))
    CComObject<CSimplePropertyBag>* pPropertyBag = 0;
    CComObject<CSimplePropertyBag>::CreateInstance(&pPropertyBag);
    if (pPropertyBag != NULL)
    CComQIPtr<IPropertyBag> spPropertyBag(pPropertyBag);
    if (spPropertyBag != NULL)
    if (SUCCEEDED(pSourcePersist->Save(spPropertyBag, FALSE, TRUE)))
    pTargetPersist->Load(spPropertyBag, NULL);
    (Note that "CreateInstan ce" above should be CreateInstance - a space gets added for some unknown reason after I click Submit.)
    Then you can use this CopyGraphStyle method to copy the settings of the master graph to the new graph. Hope this helps.
    - Elton

  • How to find a word and copy the phrase containing the word without using the mouse

    I am using a macro to fill in a form and select fields in the form. The fields are titled and i want to use the field title to select the field and thus need to copy the name to compare with the search text and tab to the next requested field.

    Ctrl+f opens the search in page feature. However, the result is not automatically selected and ready for copying. And since you already typed the query, you wouldn't really save any time that way...
    Firefox has some accessibility features you could explore: [[Accessibility features in Firefox - Make Firefox and web content work for all users]]. These include placing a movable cursor into the page, or searching/selecting using / and other possibly useful items. Maybe between them you can find a good workflow. If not, maybe an add-on?
    ''Edit: Here's an example of how to select the word accessibility in this post:''
    Type:
    /acce
    Press:
    Esc, Ctrl+Shift+right
    ''Edit: Actually it works with Ctrl+f as well, and that might be better if the word is common so you can use Next/Previous.''
    Press:
    Ctrl+f
    Type:
    acce
    Press:
    Esc, Ctrl+Shift+right

  • Error while testing Driver connection Through The EnterPrise Manager

    Hi -
    I am using OAS 10.1.3v for my application.I am using both SQL Server 2000 JDBC driver and Oracle JDBC driver for my application. I am encountering problems due to SQL Server 2000 JDBC driver.
    I tried testing for connectivity for SQL driver through the enterprise manager.(on the em console, inside home/administration/JDBC resources ). I am getting the following error :
    Unable to create : com.microsoft.jdbc.sqlserver.SQLServerDriver
    Missing class: com.microsoft.jdbc.sqlserver.SQLServerDriver Dependent class: oracle.oc4j.sql.config.DataSourceConfigUtils Loader: oc4j:10.1.3 Code-Source: /E:/product/10.1.3.1/OracleAS_1/j2ee/home/lib/oc4j-internal.jar Configuration: in META-INF/boot.xml in E:\product\10.1.3.1\OracleAS_1\j2ee\home\oc4j.jar This load was initiated at ascontrol.web.ascontrol:0.0.0 using the Class.forName() method. The missing class is available from the following locations: 1. Code-Source: /E:/product/10.1.3.1/OracleAS_1/j2ee/home/applib/mssqlserver.jar (from in /E:/product/10.1.3.1/OracleAS_1/j2ee/home/config/server.xml) This code-source is available in loader global.libraries:1.0. This shared-library can be imported by the "ascontrol" application
    I tried adding mssqlserver.jar to the shared library.Still, i got the same error.
    The connection which i am trying to test, has the following entry in the data-sources.xml :
    <connection-pool name="BPELPM_CONNECTION_POOL1" max-connections="30">
         <connection-factory factory-class="com.microsoft.jdbc.sqlserver.SQLServerDriver" user="sa" password="" url="jdbc:microsoft:sqlserver://localhost:1433;databaseName=WE411;selectMethod=cursor" commit-record-table-name=""/>
         </connection-pool>
         <managed-data-source connection-pool-name="BPELPM_CONNECTION_POOL1" jndi-name="jdbc/ExpressJDBCDataSource" name="ExpressJDBCDataSource"/>
    I also tried with native-data-source option in the data-source.xml without a connection pool like -
    <native-data-source
    name="ExpressJDBCDataSource"
    jndi-name="jdbc/ExpressJDBCDataSource"
    description="Native DataSource"
    data-source-class="com.microsoft.jdbc.sqlserver.SQLServerDataSource"
    user="sa"
    password=""
    url="jdbc:microsoft:sqlserver://localhost:1433;databaseName=WE411 ;selectMethod=cursor ">
    </native-data-source>
    I am getting the same error as above.
    Has anybody encountered a similiar problem ?
    A related post that was posted by me is :
    SQL Server Driver Problem in Oracle Application Server 10.1.3 data-sources

    thank you very much for your help. for update server's full name, may I put the mapping values  into host file in the format of  <ip address> <hostname.domain name> <hostname>, do you think it is OK?
    in the second blog you suggest there is something about Server port(please refer to the following):
    in the window machine, there should be an entry like sapms<SAP System ID> , can you please give me a full example:
    let's say my system ID is EC1,  so it would be sapmsEC1  8000/tcp, right ?
    Here you have to enter the port of your application server. By default this is 80<SAP System ID>. But your basis administrator can modify this setting, thatu2019s why you should check it in the transaction SMICM (Goto -> Parameters -> Display). For example the IBSolution Development System Erinome the port is 8000.
    You can also have a look into your services file on your machine. If you have a windows machine then the file exists e.g. here C:\WINDOWS\system32\drivers\etc\services
    In this file you should search a entry like sapms<SAP System ID>.
    Edited by: jingying Sony on May 24, 2010 4:41 PM

Maybe you are looking for

  • 0LANGU - missing in text table of an InfoObject - 0PLANT

    Hi there, *I'm loking for a great assistance*. The IO 0PLANT was fine, in BI7.0, and i viewed transformation code in InfoSpoke (not OHD), migrated from BW3.5 and when i gave the syntax check option it says "0LANGU" as unknown field in /BI0/TPLANT tab

  • I Can't Download Flickr on my iPad Mini From Pakistan

    Hello I Cant Download Flickr on my iPad Mini From Pakistan. So Please Tell Me What To Do?

  • Slices Issue

    I believe my issue has something to do with page tiling or page setup of some sort. When I go to make a slice it is like I am hitting a boundary that won't allow the slice to be the size I want it to be. The artwork is inside the art box but there se

  • Adobe Presenter 8 crashes on publish

    When I try to publish my powerpoint in adobe presenter 8, I get an error that says PowerPoint has experienced a serious problem with adobe presenter add-in. I've seen several others having this issue and I have tried all of the things that have been

  • Mac Pro crashes multiple times after rebooting from boot camp

    Everytime i reboot into OSX after using Vista in boot camp, i crash within seconds (grey screen takes over saying i need to hold down power button, etc.) i reboot. get back on my desktop in OSX and apple wants me to send the information because the c