Deploying Applications without using client cache

Hi,
We use Configuration Manager 2012 R2 for client deployment and application deployment.  Our ICT Suite computers did have an image of 23GB to deploy previously, but for ease of updating I am now using a task sequence with a common base image and
installs applications depending on collection.  Then also using that Application list to give our staff ability to choose applications to install onto their laptops using Software Centre.
As all application installations will occur over gigabit network or fast wireless connections I don't want the clients using the local cache to download the installations first (especially as some applications are 5GB and the cache doesn't empty straight
away).  I found that putting a full path to execute in the installation program field (i.e.
msiexec /I \\server\application$\program\install.msi
/q) and leaving the content location blank works to deploy applications to collections for installation.  But when the PXE task sequence is run I get the error:
If I create a second Deployment Type with content and distribute the content to the distribution point and set requirements that none of our clients would pass the software still installs (using the Deployment Type with no content).  This all seems
a bit of a hack to do a simple task.  Is there a better way to do this?  I just don't want the extra step of the stations downloading the setups into the client configuration manager cache folder.  I also don't want to use Packages as I can't
publish these into the Applications list in Software Centre for the clients.
Thanks,
Andy

I'm not sure why Microsoft provide such a great way of combining things like Application Library and automated deployment, then make it so difficult to actually use it.   Is there a command that will just clear the cache that I can run at the end
of the sequence?
I keep the cache at 20GB anyway as teachers like to deploy large applications to their laptops one after the other and as the cache fills up and hits max as it only clears after a minimum of 24 hours (another annoying attribute).  It then starts failing
to deploy.  But as some of our laptops have smaller SSD drives, they can't have huge caches as well as the applications installing using double the space the application actually requires.
For the task sequence (station building), I guess I could create a Package called Software and set the content to the share where all of our software is stored.  Then set it as direct access only, then list all of the software to install direct from
the package one after the other?

