[Forum FAQ] How to deploy applications remotely

In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
1. Using PowerShell to install
We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
(Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
In same method, we can use the following command to deploy .exe application:
(Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
Note: The applications should use Windows Installer technology.
2. PsExec tool: one of sysinternals utilities
PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
Note: we can also use PsExec tool to install Microsoft Update file (.msu)
psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
3. Group Policy Software Installation
In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
You can get the installation information of group policy software installation in event viewer, including success or failure.
4. System Center Configuration Manger
The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
is a comprehensive suit for deployment.
How to Deploy Applications in Configuration Manager
http://technet.microsoft.com/en-us/library/gg682082.aspx
Summary:
There are a lot of methods for software deployment, here just introduce some generic ways.
Here is another important point of software deployment: Some applications do not use windows installer technology. 
Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
some techniques for automation.
Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

In some situations, we may need some ways to install applications remotely, here we summarize four general ways to deploy applications.
1. Using PowerShell to install
We can use the Win32_Product class to install Windows Installer packages, remotely or locally, so in this way, we can use powerShell command to invoke this function. For example, to install the NewPackage.msi package located in the network
share \\AppServ\remote on the remote computer PC01, type the following command at the Windows PowerShell prompt:
(Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Product"}).Install(\\AppSrv\remote\NewPackage.msi)
In same method, we can use the following command to deploy .exe application:
(Get-WMIObject -ComputerName PC01 -List | Where-Object -FilterScript {$_.Name -eq "Win32_Process"}).Create(\\AppSrv\remote\NewPackage.exe)
Note: The applications should use Windows Installer technology.
2. PsExec tool: one of sysinternals utilities
PsExec's most powerful uses include launching interactive command-prompts on remote systems and remote-enabling tools like IpConfig that otherwise do not have the ability to show information about remote systems. So, we can use this feature to install our
applications, in fact this is similar with PowerShell methods, the only difference is that PsExec is a comprehensive tool. Similarly, we can use the following command to achieve our goal:
psexec \\PC01  cmd /c  "\\AppSrv\remote\NewPackage.msi" /quiet /norestart
Note: we can also use PsExec tool to install Microsoft Update file (.msu)
psexec \\PC01  -s -h -d wusa.exe  "\\AppSrv\remote\NewPackage.msu" /quiet /norestart
3. Group Policy Software Installation
In domain environment, this method is very useful to deploy our software. It only supports MSI package for deployment.
We can choose assign a program to user or computer. If you assign the program to a user, it is installed when the user logs on to the computer. When the user first runs the program, the installation is completed. If you assign the program to a computer,
it is installed when the computer starts, and it is available to all users who log on to the computer. When a user first runs the program, the installation is completed.
You can get the installation information of group policy software installation in event viewer, including success or failure.
4. System Center Configuration Manger
The Microsoft System Center Configuration Manager software distribution feature provides a set of tools and resources that help you create and manage packages and advertisements used to distribute software to client resources within your enterprise. This
is a comprehensive suit for deployment.
How to Deploy Applications in Configuration Manager
http://technet.microsoft.com/en-us/library/gg682082.aspx
Summary:
There are a lot of methods for software deployment, here just introduce some generic ways.
Here is another important point of software deployment: Some applications do not use windows installer technology. 
Applications that do not use Windows Installer technology may have application-specific methods for automated deployment. For example, a .exe file may be just a wrapper, it can be anything. To determine whether there is a method for deployment automation,
check the documentation for the application or consult the application vendor's support system. In some cases, even if the application vendor did not specifically design the application for installation automation, the installer software manufacturer may have
some techniques for automation.
Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

Similar Messages

  • ADF Mobile Client: How to deploy application data to blackberry simulator

    Hiiiii
    If anybody knows how to deploy application data to blackberry simulator then let me know.
    I have developed one small application then i have published data and deployed appliction but when i run it on simulator it gives me following exception
    Exception in Application.InitializePackages : oracle.adfnmc.AdfNmcException
    [oracle.adfnmc.bindings.dbf.InitializeBindingContextVisitor.visit(BC4JDataControl)]null
    One more question when we publish the data that time only it is copyed to MOBILEADMIN (Oracle Mobile Server Repository) schema or we need to do it manually.
    Thanks in advance.

    Try searching following file
    BB_ADFNMC_Bindings
    and all files with BB_ADFNMC_*
    these are approx 10 files , copy all of them into simulator folder inside RESERCH IN MOTION folder
    or load these through simultor->File->Load Blackberry Application .
    I hope it should help :)

  • [Forum FAQ] How to install and configure Windows Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely

    As we all know,
    the Windows Server Essentials Experience role is available in Windows Server 2012 R2 Standard and Windows Server 2012 R2 Datacenter. We can add the Windows Server
    Essentials Experience role in Server Manager or via Windows PowerShell.
    In this article, we introduce the steps to install and configure Windows
    Server Essentials Experience role on Windows Server 2012 R2 Standard via PowerShell locally and remotely. For better analyze, we divide this article into two parts.
    Before installing the Windows Server Essentials Experience Role, please use
    Get-WindowsFeature
    PowerShell cmdlet to ensure the Windows Server Essentials Experience (ServerEssentialsRole) is available. (Figure 1)
    Figure 1.
    Part 1: Install Windows Server Essentials Experience role locally
    Add Windows Server Essentials Experience role
    Run Windows PowerShell as administrator, then type
    Add-WindowsFeature ServerEssentialsRole cmdlet to install Windows Server Essentials Experience role. (Figure 2)
    Figure 2.
    Note: It is necessary to configure Windows Server Essentials Experience (Post-deployment Configuration). Otherwise, you will encounter following issue when opening Dashboard.
    (Figure 3)
    Figure 3.
      2. Configure Windows Server Essentials Experience role
    (1)  In an existing domain environment
    Firstly, please join the Windows Server 2012 R2 Standard computer to the existing domain through the path:
    Control Panel\System\Change Settings\”Change…”\Member of. (Figure 4)
    Figure 4.
    After that, please install Windows Server Essentials Experience role as original description. After installation completed, please use the following command to configure Windows
    Server Essentials:
    Start-WssConfigurationService –Credential <Your Credential>
    Note: The type of
    Your Credential should be as: Domain-Name\Domain-User-Account.
    You must be a member of the Enterprise Admin group and Domain Admin group in Active Directory when using the command above to configure Windows Server Essentials. (Figure 5)
    Figure 5.
    Next, you can type the password for the domain account. (Figure 6)
    Figure 6.
    After setting the credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 7)
    Figure 7.
    By the way, you can use
    Get-WssConfigurationStatus
    PowerShell cmdlet to
    get the status of the configuration of Windows Server Essentials. Specify the
    ShowProgress parameter to view a progress indicator. (Figure 8)
    Figure 8.
    (2) In a non-domain environment
    Open PowerShell (Run as Administrator) on the Windows Server 2012 R2 Standard and type following PowerShell cmdlets: (Figure 9)
    Start-WssConfigurationService -CompanyName "xxx" -DNSName "xxx" -NetBiosName "xxx" -ComputerName "xxx” –NewAdminCredential $cred
    Figure 9.
    After you type the commands above and click Enter, you can create a new administrator credential. (Figure 10)
    After creating the new administrator credential, please type “Y” to continue to configure Windows Server Essentials. (Figure 11)
    After a reboot, all the configurations will be completed and you can open the Windows Server Essentials Dashboard without any errors. (Figure 12)
    Figure 12.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Part 2: Install and configure Windows Server Essentials Experience role remotely
    In an existing domain environment
    In an existing domain environment, please use following command to provide credential and then add Server Essentials Role: (Figure 13)
    Add-WindowsFeature -Name ServerEssentialsRole
    -ComputerName xxx -Credential DomainName\DomainAccount
    Figure 13.
    After you enter the credential, it will start install Windows Server Essentials role on your computer. (Figure 14)
    Figure 14.
    After the installation completes, it will return the result as below:
    Figure 15.
    Next, please use the
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with a remote computer. You can use the commands below:
    Enter-PSSession –ComputerName
    xxx –Credential DomainName\DomainAccount (Figure 16)
    Figure 16.
    Then, please configure Server Essentials Role via
    Add-WssConfigurationService cmdlet and it also needs to provide correct credential. (Figure 17)
    Figure 17.
    After your credential is accepted, it will update and prepare your server. (Figure 18)
    Figure 18.
    After that, please type “Y” to continue to configure Windows Server Essentials. (Figure 19)
    Figure 19.
    2. In a non-domain environment
    In my test environment, I set up two computers running Windows Server 2012 R2 Standard and use Server1 as a target computer. The IP addresses for the two computers are as
    below:
    Sevrer1: 192.168.1.54
    Server2: 192.168.1.53
    Run
    Enable-PSRemoting –Force on Server1. (Figure 20)
    Figure 20.
    Since there is no existing domain, it is necessary to add the target computer (Server1) to a TrustedHosts list (maintained by WinRM) on Server 2. We can use following command
    to
    add the TrustedHosts entry:
    Set-Item WSMan:\localhost\Client\TrustedHosts IP-Address
    (Figure 21)
    Figure 21.
    Next, we can use
    Enter-PSSession
    cmdlet and provide the correct credential to start an interactive session with the remote computer. (Figure 22)
    Figure 22.
    After that, you can install Windows Server Essentials Experience Role remotely via Add-WindowsFeature ServerEssentialsRole cmdlet. (Figure 23)
    Figure 23.
    From figure 24, we can see that the installation is completed.
    Figure 24.
    Then you can use
    Start-WssConfigurationService cmdlet to configure Essentials Role and follow the steps in the first part (configure Windows Server Essentials Experience in a non-domain environment) as the steps would be the same.
    The figure below shows the status of Windows Server Essentials.
    Figure
    25.
    Finally, we have successfully configured Windows Server Essentials on Server1. (Figure 26)
    Figure 26.
    More information:
    [Forum
    FAQ] Introduce Windows Powershell Remoting
    Windows Server Essentials Setup Cmdlets
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

  • How to deploy application created in SAP MI 7.1 on Mobile Device.

    Hi Friends,
    I have developed a m employee application in SAP MI 7.1 through Netweaver Developer Studio running succesfully on mobile simulater.
    I have also successfuly Installed SAP MI Client 7.1 on my mobile device.
    Now I am struggling with how to deploy my application on mobile device.
    Is there any way that I can simply copy the working project files from developer studio and paste them in Mobile Device to make the application work on mobile device as well.
    or is there any other method to do this .
    Please Suggest.
    Regards
    Nitesh.

    <pre>
    Hi Amit
    Firstly I created the
    1. Employee_sc Service in the Service Explorer
    2. Employee_UI in the handheld UI explorer.<
    3. Emplyee_app in the 'Applicaton Explorer' where I included both the service and the UI together.
    Then I deployed all three in the default Mi location and tested in the simulater . It works fine in simulater.
    In the First View of my application I am not displaying any data from the DOE.
    In the first View I just have the butons to create, search and delete employee details.
    In my whole application I am not using any data objects from the backend. The dataobjects are creted in the frontend (NWDS) only.
    Now Instead of AWT I Installed JSP Container. It is now Showing The employee application.
    But as soon as I click the application it gives the execption.
    Error: 500
    Location: /me/startInternal Servlet Error:<br>
    java.lang.NullPointerException at com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.wdlite.framework.Start.isResponsible() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.findFramework() at <br>com.sap.tc.mobile.cfs.framework.spi.FrameworkManager.startApplication() at <br>com.sap.tc.mobile.cfs.jspui.MainServlet.LaunchApplication() at com.sap.tc.mobile.cfs.jspui.MainServlet.doHandleEvent() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGetThreadSafe() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doGet() at com.sap.tc.mobile.cfs.jspui.MainServlet.doGet() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.doPost() at com.sap.tc.mobile.cfs.jspui.MainServlet.doPost() at <br>com.sap.ip.me.api.runtime.jsp.AbstractMEHttpServlet.service() at javax.servlet.http.HttpServlet.service() at <br>org.apache.tomcat.core.ServletWrapper.doService() at org.apache.tomcat.core.Handler.service() at <br>org.apache.tomcat.core.ServletWrapper.service() at org.apache.tomcat.core.ContextManager.internalService() at <br>org.apache.tomcat.core.ContextManager.service() at <br>org.apache.tomcat.service.http.HttpConnectionHandler.processConnection() at <br>org.apache.tomcat.service.TcpWorkerThread.runIt() at org.apache.tomcat.util.ThreadPool$ControlRunnable.run() at <br>java.lang.Thread.run()
    <br>The contents of Jscout File are :-
    NSIcom Ltd., CrEme(tm)
    CrE-ME J2ME(tm)
    CrE-ME V4.12h B162.221008 22-Oct-2008
      MemoryLimit=64000Kb
    EBCI(TM) Interpreter V1.00,
    Copyright 1998-2002 by Bytecodes, Inc.
    java.io.IOException: SysCall : bind() failed
         at java.net.PlainSocketImpl.bind()
         at java.net.ServerSocket.<init>()
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    java.lang.IllegalArgumentException: SysCall : bind() failed
         at com.sap.tc.mobile.cfs.console.MgmtConsole.initialize()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.startManagementConsole()
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    Error starting the framework
    java.lang.reflect.InvocationTargetException: java.lang.IllegalStateException: Cannot initialize framework
         at com.sap.tc.mobile.cfs.init.FrameworkInitializer.init()
         at com.sap.tc.mobile.cfs.startup.pda.Startup.main()
    CrEme jsPexit() called with status=1
    Please Suggest.
    Regards,
    Nitesh
    </pre>
    Edited by: Nitesh Harit on Nov 24, 2009 1:30 PM

  • How to Deploying Application Which consists .jpr project file in JDeveloper

    Hi,
    I Successfully compiled my application in JDeveloper 11g, My Project consists of .jpr file which loads all the source files. I added this .jpr file to New Application by creating a .jws in JDeveloper.
    When I run my application, I am getting the Deployment Error, How to deploy a project which consists of .jpr as project file in JDeveloper 11g.
    The Same was running in Oracle JDeveloper 10.3.3 version perfectly there the Server was OC4J but Here the Server is WebLogic.
    can anyone help me out in solving this,
    Thanks
    Srinivas Reddy P.
    Edited by: user10952409 on Mar 31, 2009 7:17 AM

    If the exampleClass1 does have a public method which is called from the main method, when you run it from the command line
    should work like this
    // sample class
    public class ExampleClass1
        // C'tor
        public ExampleClass1 ()
        public void testmethodWith3Params(String aS1, String aS2, String aS3)
            // do the work here
        public static void main(String[] args)
            String p1;
            String p3;
            String p3;
            ExampleClass1 xyz = new ExampleClass1();
            // read the params into p1,p2 and p3
            // omited the code
           // call the worker method
           xyz.testmethodWith3Params(p1,p2,p3);
    // now instead to call the main method you call the workter methos from your web app like
    ExampleClass1 aaa = new ExampleClass1 ();
    aaa.testmethodWith3Params(param1, param2,param3);
    ...If you don't have a method (or don't know it) you can call it via the main method like
    String [] param= {p1,p2,p3};
    ExampleClass1.main(param);Timo

  • Exception while deploying Application Remotely

    Hello Everybody,
    I am facing an exception while doing remote deployment from Windows box to WL server on Solaris box.
    Please look into the attached error and let me know your suggestions.
    *[wldeploy] javax.naming.NameNotFoundException: Unable to resolve 'RspDataSource'. Resolved ''; remaining name 'RspDataSource'*
    Your help is appreciated….
    Thanks in advance,
    Prasad Charyulu.
    deploy:
    [wldeploy] weblogic.Deployer -debug -remote -verbose -upload -noexit -name rsp_act_bundle8 -source E:\Workspaces\build\Deploy\dist\rsp_act.ear -targets rspadmin -adminurl t3://Myserver.org:8006 -user weblogic -password ******** -deploy
    [wldeploy] weblogic.Deployer invoked with options: -debug -remote -verbose -upload -noexit -name rsp_act_bundle8 -source E:\Workspaces\build\Deploy\dist\rsp_act.ear -targets rspadmin -adminurl t3://Myserver.org:8006 -user weblogic -deploy
    [wldeploy] [WebLogicDeploymentManagerImpl.&lt;init>():103] : Constructing DeploymentManager for J2EE version V1_4 deployments
    [wldeploy] [WebLogicDeploymentManagerImpl.getNewConnection():146] : Connecting to admin server at Myserver.org:8006, as user weblogic
    [wldeploy] [ServerConnectionImpl.getEnvironment():288] : setting environment
    [wldeploy] [ServerConnectionImpl.getEnvironment():291] : getting context using t3://Myserver.org:8006
    [wldeploy] [ServerConnectionImpl.getMBeanServer():239] : Connecting to MBeanServer at service:jmx:t3://Myserver.org:8006/jndi/weblogic.management.mbeanservers.domainruntime
    [wldeploy] [ServerConnectionImpl.getMBeanServer():239] : Connecting to MBeanServer at service:jmx:t3://Myserver.org:8006/jndi/weblogic.management.mbeanservers.runtime
    [wldeploy] [DomainManager.resetDomain():36] : Getting new domain
    [wldeploy] [DomainManager.resetDomain():39] : Using pending domain: true
    [wldeploy] [MBeanCache.addNotificationListener():96] : Adding notification listener for weblogic.deploy.api.spi.deploy.mbeans.TargetCache@1bb9a58
    [wldeploy] [MBeanCache.addNotificationListener():103] : Added notification listener for weblogic.deploy.api.spi.deploy.mbeans.TargetCache@1bb9a58
    [wldeploy] [MBeanCache.addNotificationListener():96] : Adding notification listener for weblogic.deploy.api.spi.deploy.mbeans.ModuleCache@1f0aecc
    [wldeploy] [MBeanCache.addNotificationListener():103] : Added notification listener for weblogic.deploy.api.spi.deploy.mbeans.ModuleCache@1f0aecc
    [wldeploy] [ServerConnectionImpl.initialize():171] : Connected to WLS domain: rspdomain06
    [wldeploy] [ServerConnectionImpl.setRemote():482] : Running in remote mode
    [wldeploy] [ServerConnectionImpl.init():161] : Initializing ServerConnection : [email protected]f12
    [wldeploy] [BasicOperation.dumpTmids():689] : Incoming tmids:
    [wldeploy] [BasicOperation.dumpTmids():691] : {Target=rspadmin, WebLogicTargetType=server, Name=rsp_act_bundle8}, targeted=true
    [wldeploy] [BasicOperation.deriveAppName():140] : appname established as: rsp_act_bundle8
    [wldeploy] &lt;Aug 27, 2009 2:25:32 PM PDT> &lt;Info> &lt;J2EE Deployment SPI> &lt;BEA-260121> &lt;Initiating deploy operation for application, rsp_act_bundle8 [archive: E:\Workspaces\build\Deploy\dist\rsp_act.ear], to rspadmin .>
    [wldeploy] [ServerConnectionImpl.upload():658] : Uploaded app to /opt/bea/wls10_3/user_projects/domains/rspdomain06/servers/rspadmin/upload/rsp_act_bundle8
    [wldeploy] [BasicOperation.dumpTmids():689] : Incoming tmids:
    [wldeploy] [BasicOperation.dumpTmids():691] : {Target=rspadmin, WebLogicTargetType=server, Name=rsp_act_bundle8}, targeted=true
    [wldeploy] [BasicOperation.loadGeneralOptions():606] : Delete Files:false
    [wldeploy] Timeout :3600000
    [wldeploy] Targets:
    [wldeploy] rspadmin
    [wldeploy] ModuleTargets={}
    [wldeploy] SubModuleTargets={}
    [wldeploy] }
    [wldeploy] Files:
    [wldeploy] null
    [wldeploy] Deployment Plan: null
    [wldeploy] App root: \opt\bea\wls10_3\user_projects\domains\rspdomain06\servers\rspadmin\upload\rsp_act_bundle8
    [wldeploy] App config: \opt\bea\wls10_3\user_projects\domains\rspdomain06\servers\rspadmin\upload\rsp_act_bundle8\plan
    [wldeploy] Deployment Options: {isRetireGracefully=true,isGracefulProductionToAdmin=false,isGracefulIgnoreSessions=false,rmiGracePeriod=-1,retireTimeoutSecs=-1,undeployAllVersions=false,archiveVersion=null,planVersion=null,isLibrary=false,libSpecVersion=null,libImplVersion=null,stageMode=null,clusterTimeout=3600000,altDD=null,altWlsDD=null,name=rsp_act_bundle8,securityModel=null,securityValidationEnabled=false,versionIdentifier=null,isTestMode=false,forceUndeployTimeout=0,defaultSubmoduleTargets=true,timeout=0deploymentPrincipalName=null}
    [wldeploy]
    [wldeploy] [BasicOperation.execute():423] : Initiating deploy operation for app, rsp_act_bundle8, on targets:
    [wldeploy] [BasicOperation.execute():425] : rspadmin
    [wldeploy] Task 42 initiated: [Deployer:149026]deploy application rsp_act_bundle8 on rspadmin.
    [wldeploy] dumping Exception stack
    [wldeploy] Task 42 failed: [Deployer:149026]deploy application rsp_act_bundle8 on rspadmin.
    [wldeploy] Target state: deploy failed on Server rspadmin
    [wldeploy] javax.naming.NameNotFoundException: Unable to resolve 'RspDataSource'. Resolved ''; remaining name 'RspDataSource'
    [wldeploy]      at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
    [wldeploy]      at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:252)
    [wldeploy]      at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:182)
    [wldeploy]      at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
    [wldeploy]      at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
    [wldeploy]      at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:380)
    [wldeploy]      at javax.naming.InitialContext.lookup(InitialContext.java:392)
    [wldeploy]      at org.springframework.jndi.JndiTemplate$1.doInContext(JndiTemplate.java:132)
    [wldeploy] Target Assignments:
    [wldeploy] + rsp_act_bundle8 rspadmin
    [wldeploy] weblogic.deploy.api.tools.deployer.DeployerException: Task 42 failed: [Deployer:149026]deploy application rsp_act_bundle8 on rspadmin.
    [wldeploy] Target state: deploy failed on Server rspadmin
    [wldeploy] javax.naming.NameNotFoundException: Unable to resolve 'RspDataSource'. Resolved ''; remaining name 'RspDataSource'
    [wldeploy]      at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
    [wldeploy]      at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:252)
    [wldeploy]      at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:182)
    [wldeploy]      at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
    [wldeploy]      at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
    [wldeploy]      at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:380)
    [wldeploy]      at javax.naming.InitialContext.lookup(InitialContext.java:392)
    [wldeploy]      at org.springframework.jndi.JndiTemplate$1.doInContext(JndiTemplate.java:132)
    [wldeploy]      at org.springframework.jndi.JndiTemplate.execute(JndiTemplate.java:88)
    [wldeploy]      at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:130)
    [wldeploy]      at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:155)
    [wldeploy]      at org.springframework.jndi.JndiLocatorSupport.lookup(JndiLocatorSupport.java:95)
    BUILD FAILED
    E:\Workspaces\build\Deploy\build.xml:16: weblogic.Deployer$DeployerException: weblogic.deploy.api.tools.deployer.DeployerException: Task 42 failed: [Deployer:149026]deploy application rsp_act_bundle8 on rspadmin.
    Target state: deploy failed on Server rspadmin
    javax.naming.NameNotFoundException: Unable to resolve 'RspDataSource'. Resolved ''; remaining name 'RspDataSource'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1139)
         at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:252)
         at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:182)
         at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:206)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:380)
         at javax.naming.InitialContext.lookup(InitialContext.java:392)
         at org.springframework.jndi.JndiTemplate$1.doInContext(JndiTemplate.java:132)
         at org.springframework.jndi.JndiTemplate.execute(JndiTemplate.java:88)
         at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:130)
    Edited by: user4068647 on Aug 27, 2009 5:04 PM
    Edited by: user4068647 on Aug 27, 2009 5:05 PM

    Hi David,
    I greatly appreciate your details.
    I have verified that and they looks fine. Let me give you some background.
    The Weblogic server is properly configured on my Sun Solaris box. I am successfully able to deploy applications (.ear files), when I do it from the same machine.
    But, I am getting the above mentioned issue only when I try to deploy same .ear file remotely; I mean deployment triggered from Windows 2003 server (target machine is Sun Solaris).
    Please give your pointers and help me.
    Regards,
    Gopal.

  • [Forum FAQ] How to display an image from Http response in Reporting Services?

    Question:
    There is a kind of scenario that users want to display an image which is from URL. In Reporting Services, if the URL points to an image file, we can directly display it by typing the URL in embedded image. However, some URLs are just sending Http requests
    to server side, then redirect to another position and the server will return the image. For these kind of URLs, Reporting Services can’t directly render the image from Http response.
    Answer:
    To achieve this goal, we can add custom code into the report. Pass the URL as argument into our custom function so that we can create HttpRequest and get the HttpResponse. Then we can use custom function to return the Bytes() from the HttpResponse and render
    it into an image in report.
    Ps: In Reporting Services, it only support drawing Bytes() array into image, so we need to have our custom function return Bytes array.
    Add the assembly and custom code into the report.
    Public shared Function GetImageFromByte(Byval URL as String) As byte() 
                    Dim photo as System.Drawing.Image 
             Dim Request As System.Net.HttpWebRequest 
           Dim Response As System.Net.HttpWebResponse 
                  Request = System.Net.WebRequest.Create(URL)         
                     Response = CType(Request.GetResponse, System.Net.WebResponse) 
                 If Request.HaveResponse Then  
                      If Response.StatusCode = Net.HttpStatusCode.OK Then                    
                           photo = System.Drawing.Image.FromStream(Response.GetResponseStream) 
                     End If 
                 End If 
                  Dim ms AS System.IO.MemoryStream = new System.IO.MemoryStream() 
                 photo.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg) 
                    Dim imagedata as byte()  
                    imagedata = ms.GetBuffer()  
                    return imagedata
    End Function
    Grant the permission for assemblies. 
    Go to: 
    C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\RSpreviewPolicy.config 
    C:\Program Files\Microsoft SQL Server\MSSQL\Reporting Services\ReportServer\rssrvpolicy.config
    Give “FullTrust” for Report_Expressions_Default_Permissions.
    Insert an image into report. 
    Expression:
    =Code.GetImageFromByte("https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSrVwPoAtlcA2A3KaiAJi-XjS4icr1QUnKYr7uzpX3IL3g2GPisAQ")
    The Result looks below:
    Applies to:
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    >
    Hi, I'd like to display a dynamic image from the web inside a JLabel or any other swing component it could work in. I've been looking on the Swing tutorials and others forums, all I can have is that a JLabel can load an Icon object, defined by an image URL, but can this URL be like "http://xxxxx/image.jpg" somehow or can it only be a local image URL?>
    I do not know why you start talking about an image on the web then go on to show concerns about whether it will work for a 'local' URL.
    But perhaps this answer will cover the possibilities.
    So long as you can from an URL to the image, and the bytes are available for download (e.g. some web sites wrap a direct call to an image in HTML that embeds the image), the URL based icon constructors will successfully load it.
    It does not matter if that URL points to
    - a web site,
    - a local server ('localhost'),
    - an URL representation of a File on the local file system, or
    - it is inside a Jar file that is on the application's run-time classpath.
    How you go about forming a valid URL to a 'local resources' (or indeed what you regard as local resources) is another matter, depending on the form of the project, and how the resources are stored (see list above).
    Probably the main reason that examples use images at a hard coded URL on the net is that it makes an 'image example' self contained. As soon as we compile and run it, we can see the result. I have posted a few examples like that on these forums.
    Edit 1:
    BTW - Welcome to the Sun forums
    Edited by: AndrewThompson64 on Apr 21, 2009 12:15 PM

  • How To Deploy Application In Oracle Application Server

    Hi All,
    We have devloped an application in whic we have used tomcat server .
    Now we want to deploy that application in Oracle application server.
    technolgy used: J2ee
    : Shark work flowserver
    database:Oracle(XE)
    Platform: windows XP
    IDE:Eclipse (ganymede)
    Web server:tomcat(6.0)
    Thnaks and regards,
    DK.

    I think you put the questionin the wrong forum, this is all about Oracle SOA Technology, and deployment is a task within SOA.
    I have created a deployment guide/tool for Oracle SOA products (see my blog, includes java deployment).
    Put your question in :
    Oracle Application Server - General (AS General Forum)
    Marc
    http://orasoa.blogspot.com

  • How to deploy Application in JDeveloper?

    hai
    i am using JDeveloper 10g version 10.1.3. i am working on Web Application[JSF,ADF BC].i create 2 JSPpages link with one another and do some operations on it. how can i deploy this application in another system.(for example the another person in another system is able to see my application)
    how to do this
    thanks in advance
    C.R

    You mean another network? If you are on the same network you can just use the URL of the embedded OC4J or App. Server.
    Ronald

  • How to deploy application as a single unit

    Hi
    I have an application in jdeveloper that contains several bpel projects , some esb projects and some pure java based web service projects. Now i want a mechanism to deploy this whole application as a single unit on a production environment server. I know obant tool but problem is that it can deploy a single project and not a whole application. Any pointers on that how i can achieve this task?
    Thanks.

    Thanks ashish, with your help i am able to deploy several bpel projects at one go.
    But i am facing problem with auto esb deployments using ant build. As suggested by you i downloaded documentation.zip and executed steps given in it.
    When i run ant , it shows build successful but when i goto esb console nothing comes up(ie esb projects is not getting deployed).
    Here is my ESBMetadataMigrationTaskdefs.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - The import of this ant build file, by another ant build file, enables the
    - use of the custom ant tasks present in ESBMetadataMigration.jar
    - Doug Gschwind
    - 12 Dec 2006
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <project name="ESBMetadataMigrationTaskdefs">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES, Subject to the installation environment
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <property name="commons.httpclient.home" value="C:/ForEsbAutoDeploy/commons-httpclient-3.1"/>
    <property name="jaxb.v2.0.2.home" value="C:/ForEsbAutoDeploy/jaxb-ri-20060801"/>
    <property name="soa.suite.home" value="C:/product/10.1.3.1/BSNLEAIAS"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Custom ant task definitions, to enable import.
    - This section should be treated as immutable upon installation.
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <dirname property="imported.basedir" file="${ant.file.ESBMetadataMigrationTaskdefs}"/>
    <echo>
    imported basedir is:: ${imported.basedir}
    </echo>
    <taskdef resource="oracle/tip/esb/client/anttasks/antlib.xml">
    <classpath>
    <pathelement location="${imported.basedir}/ESBMetadataMigration.jar"/>
    <pathelement location="${commons.httpclient.home}/commons-httpclient-3.1.jar"/>
    <pathelement location="${soa.suite.home}/lib/xmlparserv2.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-logging.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/commons-codec-1.3.jar"/>
    <pathelement location="${soa.suite.home}/integration/esb/lib/oraesb.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/activation.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jsr173_1.0_api.jar"/>
    <pathelement location="${jaxb.v2.0.2.home}/lib/jaxb-impl.jar"/>
    </classpath>
    </taskdef>
    </project>
    =======================================================
    Here is my build.xml::
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    <project name="ESBMetadataDeploymentTestProject" default="usage">
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - PROPERTIES
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <property name="esbProjectToDeploy" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest"/>
    <property name="deploymentPlanFilename" value="C:\Oracle\product\JDeveloper\v10.1.3.1\jdev\mywork\ESBSamples\DGTest\testDeploymentPlan.xml"/>
    -->
    <echo>Import ESBMetadataMigrationTaskdefs</echo>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - Import, to enable the custom ESB Metadata Deployment ant tasks ...
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <import file="C:/ForEsbAutoDeploy/ESBMetadataMigrationTaskdefs.xml"/>
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Deployment Automation
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="test.DeployESBProjects">
         <deployESBProjects esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8888"
    userName="oc4jadmin"
    password="welcome1">
         <esbProject directory="C:/jdevstudio10133/jdev/mywork/AppAutoAnt/ESBProject1"/>
         </deployESBProjects>
    </target>
    <!--
    <target name="test.UndeployESBEntities">
         <undeployESBEntities esbMetadataServerHostname="localhost"
              esbMetadataServerPort="8889"
    userName="oc4jadmin"
    password="oc4jadmin">
         <system guid="8D61C3F0871111DB8F2675C60E6C31C6"/>
         <serviceGroup guid="0EB5F380896111DBBFBC9530C01627AC"/>
         <service guid="0547F370841611DBBFCF2D9BF80323FA"/>
         <service guid="05458270841611DBBFCF2D9BF80323FA"/>
         <system guid="86443990871611DB8F2675C60E6C31C6"/>
         <serviceGroup guid="B90E6B70895F11DBAF1483EEF470B835"/>
         <system guid="A62C91C1841511DBBFCF2D9BF80323FA"/>
         <system guid="D9F290E1896011DBBFBC9530C01627AC"/>
         <system guid="A9B213C1895F11DBAF1483EEF470B835"/>
         </undeployESBEntities>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - TEST Metadata Promotion to different ESB Metadata Servers (environments).
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <!--
    <target name="test.ExtractESBDeploymentPlan">
    <extractESBDeploymentPlan sourceDir="${esbProjectToDeploy}" deploymentPlanFile="${deploymentPlanFilename}"/>
    </target>
    <target name="test.DeployESBSuitcase">
         <deployESBSuitcase esbMetadataServerHostname="localhost"
    esbMetadataServerPort="8889" sourceDirectory="${esbProjectToDeploy}"
    deploymentPlanFilename="${deploymentPlanFilename}"
    forcedDeployment="false"/>
    </target>
    -->
    <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - USAGE
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
    <target name="usage">
         <exec executable="ant" dir="${basedir}" vmlauncher="false">
         <arg value="-projecthelp"/>
         </exec>
    </target>
    </project>
    I guess i dont need those UndeployESBEntities target and ExtractESBDeploymentPlan target , so i have commented it. Also all the jars mentioned are correct(with versions >= mentioned in the document.).
    Thanks.
    Message was edited by:
    sameer h

  • [Forum FAQ] How to find and replace text strings in the shapes in Excel using Windows PowerShell

    Windows PowerShell is a powerful command tool and we can use it for management and operations. In this article we introduce the detailed steps to use Windows PowerShell to find and replace test string in the
    shapes in Excel Object.
    Since the Excel.Application
    is available for representing the entire Microsoft Excel application, we can invoke the relevant Properties and Methods to help us to
    interact with Excel document.
    The figure below is an excel file:
    Figure 1.
    You can use the PowerShell script below to list the text in the shapes and replace the text string to “text”:
    $text = “text1”,”text2”,”text3”,”text3”
    $Excel 
    = New-Object -ComObject Excel.Application
    $Excel.visible = $true
    $Workbook 
    = $Excel.workbooks.open("d:\shape.xlsx")      
    #Open the excel file
    $Worksheet 
    = $Workbook.Worksheets.Item("shapes")       
    #Open the worksheet named "shapes"
    $shape = $Worksheet.Shapes      
    # Get all the shapes
    $i=0      
    # This number is used to replace the text in sequence as the variable “$text”
    Foreach ($sh in $shape){
    $sh.TextFrame.Characters().text  
    # Get the textbox in the shape
    $sh.TextFrame.Characters().text = 
    $text[$i++]       
    #Change the value of the textbox in the shape one by one
    $WorkBook.Save()              
    #Save workbook in excel
    $WorkBook.Close()             
    #Close workbook in excel
    [void]$excel.quit()           
    #Quit Excel
    Before invoking the methods and properties, we can use the cmdlet “Get-Member” to list the available methods.
    Besides, we can also find the documents about these methods and properties in MSDN:
    Workbook.Worksheets Property (Excel):
    http://msdn.microsoft.com/en-us/library/office/ff835542(v=office.15).aspx
    Worksheet.Shapes Property:
    http://msdn.microsoft.com/en-us/library/office/ff821817(v=office.15).aspx
    Shape.TextFrame Property:
    http://msdn.microsoft.com/en-us/library/office/ff839162(v=office.15).aspx
    TextFrame.Characters Method (Excel):
    http://msdn.microsoft.com/en-us/library/office/ff195027(v=office.15).aspx
    Characters.Text Property (Excel):
    http://msdn.microsoft.com/en-us/library/office/ff838596(v=office.15).aspx
    After running the script above, we can see the changes in the figure below:
    Figure 2.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thank you for the information, but does this thread really need to be stuck to the top of the forum?
    If there must be a sticky, I'd rather see a link to a page on the wiki that has links to all of these ForumFAQ posts.
    EDIT: I see this is no longer stuck to the top of the forum, thank you.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • [Forum FAQ] How to use multiple field terminators in BULK INSERT or BCP command line

    Introduction
    Some people want to know if we can have multiple field terminators in BULK INSERT or BCP commands, and how to implement multiple field terminators in BULK INSERT or BCP commands.
    Solution
    For character data fields, optional terminating characters allow you to mark the end of each field in a data file with a field terminator, as well as the end of each row with a row terminator. If a terminator character occurs within the data, it is interpreted
    as a terminator, not as data, and the data after that character is interpreted and belongs to the next field or record. I have done a test, if you use BULK INSERT or BCP commands and set the multiple field terminators, you can refer to the following command.
    In Windows command line,
    bcp <Databasename.schema.tablename> out “<path>” –c –t –r –T
    For example, you can export data from the Department table with bcp command and use the comma and colon (,:) as one field terminator.
    bcp AdventureWorks.HumanResources.Department out C:\myDepartment.txt -c -t ,: -r \n –T
    The txt file as follows:
    However, if you want to bcp by using multiple field terminators the same as the following command, which will still use the last terminator defined by default.
    bcp AdventureWorks.HumanResources.Department in C:\myDepartment.txt -c -t , -r \n -t: –T
    The txt file as follows:
    When multiple field terminators means multiple fields, you use the below comma separated format,
    column1,,column2,,,column3
    In this occasion, you only separate 3 fields (column1, column2 and column3). In fact, after testing, there will be 6 fields here. That is the significance of a field terminator (comma in this case).
    Meanwhile, using BULK INSERT to import the data of the data file into the SQL table, if you specify terminator for BULK import, you can only set multiple characters as one terminator in the BULK INSERT statement.
    USE <testdatabase>;
    GO
    BULK INSERT <your table> FROM ‘<Path>’
     WITH (
    DATAFILETYPE = ' char/native/ widechar /widenative',
     FIELDTERMINATOR = ' field_terminator',
    For example, using BULK INSERT to import the data of C:\myDepartment.txt data file into the DepartmentTest table, the field terminator (,:) must be declared in the statement.
    In SQL Server Management Studio Query Editor:
    BULK INSERT AdventureWorks.HumanResources.DepartmentTest FROM ‘C:\myDepartment.txt’
     WITH (
    DATAFILETYPE = ‘char',
    FIELDTERMINATOR = ‘,:’,
    The new table contains like as follows:  
    We could not declare multiple field terminators (, and :) in the Query statement,  as the following format, a duplicate error will occur.
    In SQL Server Management Studio Query Editor:
    BULK INSERT AdventureWorks.HumanResources.DepartmentTest FROM ‘C:\myDepartment.txt’
     WITH (
    DATAFILETYPE = ‘char',
    FIELDTERMINATOR = ‘,’,
    FIELDTERMINATOR = ‘:’
    However, if you want to use a data file with fewer or more fields, we can implement via setting extra field length to 0 for fewer fields or omitting or skipping more fields during the bulk copy procedure.  
    More Information
    For more information about filed terminators, you can review the following article.
    http://technet.microsoft.com/en-us/library/aa196735(v=sql.80).aspx
    http://social.technet.microsoft.com/Forums/en-US/d2fa4b1e-3bd4-4379-bc30-389202a99ae2/multiple-field-terminators-in-bulk-insert-or-bcp?forum=sqlgetsta
    http://technet.microsoft.com/en-us/library/ms191485.aspx
    http://technet.microsoft.com/en-us/library/aa173858(v=sql.80).aspx
    http://technet.microsoft.com/en-us/library/aa173842(v=sql.80).aspx
    Applies to
    SQL Server 2012
    SQL Server 2008R2
    SQL Server 2005
    SQL Server 2000
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • How to Deploy application in CE 7.1 Nwds

    Dear Friends i managed to install CE7.1 recently,
    now i selected a webdynpro perspective and created a simple application
    configured the portal appilcation server with nwds using
    Window > Preferences > SAP AS Java (gave server name and last digit of the port, in my case it is 3905 so i entered 5 in Host)
    just created a simple label"Hello World" my aim is to just deploy this apllication to the portal server just like any other simple application i was doing in nwds 7.0.9
    Now when i want to deploy this application i am not able to find
    1. Under Show View i am not able to find J2EE Engine just like previous old versions.
    2. In the Deploy View Console i can see the following things .
    Start Deployement
    Checking for SDM Host.
    Found SDM Host: srepldev
    Created Temprory copy:nwds71prj.ear................. nothing happens after this...
    the error occuring here is
    "Your system has no program registered for file
    http://srepldev:-1/webdynpro/dispatcher/sap.com/tcwdtools~admin/Explorer.
    Change the file association or choose a different help web browser in the preferences"
    srepldev is my dev. server and HOST what i gave was 5.
    Any Hints? points assured.
    Edited by: Jack on Aug 30, 2008 11:33 AM
    Edited by: Jack on Sep 2, 2008 10:17 AM

    Still i am facing this issue:
    the deployment error of the NWDS is as follows
    Deployment finished with warning
    Settings
    SDM host : epldev.house.com
    SDM port : 50418
    URL to deploy : file:/C:/DOCUME1/jsoeh/LOCALS1/Temp/temp34353company.com~helloworld.ear
    Result
    => deployment not executed : file:/C:/DOCUME1/jsoeh/LOCALS1/Temp/temp34353company.com~helloworld.ear
    Unresolved dependencies found for the following SDAs:1.: development component 'helloworld'/'company.com'/'localDevelopment'/'20091201131334'/'0'dependency: name: 'tc/aii/base/offline/facade' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/logging/api' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/exception/lib' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/wd/api' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/bl/jrfc/api' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.dependency: name: 'tc/ddic/runtime/facade' vendor: 'sap.com'
    There is no component either in SDM repository or in Deployment batch that resolves the dependency.Deployment will be aborted.
    Deployment exception : Got problems during deployment [WARNING: Dec 1, 2009 1:20:18 PM /userOut/daView_category (eclipse.UserOutLocation) [ThreadDeploy Thread,5,main]]
    Can anyone help please i am looking for this answer from a very very long time??

  • [Forum FAQ]How to upgrade Windows Server 2008 R2 with a GUI to Windows Server 2012 Server Core

    We found that some customers willing to upgrade Windows Server 2008 R2 GUI to Windows Server 2012 Server Core recently. This article provides detailed steps to perform the upgrade.
    Analysis
    Upgrading from Windows Server 2008 R2 with a GUI installation to Windows Server 2012 with Server Core directly
    is not supported. If you do that, you will receive the error message below(Figure 1) in Compatibility report: 
    Figure 1.
    In these scenario, you can upgrade to Windows Server 2012 firstly. After the upgrade process is completed, you can switch freely between Server Core and Server with a GUI modes.
    Produces
    You can follow the steps below to perform an upgrade from Windows Server 2008 R2 with a GUI installation to Windows Server 2012 Server Core mode:
    1. Upgrade to Windows Server 2012 with a GUI mode
    1) Firstly, please boot into Windows Server 2008 R2 with a Windows Server 2012 installation DVD inserted.
    2) Select the operating system you want to install with a GUI mode.
    We can see 2 options (Server Core Installation or Server with a GUI) for each operating system version. (Figure 2)
    Figure 2.
    Note: Please make sure you have enough disk space on system partition. Or you will get such an error in Compatibility report.(Figure 3)
    Figure 3.
    After the Compatibility check, the installation will continue. It will take several minutes until upgrading is done.(Figure 4)
    Figure 4.
    2. Switch the GUI mode to Server Core
    Method 1: Using Server Manager
    1) Open Server Manager, click
    Manger and select “Remove Roles and Features” to start the
    Remove Roles and Features Wizard.
    2) In Features,
    uncheck the box next to the “User Interfaces and Infrastructure” option, and then click “Next”. (Figure 5)
    Figure 5.
    Now tick the “Restart the destination Server automatically if required” box, then click “Remove”. (Figure 6)
    Figure 6.
    Method 2: Using Windows PowerShell
    There are multiple ways to remove the GUI via Windows PowerShell, we introduce the way of using the ServerManager module.
    You can also run the commands in Windows PowerShell with an administrator to remove the GUI feature:
    “Import-Module ServerManager”
    “Uninstall-Windowsfeature Server-Gui-Shell –Restart”
    or
    “Uninstall-WindowsFeature Server-Gui-Shell, Server-Gui-Mgmt-Infra –Restart”
    It will take a period of time to remove the GUI feature and reboot. When the system boots up, you will get into the Windows Server 2012 with Server Core mode. (Figure 7)
    Figure 7.
    More information:
    Switch between Full and Server Core in Windows Server 2012 using PowerShell 3.0
    http://blogs.technet.com/b/puneetvig/archive/2012/10/16/switch-between-full-and-core-in-windows-server-2012-using-powershell-3-0.aspx
    Windows Server Installation and Upgrade
    http://technet.microsoft.com/en-us/windowsserver/dn527667.aspx
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Hi,
    Brian is right, for mange the Server 2008r2 sp1 we recommend use the Windows 7 or 7.1 platform.
    More information:
    Remote Server Administration Tools for Windows 7 with Service Pack 1 (SP1)
    http://www.microsoft.com/en-us/download/details.aspx?id=7887
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • [Forum FAQ] How to convert data of date time's type stored in database to display Time Zone based on different territories?

    Introduction:
    There is a date’s type field in the database. When using the field in the report, clients want to convert the field’s values based on own Time Zone to show the date field.
    Workaround:
    Currently, Reporting Services doesn’t provide the function that can get the Time Zone of a client machine. To work around the issue, you need to add a custom code in the report to convert Time Zone and create a parameter through which the client users can
    select his/her Time Zone, and then pass the parameter value to the custom function. Please see the details as follows:
    1. Click the Report, select Report Properties and add the custom code as the screenshot shown:
    Custom code:
    Shared Function FromUTC (ByVal d As Date, ByVal tz As String) As Date
    Return (TimeZoneInfo.ConvertTimeBySystemTimeZoneId(d, TimeZoneInfo.Utc.Id, tz))
    End Function
    2. Create a parameter named TimeZone (you can name the parameter according to your requirement), select Available value and click Specify values.
    Label                                                               
    Value
    China Standard Time                                        
    China Standard Time
    Central European Time Zone                              Central European Time Zone
    India Time Zone                                               
    India Time Zone
    United States of America Time zones                   United States of America Time zones
    3. Call the custom code and type the expression to convert the Time Zone as follows:
    =Code.FromUTC(Fields!UTCDateFromDatabase.Value,Parameters!TimeZone.Value)
    Note: If you use the expression “=Code.FromUTC(Fields!UTCDateFromDatabase.Value,TimeZone.CurrentTimeZone.StandardName)”, it cannot achieve the goal because TimeZone.CurrentTimeZone.StandardName gets the TimeZone of Report Server side rather than Client side.
    More information:
    TimeZone Class
    http://msdn.microsoft.com/en-us/library/system.timezone(v=vs.110).aspx
    Applies to
    Microsoft SQL Server 2005
    Microsoft SQL Server 2008
    Microsoft SQL Server 2008 R2
    Microsoft SQL Server 2012

    Hello,
    Please read the answer provided by Kalman on the following thread:
    http://social.technet.microsoft.com/Forums/es-ES/446df85a-7ad8-4891-8748-478a26350c5c/how-to-compare-tables-in-two-different-servers-while-one-of-the-server-name-has-a-?forum=transactsql
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

Maybe you are looking for