Application is in 'Prepared' state instead of 'Active' state.

I m using below code to deploy an application on weblogic 11g
import java.io.*;
import java.util.Hashtable;
import weblogic.deploy.api.tools.*;  //SesionHelper
import weblogic.deploy.api.spi .*;  //WebLogicDeploymentManager
import javax.enterprise.deploy.spi.TargetModuleID;
import javax.enterprise.deploy.spi.status.ProgressObject;
import javax.enterprise.deploy.spi.status.DeploymentStatus;
import javax.enterprise.deploy.shared.ModuleType;
import javax.enterprise.deploy.spi.Target;
import javax.management.MBeanServerConnection;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
import javax.management.remote.JMXServiceURL;
import javax.naming.Context;
public class WeblogicTest
     public static void main(String ar[]) throws Exception
          System.out.println("Start Deploying");
          WebLogicDeploymentManager deployManager=SessionHelper.getRemoteDeploymentManager( "t3", "10.0.0.47", "7003", "weblogic",
          "weblogic123");
          System.out.println("Deploy Manager  :  " + deployManager);
          DeploymentOptions options = new DeploymentOptions();
          options.setName("TC33");          //TODO
          Target targets[] = deployManager.getTargets();
          System.out.println("Target  :  " + targets);
          Target deployTargets[]=new Target[1];     
          int temp=0;
          for (temp=0; temp < targets.length; temp++){
               if(targets[temp].getName().equals("managed_2")){
                    deployTargets[0]=targets[temp];
          ProgressObject processStatus=deployManager.distribute(deployTargets, new                
                    File("\\\\10.0.0.47\\Builds\\VertexTest\\domain1\\tc3.3b74_6.2.2011.19\\test.ear"), null,options);
          DeploymentStatus deploymentStatus=processStatus.getDeploymentStatus() ;
          System.out.println("UnDeploymentStayus.getMessage(): "+deploymentStatus.getMessage() );
System.out.println("Start sleeping");
          Thread.sleep(10000);
System.out.println("End sleeping");
          TargetModuleID[] targetModuleIDs=deployManager.getAvailableModules(ModuleType.EAR, deployTargets);
          System.out.println("\n\t targetModuleIDs [] = "+targetModuleIDs);
          for (int j=0;j<targetModuleIDs.length;j++){
               System.out.println("\n\t "+targetModuleIDs[j]);
               deployManager.start(targetModuleIDs);
               deployManager.start(targetModuleIDs);
}This code successfully deployed my application on desired managed server but my application is in 'Prepared' state instead of 'Active' state.
Currently, I have to manually update my application's state to 'Active'.
Can anybody tell me if I am missing something in my code.

It actually looks fine, but what could be the problem is the time to deploy your application and
the sleep command of ten seconds. When your sleep is finished, is your application deployment finished?
Maybe you can add a while loop using the isCompleted method of the DeploymentStatus class, for example,
ProgressObject processStatus = deployManager.distribute(deployTargets, new File("\\\\10.0.0.47\\Builds\\VertexTest\\domain1\\tc3.3b74_6.2.2011.19\\test.ear"), null,options);
DeploymentStatus deploymentStatus = processStatus.getDeploymentStatus() ;
while (!deploymentStatus.isCompleted()) {
    Thread.sleep(1000);
TargetModuleID[] targetModuleIDs = deployManager.getAvailableModules(ModuleType.EAR, deployTargets);
System.out.println(targetModuleIDs);
if (targetModuleIDs.length > 0) {
    deployManager.start(targetModuleIDs);
}Or something else along those lines.

Similar Messages

  • Active State not working in Horizontal Menu Bar

    I have a Horizontal Menu Bar.
    I've set the Top Level Item with Normal, Rollover, Mouse Down and Active States to be different. 
    All three work on the Top Level Item, EXCEPT for Active State. When the menu is Active, and I move the mouse down the items, the Top Level Item defualts to the Normal State, NOT the Active State.
    I've tried trashing the Active State and rebuilding it.  That did not work.
    I can't figure out how to get the Top Level Item in the Menu Bar to display the Active State.
    Hope someone has some suggestions, or knows if this is a bug.
    Thanks.
    Dave Coop.

    Hmmm...I've just been playing around, and I think I got the Active State to work correctly.  I think my problem was not understand what Active State means.
    To answer your question, I was changing the Font Color and Box Fill Color of the Active State.
    I did not understand that Active State means the look of the Menu Item when the PAGE is active.  I thought it meant the look of the Menu item when the cursor is scrolling down the Menu (i.e. when the MENU is Active, not the page).
    Look at this page for an example of what I'm trying to achieve...
    http://www.pgavdestinations.com
    When you hover over the "Work" menu item, and move the cursor down the menu, the state of "Work" remains changed until you move the cursor off of that menu column. It does NOT return back to it's Normal state until you are off of that menu column.
    Is there a way to achieve this with the menu states in Muse?
    Thanks for the replies!
    Dave.

  • Deployments are in Active state on Cluster but in Prepared state on server

    Hi,
    We initially deployed our application (Oracle Identity Manager 11gR2) on standalone managed server and then convert it into cluster using wlst commands.
    readDomain('/app/oracle/Middleware_OAM/user_projects/domains/oim_domain')
    setDistDestType('JRFWSAsyncJmsModule', 'UDD')
    setDistDestType('OIMJMSModule', 'UDD')
    create('oim_cluster','Cluster')
    assign('Server','oim_server1','Cluster','oim_cluster')
    updateDomain()
    The cluster is created fine and we can start the application successfully and access it. However the problem is that all the deployments are in 'Active' state only under Cluster but in prepared state under the server oim_server1 (though application access working on managed server port). Please advise where we are missing and what could be the wrong?
    Thanks

    Hi,
    1. What if you are trying to access the application page, does it come up ?
    2. Use the below wlst command to get the actual state of the deployed application:
    The deploy command returns a WLSTProgress object that you can access to check the status of the command. The WLSTProgress object is captured in a user-defined variable, in this case, progress.
    wls:/mydomain/serverConfig/Servers> progress= deploy(appName='businessApp',path='c:/myapps/business',createplan='true')
    The previous example stores the WLSTProgress object returned in a user-defined variable, in this case, progress. You can then use the progress variable to print the status of the deploy command. For example:
    wls:/mydomain/serverConfig/Servers> progress.printStatus()
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State       : completed
    Deployment Message     : null
    wls:/mydomain/serverConfig/Servers>
    3. Restart all the servers, instances, related DB and check if it helps.
    Thanks,
    Sharmela

  • DbAdapter is in prepared State- Not getting Activated.

    Hi,
    I am creating the connection pools in cluster environment. I made that DbAdapter to target to all servers in cluster. The connection pools are also getting created without any error. Updating the DBAdapter is also nt a problem. But the DbAdapter is not returning to active state it is in prepared state.
    Plan.xml is updated with the created connection pools name and also i have made this Plan.xml files to be available to all managed servers.
    All data stores are in running mode. But the status of connection pools is in suspended state. And also the connection pools are missing in the JNDI tree. Nothin is present in eis/DB folder. So what shal i do make the db adapter to be in active state. Please help me.
    Regards
    Prabhu

    Hi Prabhu,
    Which version and release are you working with? Have you checked managed server logs for any error while updating/re-deploying the DBAdapter?
    Regards,
    Anuj

  • Prepared/Active state for a Resource adatper.

    Hi All,
    I am deploying a resource adapter and as soon as the adapter is deployed, though the weblogic page shows it to be in "Prepared" state but it gets started.
    If I click on the "Start" button and the weblogic page shows it to be in "Active" state.
    What does "Prepared" and "Active" state for a resource adapter signify?
    And after this I am unable to stop the resource adatper. Clicking on the "Stop" button makes the status back to to "Prepared" but I can see the adapter still connected to the EIS.
    So how to stop a resource adapter?

    refer the links;
    http://www.dannorris.com/2009/03/12/start-database-services-automatically-after-instance-startup/
    http://surachartopun.com/2009/04/why-my-oracle-cluster-could-not-start.html
    http://surachartopun.com/2009/07/change-oracle-asm-resource-autostart.html
    http://surachartopun.com/2009/11/disableenable-automatic-startup-oracle.html
    Re: CRS auto-start
    hope this may helps you, please update the output here for future references:

  • Keep application in active state infinitely in background

    Hi all
    Now I am performing location services in iOs. Application has to saving user 's location even if it is working in background !
    I tried to use applicationDidEnterBackground but the application can keep active state (when it can save user 's location ) only in 10 minutes.
    Please advice me to solve this problem.
    Thank you very much !
    The following is my listing :
    - (void) applicationDidEnterBackground:(UIApplication *)application
        //run timer in background .
        self.bgTask= [application beginBackgroundTaskWithExpirationHandler:^{
            [application endBackgroundTask:self.bgTask];
            self.bgTask = UIBackgroundTaskInvalid;
        // Start the long-running task and return immediately.
        dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
            //startingMultitaskingTimer
            [self performSelector:@selector(TimerExecution) withObject:nil] ;
            [application endBackgroundTask:self.bgTask];
            self.bgTask = UIBackgroundTaskInvalid;
    -   (void) TimerExecution
        if(self.timer) {
            [self.timer invalidate];
            self.timer = nil;
        self.timer = [NSTimer scheduledTimerWithTimeInterval:2 target:APPDELEGATE.viewController.locationManager selector:@selector(updateTracklog)      userInfo:nil repeats:YES];
    updateTracklog is function that execute according to timer for saving coordinates .

    Hi,
    1. What if you are trying to access the application page, does it come up ?
    2. Use the below wlst command to get the actual state of the deployed application:
    The deploy command returns a WLSTProgress object that you can access to check the status of the command. The WLSTProgress object is captured in a user-defined variable, in this case, progress.
    wls:/mydomain/serverConfig/Servers> progress= deploy(appName='businessApp',path='c:/myapps/business',createplan='true')
    The previous example stores the WLSTProgress object returned in a user-defined variable, in this case, progress. You can then use the progress variable to print the status of the deploy command. For example:
    wls:/mydomain/serverConfig/Servers> progress.printStatus()
    Current Status of your Deployment:
    Deployment command type: deploy
    Deployment State       : completed
    Deployment Message     : null
    wls:/mydomain/serverConfig/Servers>
    3. Restart all the servers, instances, related DB and check if it helps.
    Thanks,
    Sharmela

  • Application stuck in prepared state on WL 10.3.3

    I'm trying to deploy my application onto a managed server in production mode on WL 10.3.3
    I can successfully deploy this application locally to my adminServer (also 10.3.3) so the problem shouldn't be in the ear file itself.
    The error I get is:
    weblogic.management.DeploymentException: [Deployer:149189]Attempt to operate 'start' on null BasicDeploymentMBean for deployment myapp.ear. Operation can not be performed until server is restarted.
    However, restarting the server has no effect. If I log into the console, I see the application is in "prepared" state and trying to "start" the application from here results in the same error.
    any suggestions would be appreciated,

    I don't find any of the log messages helpful in resolving this. The final log messages before the error and the stack trace are enclosed.
    <Module myapp.jar of application myapp.ear successfully transitioned from STATE_NEW to STATE_PREPARED on server osm_ms>
    <commit for request '1,334,252,234' will not proceed further since its requires restart flag is set>
    <Deploy of module[myapp.ear] - Complete>
    <Initiating start operation for application, myapp.ear [archive: null] to osm_ms>
    <Attempt to operate 'start' on null BasicDeploymentMBean for deployment myapp.ear. Operation cannot be performed until server is restarted.>
    weblogic.management.DeploymentException: [Deployer:149189]Attempt to operate 'start' on null BasicDeploymentMBean for deployment myapp.ear. Operation can not be performed until server is restarted.
         at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:466)
         at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:371)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:327)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
         at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
         at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    I'm not sure what the "requires restart" flag is or how this gets set. But regardless, a restart of the server doesn't change anything - it still won't start.

  • JTA transaction is not present or the transaction is not in active state

    Hi,
    I am trying to execute an asynchronous bpel process. the bpel process has 5 OSB calls and is taking approximately 100 seconds for completion. The OSB calls in the BPEL are taking 90 seconds for completion. In the end of the BPEL process, after completion I get the following error:
    [2010/07/22 01:56:44] BPEL process instance "1220007" completed
    [2010/07/22 01:56:44] There is a system exception while performing the BPEL instance, the reason is "JTA transaction is not present or the transaction is not in active state. The current JTA transaction is not present or it is not in active state when processing activity or instance "1,220,007". The reason is The execution of this instance "1220007" for process "BPELProcess1" is supposed to be in a jta transaction, but the transaction is not present or in active state, please turn on the application server transaction debug logs to get more information.. Please consult your administrator regarding this error. ". Please check the error log file for more infromation. Please try to use bpel fault handlers to catch the faults in your bpel process. If this is a system exception, please report this to your system administrator. Administrator could perform manual recovery of the instance from last non-idempotent activity or dehydration point.
    We do not want to increase the transaction-timeout properties in the server in the Transaction-manager.xml or in the orion-ejb-jar.xml since we have other projects with synchronous processes running in the same server.
    Can anybody please suggest a workaround to overcome this issue apart from increasing the transaction-timeout?

    Hi 783703,
    As Sridhar suggested for your problem you have to set transaction-time out in j2ee/home/config/transaction-manager.xml.
    If you use Idempotent as false for your partnerlinks, BPEL PM will store the status till that invoke(Proof that this invoke gets executed).
    So better to go for increasing the time instead of going for idempotent as it has some side effects.
    And coming to dehydration ....Ideally performance will be more if there are no much dehydration poitns in our process. But for some scenarios it is better to have dehydration(ex: we can know the status of the process...etc)
    Dehydration store will not get cleared after completion of the process. Here dehydration means ....it will store these dtails in tables(like Cube_instance,cube_scope...etc).
    Regards
    PavanKumar.M

  • Error Deployer BEA-149231 Unable to set the activation state to true

    Hi Friends ,
    We are using weblogic 10.3.5.0, one of the deployment module is in failed status.
    In the application logs we could see the following error
    ERROR Util: Initial Spring Application Context creation failed: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'datasource' defined in class path resource [spring.xml]: Invocation of init method failed; nested exception is javax.naming.NoPermissionException: User &lt;anonymous&gt; does not have permission on comp.env.cpt to perform lookup operation
    in the weblogic server logs we could find the follow error
    <24-Jan-2013 08:47:43 o'clock CET> <Warning> <HTTP> <BEA-101162> <User defined listener org.apache.myfaces.webapp.StartupServletContextListener failed: java.lang.ExceptionInInitializerError.java.lang.ExceptionInInitializerError
    at com.db.cpt.biz.Utilities.Util.<clinit>(Util.java:114)
    at com.db.cpt.web.listener.MyPhaseListener.<clinit>(MyPhaseListener.java:26)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    Truncated. see log file for complete stacktrace
    Caused By: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'datasource' defined in class path resource [spring.xml]: Invocati
    on of init method failed; nested exception is javax.naming.NoPermissionException: User <anonymous> does not have permission on comp.env.cpt to perform lookup operation.
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1170)
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:427)
    at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:249)
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:155)
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:246)
    Truncated. see log file for complete stacktrace
    Caused By: javax.naming.NoPermissionException: User <anonymous> does not have permission on comp.env.xxx to perform lookup operation.
    at weblogic.jndi.internal.ServerNamingNode.checkPermission(ServerNamingNode.java:443)
    at weblogic.jndi.internal.ServerNamingNode.checkLookup(ServerNamingNode.java:423)
    at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:180)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:214)
    Truncated. see log file for complete stacktrace
    >
    <24-Jan-2013 08:47:43 o'clock CET> <Error> <Deployer> <BEA-149231> <Unable to set the activation state to true for the application 'xxx'.
    weblogic.application.ModuleException:
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1510)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    Truncated. see log file for complete stacktrace
    Caused By: javax.naming.NoPermissionException: User <anonymous> does not have permission on comp.env.cpt to perform lookup operation.
    at weblogic.jndi.internal.ServerNamingNode.checkPermission(ServerNamingNode.java:443)
    at weblogic.jndi.internal.ServerNamingNode.checkLookup(ServerNamingNode.java:423)
    at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:180)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:214)
    Truncated. see log file for complete stacktrace
    Can you please advise us how can we resolve this issue which with i am struggling
    Raja

    Kumar,
    thanks for the update.
    we fixed the issue,
    for a particular user we didnt add his membership in a group in security realm, we added the user to a particular group, and then restarted weblogic, and deployed the module, and then status of deployment becomes successful.
    Raja

  • Creating an "active" state for a button

    I am creating a page with six buttons that need to have an
    active state when clicked, ie., the button currently clicked needs
    to change colors to signify that it has been selected. Then it
    needs to change back to its original color when another button is
    clicked. Please help!! I am relatively inexperienced with coding so
    any extra clarity in explaining is appreciated.
    Thanks in advance!
    I had originally posted this topic in the 'site design'
    section, but it seems no one can be bothered to answer this one.
    Please Help Me Out!

    A workaround I like is using movieclips instead of buttons.
    With actionscript they can act like buttons without being a button.
    Just make a moviclip with keyframes, each frame being a different
    button state.
    Ex:
    frame 1 - button off
    frame 2 - button on
    frame 3 - buton active
    sample AS attached to frame:
    button1.onPress = function(){
    button1.gotoAndStop(3); //makes button 1 active
    button2.gotoAndStop(1); //makes button 2 go to off state
    button3.gotoAndStop(1); //makes button 3 go to off state
    button1.onMouseOver = function(){
    button1.gotoAndStop(2);
    button1.onMouseOut = function(){
    gotoAndStop(1);
    My syntax may not be 100% correct, but the theory is there to
    help you figure it out.

  • Active States

    Hi there,
    I was just wondering if it is at all possible to create panels or boxes in my "Adobe Muse" that can instead of being linked to a new page can be linked to another larger box that gives the viewer more in depth information regarding the topic they would like to view.
    The best I could think of is maybe making each box as part of a menu, with the information tabs being activated as an active state of the parent box. I am just wondering how I would go about this without having to make new pages or links?
    Is it possible? Any suggestions?
    My client wants me to use as little amount of pages as possible, so this is a good idea for me.
    Kind regards,
    Adobe muse user

    Hello,
    I would suggest you to use Tooltip widget. you can find it at following location in the screenshot below.
    You can edit the triggers as per your requirement an it will open a popup box where you can update the information.
    Regadrs
    Vivek

  • A top level menu item should display its active state if any of its submenu items are active

    Example case: I'm designing a Muse site which is basically a portfolio of our work. We design books, doing page layout and covers. We have numerous book categories and sub categories which I put in a horizontal menu. When a given top level category menu item doesn't have a submenu, it is a hyperlink and it displays active state when the browser displays its linked page. But when a given page is displayed from a submenu link, its top level menu item does NOT display active state. I think it should.
    For example, we have a "Nostalgia" category which has "Film" and "TV" subcategories. Because the menu item, "Nostalgia" has a submenu containing "Film" and "TV", the label "Nostalgia" is not a hyperlink. The submenu attached to it has the two hyperlinked items "Film" and "TV". When the browser is displaying either linked page, the submenu is hidden. So it would be nice if the top level item, "Nostalgia" would display in an active state.

    Hello Daniel,
    As of now this feature is not there in Adobe Muse.
    I would suggest you to please log this as a feature request in our "Ideas for features in Adobe Muse" section. (http://forums.adobe.com/community/muse/ideas)
    Hope this helps.
    Regards,
    Sachin

  • Why assertion instead of if statement ?  Which is better to use ?

    Why assertion instead of if statement ? Which is better to use ?

    Never assertion instead of if statement. The two have fundamentally different intents. Using assert to control program flow is a bad idea

  • Active state not working in scrolling site (with anchor links)

    I'm design a scrolling site with anchor links and an horizontal menu on the top.
    when i publish the site and click on the menu buttons the site scrolling to the place of the anchor but the active state in the menu is not working.
    now... when i leave the main page (were the scrolling site is) and then return back to it all active states are working perfectly
    anyone have this bug? or any one know how to fix it ?

    Hmmm...I've just been playing around, and I think I got the Active State to work correctly.  I think my problem was not understand what Active State means.
    To answer your question, I was changing the Font Color and Box Fill Color of the Active State.
    I did not understand that Active State means the look of the Menu Item when the PAGE is active.  I thought it meant the look of the Menu item when the cursor is scrolling down the Menu (i.e. when the MENU is Active, not the page).
    Look at this page for an example of what I'm trying to achieve...
    http://www.pgavdestinations.com
    When you hover over the "Work" menu item, and move the cursor down the menu, the state of "Work" remains changed until you move the cursor off of that menu column. It does NOT return back to it's Normal state until you are off of that menu column.
    Is there a way to achieve this with the menu states in Muse?
    Thanks for the replies!
    Dave.

  • Most of the triggers in my composition are not showing there active state

    I have a composition with 18 triggers.
    Each trigger has a b/w image that should turn to a colour image when active or rolled over but only the two on the 3rd row work correctly.
    The others do change when rolled over but when I roll off, even when still active they go back to their normal state.
    Also when the composition plays through only the same two triggers will show the correct active state whilst active.
    http://boastassociates08.businesscatalyst.com/projects.html
    this happens in all methods of preview.
    i have checked and all triggers have the correct images on each state.
    Thanks

    I figured it out. all trigger also have a link to another page on the site, all but two anyway.
    so the triggers states are reacting as if it is just a link rather than it being a trigger in a composition.
    does somebody know  a way that will allow me to have the triggers states react the way i want and for the triggers to act as a link?

Maybe you are looking for

  • What dvd/writer drives will boot on a b&w

    Running panther 10.3.9/512Meg/G4 450 . I want to boot to install dvds(tiger), I tried my nec, it reads fine but will not boot, what is the rom set for?

  • Error Installing FIM Reporting in FIM 2010 R2 with SP1 - SCSM 2012 [CheckFIMWebSiteorSolutionPackExisting]

    I am running into the below issue. I am installing FIM 2010 R2 SP1 Reporting with SCSM 2012 [SCSM successfully installed]. FIM R2 Reporting installation is failing with both Wizard and Command line. Command line captures below error: Can some one hel

  • Authentication problem (401) using ReportExecutionService

    Hi I want to encapsulate the SSRS authentication process to provide access to external users, so I'm using SSRS web service. My ASP.NET code use System.Net.NetworkCredential with a valid user in the SSRS server, but when executing the code, a prompt

  • Email Portfolio Missing Date Information

    I am trying to create an Email portfolio using Acrobat 9.0 Professional.  The Send Date and Receive Date on the email in Outlook are different, because the emails have been restored from an archive system. The Send Date is the original email Date.  T

  • Vibrance level not recording in action in CS5

    I'm trying to record an action in which I set the vibrance level.  After creating a new action I add a vibrance adjustment layer and set the slider to "70".  I stop the action and when I run it I get the layer added, but the vibrance level is set to