Similar Messages

  • Is it possible to develop struts application without using JPF in workshop 8.1?

    Hi,
    Is it possible to develop application based on struts framework without using
    Java Page Flow in workshop 8.1?
    I developed one application without using JPF , but it is showing some Deployment
    errors.
    rgds,
    girish

    Girish--
    Sure, though, I'd still encourage you to take a look at JPF. :)
    If you remove the JPF runtime files from WEB-INF/, WEB-INF/lib, and JPF specific entries in
    web.xml, you can start defining a struts-config.xml file against the Struts 1.1 runtime in the
    webapp, or you can replace that with a different version as you need. You'll also need to define
    the Struts runtime in web.xml including the servlet, taglibraries, etc.
    One note, the JPF flow view and other JPF specific editors don't work over a normal
    struts-config.xml file.
    Hope that helps...
    Eddie
    Girish wrote:
    Hi,
    Is it possible to develop application based on struts framework without using
    Java Page Flow in workshop 8.1?
    I developed one application without using JPF , but it is showing some Deployment
    errors.
    rgds,
    girish

  • Getting current date without using client's clock

    Is there a way to get the current date without using client's clock?
    The java application we developed has many windows on which the Current Date is an important display field. As it's used 24x7, we need to make sure the date is current.
    Right now, we make a CORBA service call to get the date from the server everytime the user Resets any of these windows. This is causing a peformance issue due to the slow service call.
    Is it possible to get the Date once from the server and then start a timer to derive the date thereafter. Will a change in the client's clock affect this logic ? Can we implement this without using client's system time.
    Or is there another better way ?
    Thanks for your help.

    If I can summarize your current requirements:
    1. You need to know the time.
    2. You don't trust the client's clock so you want to get the time from another computer.
    3. You want this access to be "not too slow".
    I find requirement number 2 to be peculiar, I've never seen an application that doesn't accept the time on the client system as valid. However, there it is. Maybe it's a system for checking employees in and out, and the smarter ones have been faking out the system by changing the clock. If your CORBA connection is too slow, and NTP is too slow (it takes the little program I got from USNO about 3 seconds to synchronize my clock), why not write your own time server? A simple web server that returns only the time to any request would work. If that's not fast enough then I'd suggest you're out of luck.

  • How to create a popup window to load HTML page in AIR application without using any mx or spark?

    How to create a popup window to load HTML page in AIR application without using any mx or spark components?
    I need to load the HTML page in popup in AIR application without using any of the <mx> or <spark> components. I need to open in the application itself not in the browser.(If we use navigateToURL() it will open in th browser)

    Can we achieve this? can somebody help me on this scenario..

  • Clustered application without using EAR in WebLogic 6.0

              Hi,
              Is it possible to set-up a clustered application without using EAR files in WebLogic
              6.0.
              Please point me to instructions for the same.
              Thanks
              B.Srini
              

    Yep. Possible.
              refer bea docs
              "Srinivasan Bhoopathy" <[email protected]> wrote in message
              news:3c5e5815$[email protected]..
              >
              > Hi,
              >
              > Is it possible to set-up a clustered application without using EAR files
              in WebLogic
              > 6.0.
              >
              > Please point me to instructions for the same.
              >
              > Thanks
              > B.Srini
              

  • Call a external application without using a webservice

    Hi all,
    How can we make a call to external application without using webservice from BPEL or OSB.Please share any links to refer.
    Thanks,
    Kiran

    Hi.
    Probably the options:
    1. Adapters. BPEL PM offers a different set of adapters that allows the process to communicate with external apps
    2. PRobably a basic HTTP POST could be an option
    3. Writing some code inside a Java Embedded activity
    Which application are u trying to communicate with?
    thx
    best

  • Is it possible to make a javafx ui application without using layout managers ?

    I want to make an user interface application without using layout managers. In my previous attempt i made an application in java swing. There i used the setBounds() function. Is there any function like setBounds() in javafx ?

    There really isn't any more to it than that.
    Again, I have no idea why you would do things this way (either in JavaFX or in Swing), but:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.Pane;
    import javafx.stage.Stage;
    public class ManualPositioningExample extends Application {
        @Override
        public void start(Stage primaryStage) {
            final Pane root = new Pane();
            final Button button = new Button("Click me");
            final Label label = new Label("A Label");
            final TextField textField = new TextField();
            root.getChildren().addAll(button, label, textField);
            label.relocate(25, 25);
            textField.relocate(75, 25);
            textField.setPrefSize(100, 20);
            button.relocate(25, 50);
            button.setPrefSize(150, 20);
            Scene scene = new Scene(root, 400, 200);
            primaryStage.setScene(scene);
            primaryStage.show();
        public static void main(String[] args) {
            launch(args);

  • Can i send a email from application without using exchange server?

    Hello
    I am developing a 3 tier application using EJB, JSP....and i want to incorporate the mail sending facility.
    Can i send a email from the application without using exchange server?
    plzz help!!!!
    Pavan

    You will require some kind of SMTP server to be able to send mail from your app (not necessarily M$ exchange.) Just look for mail servers for the platform of your choice.
    Vijayan

  • Error deploying application: error retrieving component [ caching Stub] Pro

    Hi we are using web logic 6.1, everything was working fine untill we restarted the server. once i restarted i got this error...
    Error deploying application m1_model_responsecurvefacility.jar: error retrieving component [Caching Stub]Proxy for m192:ApplicationConfig=m1_model_responsecurvefacility.jar,Location=m192admin,Name=m1_model_responsecurvefacility.jar,Type=EJBComponentConfig>
    can i know what are all the possible cause for this error to occur ?

    ####<Jan 14, 2008 9:24:06 PM EST> <Info> <Logging> <server> <m192admin> <main> <> <> <000000> <FileLogger Opened.>
    ####<Jan 14, 2008 9:24:22 PM EST> <Notice> <WebLogicServer> <server> <m192admin> <main> <system> <> <000327> <Starting WebLogic Admin Server "m192admin" for domain "m192">
    ####<Jan 14, 2008 9:24:22 PM EST> <Info> <WebLogicServer> <server> <m192admin> <main> <system> <> <000214> <WebLogic Server "m192admin" version:
    WebLogic Server 6.1 SP2 12/18/2001 11:13:46 #154529
    WebLogic XML Module 6.1 SP2 12/18/2001 11:28:02 #154529
    (c) 1995, 1996, 1997, 1998 WebLogic, Inc.
    (c) 1999, 2000, 2001 BEA Systems, Inc.>
    ####<Jan 14, 2008 9:24:22 PM EST> <Info> <WebLogicServer> <server> <m192admin> <main> <system> <> <000215> <Loaded License : /opt/weblogic_m1/61sp2/license.bea>
    ####<Jan 14, 2008 9:24:38 PM EST> <Info> <Connector> <server> <m192admin> <main> <system> <> <190000> <Initializing J2EE Connector Service>
    ####<Jan 14, 2008 9:24:38 PM EST> <Info> <Connector> <server> <m192admin> <main> <system> <> <190001> <J2EE Connector Service initialized successfully>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <WebLogicServer> <server> <m192admin> <main> <system> <> <000000> <IIOP subsystem enabled.>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101128> <Initializing HTTP services.>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101133> <Initializing WEB server m192admin>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101052> <[HTTP m192admin] Initialized>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101135> <m192admin is the default web server>
    ####<Jan 14, 2008 9:24:40 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <000000> <J2EE service initializing>
    ####<Jan 14, 2008 9:24:41 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040090> <Deployed 4 default connection factories.>
    ####<Jan 14, 2008 9:24:41 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101129> <Initializing Web services.>
    ####<Jan 14, 2008 9:24:41 PM EST> <Info> <HTTP m192admin> <server> <m192admin> <main> <system> <> <000000> <Log rotation is size based>
    ####<Jan 14, 2008 9:24:44 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /bea_wls_internal>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(3029388,bea_wls_internal,/bea_wls_internal)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(3029388,bea_wls_internal,/bea_wls_internal)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(3029388,bea_wls_internal,/bea_wls_internal)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:24:45 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "bea_wls_internal:/bea_wls_internal">
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101051> <[HTTP m192admin] started>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <ZAC> <server> <m192admin> <main> <system> <> <000000> <ZAC ACLs initialized>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <ZAC> <server> <m192admin> <main> <system> <> <000000> <ZAC packages stored in local directory exports>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: os.name = SunOS>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.boot.class.path = /opt/weblogic_m1/MercuryDiagnostics/JAVAProbe/classes/boot:/opt/weblogic_m1/61sp2/jdk131/jre/lib/rt.jar:/opt/weblogic_m1/61sp2/jdk131/jre/lib/i18n.jar:/opt/weblogic_m1/61sp2/jdk131/jre/lib/sunrsasign.jar:/opt/weblogic_m1/61sp2/jdk131/jre/classes>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.specification.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.runtime.version = 1.3.1_01>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: maxBH = 49999>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.Name = m192admin>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.implementation.vendor = Sun Microsystems>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.name = m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: bea.home = /opt/weblogic_m1/61sp2>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.xml.parsers.SAXParserFactory = weblogic.xml.jaxp.RegistrySAXParserFactory>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.naming.factory.initial = weblogic.jndi.WLInitialContextFactory>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.implementation.name = JMX RI>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.language = en>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.boot.library.path = /opt/weblogic_m1/61sp2/jdk131/jre/lib/sparc>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: vo.poolingString = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.specification.name = Java Management Extensions>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.version = 1.3.1_01>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.collection.finders = true>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.timezone = America/New_York>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: m1tempproxy.MaxTries = 1>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.rmi.CORBA.UtilClass = weblogic.iiop.UtilDelegateImpl>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.specification.version = 1.0 Final Release>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.implementation.version = 1.0>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.cpu.isalist = sparcv9+vis sparcv9 sparcv8plus+vis sparcv8plus sparcv8 sparcv8-fsmuld sparcv7 sparc>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: file.encoding.pkg = sun.io>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: file.separator = />
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.specification.name = Java Platform API Specification>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.email.host = ponyex.capitalone.com>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.class.version = 47.0>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.home = /opt/weblogic_m1/61sp2/jdk131/jre>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.xml.parsers.DocumentBuilderFactory = weblogic.xml.jaxp.RegistryDocumentBuilderFactory>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.info = mixed mode>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.email.sender = [email protected]>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: os.version = 5.8>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: probe.id = hulk_m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.url = t3://localhost:7092>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.awt.fonts = >
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: path.separator = :>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.version = 1.3.1_01>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.protocol.handler.pkgs = weblogic.net|weblogic.management|weblogic.utils>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: jmx.specification.vendor = Sun Microsystems>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.awt.printerjob = sun.awt.motif.PSPrinterJob>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.security.policy = =/opt/weblogic_m1/61sp2/wlserver6.1/lib/weblogic.policy>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.io.unicode.encoding = UnicodeBig>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.naming.factory.url.pkgs = weblogic.jndi.factories>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.home = /export/home/m1/m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: SMS_HOME = /m1/src/m192/sms>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.specification.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: org.xml.sax.driver = weblogic.apache.xerces.parsers.SAXParser>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.library.path = /opt/weblogic_m1/61sp2/jdk131/jre/bin/../lib/sparc/hotspot:/opt/weblogic_m1/61sp2/jdk131/jre/bin/../lib/sparc:::/opt/hpnpl/lib:/opt/weblogic_m1/61sp2/wlserver6.1/lib/solaris:/opt/weblogic_m1/61sp2/wlserver6.1/lib/solaris/oci816_8:/usr/lib>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vendor.url = http://java.sun.com/>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.vendor = Sun Microsystems Inc.>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.runtime.name = Java(TM) 2 Runtime Environment, Standard Edition>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.class.path = /opt/weblogic_m1/61sp2/wlserver6.1:/opt/weblogic_m1/61sp2/wlserver6.1/lib/weblogic_sp.jar:/opt/weblogic_m1/61sp2/wlserver6.1/lib/weblogic.jar:/m1/src/m192/commons-net-1.3.0.jar:config/m192/applications:/m1/src/m192:/opt/weblogic_m1/61sp2/wlserver6.1/lib/ejb20.jar:/m1/src/m192/aspectjrt.jar:/m1/src/m192/activation.jar:/m1/src/m192/techteam.jar:/m1/src/m192/jce1_2-do.jar:/m1/src/m192/junit.jar:/m1/src/m192/httpunit.jar:/m1/src/m192/Tidy.jar:/m1/src/m192/crypto.jar:/m1/src/m192/entbase.jar:/m1/src/m192/performance.jar:/m1/src/m192/logging.jar:/m1/src/m192/smartupload.jar:/m1/src/m192/connectionfilter.jar:/m1/src/m192/jaxb-api.jar:/m1/src/m192/jaxb-libs.jar:/m1/src/m192/jaxb-ri.jar:/m1/src/m192/saaj-api.jar:/m1/src/m192/saaj-ri.jar:/m1/src/m192/dom4j.jar:/m1/src/m192/commons-logging.jar:/m1/src/m192/poi.jar:/m1/src/m192/fakeGA.jar>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.Domain = m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.specification.name = Java Virtual Machine Specification>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.rmi.CORBA.PortableRemoteObjectClass = weblogic.iiop.PortableRemoteObjectDelegateImpl>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.specification.version = 1.0>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: sun.cpu.endian = big>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.io.tmpdir = /var/tmp/>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vendor.url.bug = http://java.sun.com/cgi-bin/bugreport.cgi>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.system.name = m192>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: entity.auditlog = true>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: os.arch = sparc>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.awt.graphicsenv = sun.awt.X11GraphicsEnvironment>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.ext.dirs = /opt/weblogic_m1/61sp2/jdk131/jre/lib/ext>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: user.dir = /opt/weblogic_m1/61sp2/wlserver6.1>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: line.separator =
    >
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.vm.name = Java HotSpot(TM) Client VM>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: m1proxy.MaxTries = 1>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.management.discover = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: loadPS = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: file.encoding = 646>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: weblogic.ProductionModeEnabled = false>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: java.specification.version = 1.3>
    ####<Jan 14, 2008 9:24:45 PM EST> <Info> <Management> <server> <m192admin> <main> <system> <> <141034> <Java system property: javax.xml.transform.TransformerFactory = weblogic.xml.jaxp.RegistrySAXTransformerFactory>
    ####<Jan 14, 2008 9:24:49 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101053> <[HTTP m192admin] Loading web app: wl_management_internal2>
    ####<Jan 14, 2008 9:24:49 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101059> <[m192admin] Loading wl_management_internal2 from WAR file: /opt/weblogic_m1/61sp2/wlserver6.1/./config/m192/applications/.wlnotdelete/wl_comp3387.war>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101031> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] extracting classfiles to /m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal2:>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101032> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] extracted classfiles successfully...>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /wl_management_internal2>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:25:02 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4777931,wl_management_internal2,/wl_management_internal2)] registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=/m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal2,pageCheckSeconds=1,superclass=null,keepgenerated=false,compilerSupportsEncoding=false,encoding=null,defaultfilename=index.jsp,compilerclass=null,noTryBlocks=false]'>
    ####<Jan 14, 2008 9:25:03 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "wl_management_internal2:/wl_management_internal2">
    ####<Jan 14, 2008 9:25:03 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <160003> <Deployed : wl_management_internal2>
    ####<Jan 14, 2008 9:25:04 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101053> <[HTTP m192admin] Loading web app: console>
    ####<Jan 14, 2008 9:25:04 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101059> <[m192admin] Loading console from WAR file: /opt/weblogic_m1/61sp2/wlserver6.1/./config/m192/applications/.wlnotdelete/wl_comp3389.war>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101031> <[WebAppServletContext(4340768,console,/console)] extracting classfiles to /m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_console:>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101032> <[WebAppServletContext(4340768,console,/console)] extracted classfiles successfully...>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /console>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:25:07 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(4340768,console,/console)] registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=/m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_console,pageCheckSeconds=1,superclass=weblogic.servlet.jsp.JspBase,keepgenerated=false,compilerSupportsEncoding=false,encoding=null,defaultfilename=index.jsp,compilerclass=null,noTryBlocks=false]'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "console:/console">
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <160003> <Deployed : console>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101053> <[HTTP m192admin] Loading web app: wl_management_internal1>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101059> <[m192admin] Loading wl_management_internal1 from WAR file: /opt/weblogic_m1/61sp2/wlserver6.1/./config/m192/applications/.wlnotdelete/wl_comp3391.war>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101031> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] extracting classfiles to /m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal1:>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101032> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] extracted classfiles successfully...>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP Session> <server> <m192admin> <main> <system> <> <100037> <Creating SessionContext of type: memory for webapp: /wl_management_internal1>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering classpath servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering getior servlet with initArgs 'null'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering tunneling servlets with initArgs 'wl-dispatch-policy=direct'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <HTTP> <server> <m192admin> <main> <system> <> <101047> <[WebAppServletContext(2130451,wl_management_internal1,/wl_management_internal1)] registering JSPServlet with initArgs '[JspConfig: verbose=true,packagePrefix=jsp_servlet,-compiler=javac,compileFlags=,workingDir=/m1/src/m192/applications/.wlnotdelete/WEB-INF/_tmp_war_m192admin_m192admin_wl_management_internal1,pageCheckSeconds=1,superclass=null,keepgenerated=false,compilerSupportsEncoding=false,encoding=null,defaultfilename=index.jsp,compilerclass=null,noTryBlocks=false]'>
    ####<Jan 14, 2008 9:25:08 PM EST> <Debug> <HTTP> <server> <m192admin> <main> <system> <> <101097> <Registering ServletContext: "wl_management_internal1:/wl_management_internal1">
    ####<Jan 14, 2008 9:25:08 PM EST> <Info> <J2EE> <server> <m192admin> <main> <system> <> <160003> <Deployed : wl_management_internal1>
    ####<Jan 14, 2008 9:25:15 PM EST> <Info> <JDBC Pool M1Pool> <server> <m192admin> <main> <system> <> <000000> <Cannot set refreshTestMinutes with '0'. Will use 5 minutes.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:27 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001068> <Connection for pool "M1Pool" created.>
    ####<Jan 14, 2008 9:25:28 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001082> <Creating Data Source named M1DataSource-M1Pool for pool M1Pool>
    ####<Jan 14, 2008 9:25:28 PM EST> <Info> <JDBC> <server> <m192admin> <main> <system> <> <001070> <Checking existence of connection pool M1Pool requested by user system>
    ####<Jan 14, 2008 9:25:28 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040090> <Deployed 4 default connection factories.>
    ####<Jan 14, 2008 9:25:31 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040054> <JMSServer "JMSServer-0", no persistent store configured.>
    ####<Jan 14, 2008 9:25:33 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040010> <JMSServer "JMSServer-0", configured no session pools.>
    ####<Jan 14, 2008 9:25:33 PM EST> <Info> <JMS> <server> <m192admin> <main> <system> <> <040109> <JMSServer "JMSServer-0" is started.>
    ####<Jan 14, 2008 9:25:39 PM EST> <Info> <EJB> <server> <m192admin> <main> <system> <> <010008> <EJB Deploying file: m1_model_bbamfacility.jar>
    ####<Jan 14, 2008 9:25:39 PM EST> <Warning> <J2EE> <server> <m192admin> <main> <system> <> <160007> <You are running WebLogic Server with J2EE 1.3 features enabled. The implementation of specific J2EE 1.3 features (EJB 2.0, JSP 1.2, Servlet 2.3, and J2EE Connector Architecture 1.0) in BEA WebLogic Server 6.1 is of a non-final version of the appropriate specification. It is subject to change in future releases once the specification becomes finalized. This may cause application code developed for BEA WebLogic Server 6.1 that uses the new features of J2EE 1.3 to be incompatible with the J2EE 1.3 platform supported in future releases of BEA WebLogic Server.>
    ####<Jan 14, 2008 9:25:41 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: bbamfacility cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.BbamFacilityBean is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:41 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: bbamfacility cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.BbamFacilityHome is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:41 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: bbamfacility cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.BbamFacility is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:42 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: parameterentity cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.parameterentity.ParameterEntityBean is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:42 PM EST> <Warning> <EJB> <server> <m192admin> <main> <system> <> <010001> <EJB Deployment: parameterentity cannot be redeployed while the server is running. com.capitalone.intranet.solicitation.model.bbamfacility.parameterentity.ParameterEntityHome is located in the server's classpath.>
    ####<Jan 14, 2008 9:25:42 PM EST> <Warning> <EJB> <server> <m192admin> <main>

  • Access Oracle 9i from a Client Application without Oracle Client Install.

    Is it possible to access an Oracle Database from a Client Application without having an oracle Client Installation ?
    I want to write a program that connect to an Oracle Server. I use Borland C++. But my Programs only works with having the Client Oracle Software installed on the Client. Is there any way to realise this ?

    The way that 99% of the people that want to do this manage is to write Java code that connects to the database via JDBC, using Oracle's thin JDBC driver.
    If you absolutely have to use C++, you can purchase thin ODBC drivers from third parties (DataDirect for example) that will connect to the database without the Oracle client. I'm not aware of any thin, free ODBC drivers.
    Justin

  • HT204053 how can i use iTune and Apple apps to doenload applications without using credit card or gift cards?

    Hi Team,
    I have brought new iPhone, and was trying to install Skype & other applications. while using itune its asking for review, and then in registration page asking for
    "Credit card' details..
    help me to know the way without credit cards or gift cards.

    If you only want the free apps, take a look here:
    http://support.apple.com/kb/HT2534
    Read the steps carefully as the order in which you follow them is  critical. Note that you can do this only when creating a new Apple ID. You cannot use an existing ID. 
    You will of course not be able to get anything other than the free apps without entering in some sort of payment method (credit card, prepaid iTunes card, gift certificate, etc.)
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Download CC 2014 Applications Without Using Creative Cloud?

    I have the new Creative Cloud and associated apps (2014) installed on my MacPro at work, but I want to install the new associated apps on my iMac at home. I asked for a link to download the previous versions files to an external hard drive recently (before this version's launch) and you answered with a link to download the files without using the Creative Cloud application. Will you send me a link to do the same with this new release? Thanks.
    As I said before, it would take DAYS and use up my ENTIRE monthly data plan to download the programs at home.

    Direct downloads do not work on the mac.
    Access Denied
      You don't have permission to access "http://trials3.adobe.com/AdobeProducts/ILST/18/osx10-64/Illustrator_18_LS20.dmg?" on this server.
    Reference #18.25063e17.1403266118.23283599 
    Come on Adobe, get your act together, the cloud manager does not work for mac either on the 2014 versions

  • Deploy ejbs without using deployment tool in J2EE server

    Hi,
    IS there any way to deploy ejbs in J2EE without using the deployment tool? I am using the j2ee 1.2.1.
    Thanks,
    Nipa

    When I was in my companies Java Boot Camp (6 week fulltime training in Java technologies) the class was split about 75/25 with 75% of the class using a deployment tool (I think it was WebGain). The other 25% did not use a deployment tool. I was one of the 25%.
    What we did was write a Perl script that took care of all the necessary deployment steps. It has been awhile, and I no longer work for that company, but I'll try and dig up some of those scripts. (Can't promise I'll find them!)
    BTW, the 25% group deployed more EJBs with less problems than those using the deployment tool...

  • Deploying applications developed using Jdeveloper in IBM Web Sphere

    Hi
    I want to deploy the applications developed using jdeveloper on IBM Web Sphere. Pl suggest me the procedure
    Thanks
    Satya

    Refer
    Websphere 5.1 and ADF/UIX
    Websphere 5.1 and ADF/UIX

  • Error while deploying application that uses  adobe forms

    Hi ,
    When i deploy an a web dynpro application that uses web dynpro I receive the following error .Please assist
    java.net.UnknownHostException: pwdf3102
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:153)
    at java.net.Socket.connect(Socket.java:452)
    at java.net.Socket.connect(Socket.java:402)
    at java.net.Socket.<init>(Socket.java:309)
    at java.net.Socket.<init>(Socket.java:124)

    Hi Amit
    As per Subject of ur post u told ur using Adobe forms in ur Web Dynpro Application so Hope u insured that Ur WAS is 7.0 ie  2004s or if its 6.4 then u have got Adobe document services deployed on Was and some configuration required are done on WAS  else your Application wont run and also u must make sure that u do not forget to set PdfSource property of Adobe forms set to BINARY context element before u deploy ur application
    Regards
    ASIF

Maybe you are looking for

  • XSLT Exception

    Hello,   I am creating a XSLT Mapping ( ABAP Engine). I have created my tranformation, its getting executed successfully when I test it in SE80. Now when I am using the same transformation in the Integration Repository I am getting the below error. A

  • Firefox 3.6.12 is painfully slow

    Running Windows XP home edition on Asus netbook. All add-ons are disabled except for McAfee site advisor. IE is working with great response time, so it's not FiOS. I am running Firefox 3.6.12. It's been like this since the last update. Please, I need

  • Tutorial: Azure Active Directory integration with Igloo Software

    Click reply and tell us what you think: Tutorial: Azure Active Directory integration with Igloo Software Markus Vilcinskas, Knowledge Engineer, Microsoft Corporation

  • Where to buy plastic caps for AC adapter plug?

    I like the plastic caps that pop onto the connectors that plug directly into an iBook/Powerbook jack. I'll probably lose 'em, and I'd like to get replacement caps in bulk quantity (even a purchase of 100+ caps might be acceptable to me - I lose 'em T

  • Leading Zero's

    Hi All,    I am facing the problem with leading zeros.I am getting the  value for the field ZZMATNR is '00000000000000000000000000000000000000000000000000358934'.But user is expecting the value '0358934'. I used the function module 'CONVERSION_EXIT_A