Development environment and admin console

Hi,
I'm setting up a development environment for about 20 developers working
on 5 or 6 projects.
Is it possible to give each particular project leader access to the
console without system privileges.
It should be allow to start and stop one, and only one, particular WL6.1
server for its project purpose.
The other option is to provide each group a domain with its own admin
server but in that case we (sysadmin) loose control of the servers.
Is there any typical configuration for that purpose ?
Thanks
Philippe Peeters

A quick [url http://www.google.com/search?hl=en&q=%5Bsunm%5D%5BSQLServer+JDBC+Driver%5DThis+driver+is+locked+for+use+with+embedded+applications.&btnG=Google+Search&meta=]google on your error message shows the issue is with your JDBC driver.
A workaround is specified [url http://blogs.sun.com/roller/page/david?entry=creator_sun_java_system_application] here 

Similar Messages

  • Weblogic 10, WLST and Admin Console Classpath Exceptions

    I've been deploying an application to Weblogic 10 (not 10.3 from Oracle, the last version under the BEA logo) for a few weeks now without a problem. We're going to upgrade to 10.3 from Oracle in our development environment and play around with that hopefully today but I can't imagine a dot-version being much different so I figured I'd post the issue anyway.
    Recently, we've been having some issues with the WLST script we use to deploy/redeploy the application. It seems to have just started happening randomly which is odd because the script has not been modified since the get-go. What's happening is the application is compiled, staged and then the WLST script kicks off, log into the application server, looks to see if the app is already deployed, if it is, it redploys it with the latest code and then starts it up and then exits. Every now and again, the next time we go to deploy the application, the WLST fails saying that someone currently has a lock on the admin console. When we log in to the admin console, we see that the user the WLST script uses to log into the admin console currently has a lock on the console and we have the option to take the lock from this user.
    When we click the button to take the lock, we get a HUGE exception in the lefthand panel where the Lock & Edit button typically is that says something along the lines of:
    Error opening ...
    The source of this error is javax.servlet.ServletException: javax.xml.transform.TransformerFactoryConfigurationError: Provider net.sf.saxon.TransformerFactoryImpl not found at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:324) at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175) at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:528) at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:454) at org.apache.beehive.netui.pageflow.scoping.internal.ScopedRequestDispatcher.include(ScopedRequestDispatcher.java:119) at com.bea.netuix.servlets.controls.content.JspContent.beginRender(JspContent.java:551) at ...
    If I click on the 'Home' button along the upper righthand corner to go back to the home page of the admin console, the error goes away, the 'Activate Changes' button reappears, and then I click that and the Lock & Edit button reappears, then if I go back to my WLST script and run it, it runs successfully. If I log back into the admin console, everything appears normally. This happens intermittently and I'm not sure why it's happening some times and not others. If my WLST script is incorrect I would assume it would behave this way EVERY time.
    I also don't get why the xml transformer factory SOMETIMES throws the exception and sometimes it doesn't. It also happens when I try to click on a JDBC data source. Same exact exception is thrown on the default configuration tab, if I click on any of the other tabs available after clicking on my JDBC data source, those all appear fine, just the initial default Configuration > General tab shows this huge exception. If I stop and restart the application server, these exceptions magically go away...the odd thing is this exception being thrown seems to be referencing libraries made available by my deployed application (the whole net.sf.saxon.TransformerFactoryImpl class is in a library we deploy with our application). These jar files containing these libraries should ONLY be available to the deployed application, I'm not putting these files on the classpath of the application server, so why the application server's admin console have any knowledge of these libraries? Could these be mucking with the overall functionality of the admin server's behavior?
    Here is my WLST script I use the deploy the application. If you see something wrong with it, any feedback would be greatly appreciated. Any thoughts on the whole classpath of my application being used by the Weblogic Admin console would be helpful too.
    WLST Script:
    connect("merlin", "merlin595")
    # check to see if the apb data source exists and if so, make sure it's targeting the AdminServer
    try:
         # Either deploy or redeploy application
         try:
              print 'Checking for the existence of the APB application.'
              cd('/AppDeployments/apbEar')
              print 'The APB application will be redeployed.'
              progress=redeploy('apbEar')
              print 'Status of redeployment: ' + progress.getState()
         except WLSTException:
              print 'The APB application has not yet been deployed to this server, so application will be deployed for the first time now.'
              progress=deploy(appName='apbEar', path='/opt/weblogic/merlinpb/merlinpbEar/apbEar', targets='AdminServer')
              print 'Status of initial deployment: ' + progress.getState()
         # Start application
         try:
              print 'Starting APB application'
              startApplication(appName='apbEar')
         except WLSTException:
              pass
         disconnect()
         print 'End of script, exiting WLST...'
         exit()
    except WLSTException:
         print 'Could not deploy apb. Please log into the admin console and attempt the deployment manually.'
    Oh, one final thing I've noticed when I use this script. The last thing the script says WHEN it actually runs successfully is:
    <Nov 13, 2008 10:57:13 AM EST> <Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
    Why does it say that? What does that mean? Is my script mot structure correctly above?
    Any help is greatly appreciated. Thanks again!
    Rob

    Hey Mike,
    The problem I was experiencing was that we had code that was applying an XSL stylesheet against XML we are getting from the database. In order for this stylesheet to work, we had to set code that does the following:
    System.setProperty("javax.xml.transform.TransformerFactory", "net.sf.saxon.TransformerFactoryImpl");
    Now the first time this code was called, and someone subsequently went to the Weblogic admin console, the screens would be completely unreachable...we were experiencing loads of compilation errors. So I did some digging and tried various other ways to set the TransformerFactory class that wouldn't affect the system as a whole. I found, by sheer luck, the fact that you can set this parameter in the weblogic-application.xml file located in the META-INF directory of your root EAR folder. The very first element in the XML of my weblogic-application.xml file is now:
    <wls:xml>
         <wls:parser-factory>
              <wls:transformer-factory>net.sf.saxon.TransformerFactoryImpl</wls:transformer-factory>
         </wls:parser-factory>
    </wls:xml>
    I now deploy the application with this and my reports are transformed properly and the admin console and command-line WLST scripts are all working uninterrupted as well without any adverse side-effects. Hope that helps. Just an aside, in preparation for the upgrade to WLS10, I restructured our application to a split development directory structure...this structure in combination with Workshop 10 really has made development and deployment much easier.
    Best of luck. Cheers!
    Rob

  • Netlet and Admin Console

    Hello,
    I am using Secure Remote Access Portal Server 6.0
    I did the instalation of Portal Server and Secure Remote Access support on on machine.
    In another machine I did the installation of the gateway service.
    In a thir machine I did the installation of the Netlet Proxy.
    Now I would like to configure and test the Netlet component, but didn't see any reference to it in the Admin Console, under SRAP configuration.
    Any ideas,
    Sergio

    Hey Mike,
    The problem I was experiencing was that we had code that was applying an XSL stylesheet against XML we are getting from the database. In order for this stylesheet to work, we had to set code that does the following:
    System.setProperty("javax.xml.transform.TransformerFactory", "net.sf.saxon.TransformerFactoryImpl");
    Now the first time this code was called, and someone subsequently went to the Weblogic admin console, the screens would be completely unreachable...we were experiencing loads of compilation errors. So I did some digging and tried various other ways to set the TransformerFactory class that wouldn't affect the system as a whole. I found, by sheer luck, the fact that you can set this parameter in the weblogic-application.xml file located in the META-INF directory of your root EAR folder. The very first element in the XML of my weblogic-application.xml file is now:
    <wls:xml>
         <wls:parser-factory>
              <wls:transformer-factory>net.sf.saxon.TransformerFactoryImpl</wls:transformer-factory>
         </wls:parser-factory>
    </wls:xml>
    I now deploy the application with this and my reports are transformed properly and the admin console and command-line WLST scripts are all working uninterrupted as well without any adverse side-effects. Hope that helps. Just an aside, in preparation for the upgrade to WLS10, I restructured our application to a split development directory structure...this structure in combination with Workshop 10 really has made development and deployment much easier.
    Best of luck. Cheers!
    Rob

  • Troubleshooting hints - differences between development environment and release environment

    Hello,
    I am using LabVIEW 8.6 for an application involving stepper motors.  We are using 2 Velmex stepper motor systems to run PIR targets for a manufacturing test.  The problem I am having is that the program runs fine in the states where it was developed but hangs approximately every 10th run when running in the manufacturing environment in China.  Since I am on the EAst coast there is the 12 hour time delay, and I am planning on doing a live support call to find out what is going on.  The person who installed the code made some modifications, but I am not aware of the differences.  He also may send his code here and see how it runs.
    The assumption I am making (based on past experiences from here in the States) is that the stepper motor interface is hanging.  since I can't recreate the problem here I can't troubleshoot it.
    With a past prooject I was working I did some code on one machine, and when I ran it on a different machine the order of execution for items in a sequence was different between the machines.  Has anyone run into this before?  Unfortunately for the task at hand the stepper motor has to run at the same time that analog data on multiple channels are being acquired.
    Any suggestions?
    Mike
    Mike

    Thanks for the reply.  I did think about putting in a producer-consumer.  It turns out that there was a problem with the computer it was being run on.  The computer was changed and the problem got better, although it did not go away.  The stepper motor was done through a com port talking to another hardware / software solution.  The tasks are truly independent and pass no data between them.  However, the other task being run involves collecting analog data and updating on a chart (and in one instance stimulating an analog output), and when the stepper motor starts the analog data collection is not updated on the chart.  I figure this could be because the charts are a memory hog.  No data is lost, and it is running, so I figure if it's not broke don't fix it.  It now occasionally locks up. I can run it here for 100 times with zero lock ups, and the last report I got was it ran 30 times in china before locking up.  I may have to start examining differences between their machine and my machine.
    Now as to the configuration management.  It needs to be clarified a wee bit.  I'm doing the initial code development / updating, and then we hand off to china, which can make code tweaks as needed.  They also have 3 lines running this program, and one of the items I did was to load the differences between lines from configiration files (INI files), and that I got working well.  We have fixture variables, items that vary between lines, and configuration items, which are I/O lines and what not.  The digital I/O and analog I/O referenced MAX tasks, and that worked well.  There are also a com port call for the stepper motor, and in another program an RF power meter, which had to be referenced from an INI file.  I will reccomend that they do their code development on one machine and create executables to store on the production lines.  We have been bouncing code back and forth from the team members from the states that are currently in china doing the install.
    Mike
    Mike

  • Xcode download from the app store trashed by development environment and I cannot recover by downloading again

    I downloaded xcode and it trashed my development environment.
    I had previously installed an earlier version.
    My purchased apps page does not list XCODE.  However, If I go to the XCODE download page in the App, it lists it as installed.
    Any suggestions would be gratefully accepted.

    Go to your Spotlight search. (Swipe from left to right at your primary home screen.)
    Type in 'Facebook'.
    You should see your Facebook app.
    Unless you held down an app icon until it 'wiggles', then hit the black 'x' to delete it, you didn't delete the app.

  • Development environment and managed servers

    Hi,
    I am on a project with a bunch of developers each running a local copy of
    weblogic for development. We were thinking it would be nice if we could make
    each development weblogic server a managed server and administer connection
    pools, startup classes, etc from a centralized location. This way we
    wouldn't have to duplicate configuration efforts.
    The problem is each person needs to develop and compile their own build of
    the application to their local hard drive. My understanding is that in order
    for an application to be run on a managed server, the application needs to
    be deployed to that server from the admin server. Upon startup any ears,
    jars, wars, or exploded applications are transferred to the managed server
    machine from the admin server machine. So each developer would not be able
    to compile and deploy locally as they code.
    Has anyone attempted anything like this?
    Thanks in advance,
    Daniel

    Hi Daniel,
    Were you able to acomplish this task? Please let me know. I am planning to do
    the same for our development team also. Can you please let me know.
    Thanks
    "Daniel Han" <[email protected]> wrote:
    Hi,
    I am on a project with a bunch of developers each running a local copy
    of
    weblogic for development. We were thinking it would be nice if we could
    make
    each development weblogic server a managed server and administer connection
    pools, startup classes, etc from a centralized location. This way we
    wouldn't have to duplicate configuration efforts.
    The problem is each person needs to develop and compile their own build
    of
    the application to their local hard drive. My understanding is that in
    order
    for an application to be run on a managed server, the application needs
    to
    be deployed to that server from the admin server. Upon startup any ears,
    jars, wars, or exploded applications are transferred to the managed server
    machine from the admin server machine. So each developer would not be
    able
    to compile and deploy locally as they code.
    Has anyone attempted anything like this?
    Thanks in advance,
    Daniel

  • Admin Console - Admin user requires valid username and password

    I am running FMIS4.5 on CentOS5.5
    FMIS is running and I can connect via Flash Media Encoder.
    Web displays and admin console :1111 gives xml output, however
    When using the user & password in my xml files to login (testing with ping), I get the "Admin user requires valid username and password" error.
    conf/fms.ini:
    # fms.ini contains substitution variables for Flash Media Server          #
    # configuration files. Lines beginning with '#' are considered comments.  #
    # A substitution variable is in the form <name>=<value>. Everything up to #
    # the first '=' is considered the name of the substitution variable, and  #
    # everything after the first '=' is considered the substitution value. If #
    # you want a substitution variable to have leading or trailing spaces,    #
    # enclose the value around double quotes. For example, foo=" bar "        #
    # This section contains configurable parameters in Server.xml #
    # Username for server admin
    # For example:
    #    SERVER.ADMIN_USERNAME = foo
    SERVER.ADMIN_USERNAME = Admin
    SERVER.ADMIN_PASSWORD = str34m1ng
    # IP address and port Flash Media Admin Server should listen on
    # For example:
    #    SERVER.ADMINSERVER_HOSTPORT = :1111
    SERVER.ADMINSERVER_HOSTPORT = :1111
    # User id in which to run the process (Linux Only)
    # For example:
    #    SERVER.PROCESS_UID = 500
    SERVER.PROCESS_UID = 500
    # Group id in which to run the process (Linux Only)
    # For example:
    #    SERVER.PROCESS_GID = 500
    SERVER.PROCESS_GID = 500
    # License key for Flash Media Server
    # For example:
    #    SERVER.LICENSEINFO = XXXX-XXXX-XXXX-XXXX-XXXX-XXXX
    SERVER.LICENSEINFO = #SORRY YOU DON'T GET TO SEE THIS#
    # LIVE_DIR denotes the full path of sample "Live" application's
    # folder for storing any live stream recorded by server.
    # For example:
    #    LIVE_DIR = <FMS_Installation_Dir>\applications\live
    LIVE_DIR = /opt/adobe/fms/applications/live
    # VOD_COMMON_DIR denotes the full path of sample "VOD" application's
    # folder for storing onDemand and Progressive Download .flv/.mp3 files.
    # File stored in this folder can be streamed and are also PD-able.
    # Note : If you are using the default installation of Apache as a webserver,
    # and if you modify VOD_COMMON_DIR, please change the document root
    # accordingly in httpd.conf.
    # For example:
    #    VOD_COMMON_DIR = <FMS_Installation_Dir>\webroot\vod
    VOD_COMMON_DIR = /opt/adobe/fms/webroot/vod
    # VOD_DIR denotes the full path of sample "VOD" application's
    # folder for storing onDemand only .flv/.mp3 files. Files stored in
    # this folder are not PD-able
    # For example:
    #    VOD_DIR = <FMS_Installation_Dir>\applications\vod\media
    VOD_DIR = /opt/adobe/fms/applications/vod/media
    # The maximum size of the FLV cache, in megabytes.
    # The default is 500MB.
    SERVER.FLVCACHE_MAXSIZE=500
    # Whether to start and stop the included HTTP server along
    # with FMS.
    SERVER.HTTPD_ENABLED = true
    # This section contains configurable parameters in Adaptor.xml #
    # Application directory for the virtual host
    # For example:
    #    VHOST.APPSDIR = C:\myapps
    VHOST.APPSDIR = /opt/adobe/fms/applications
    VHOST.ALLOW = all
    # This section contains configurable parameters in Application.xml #
    # List of semi-colon delimited paths in which to search for script to load
    # For example:
    #    APP.JS_SCRIPTLIBPATH = C:\scripts;C:\Program Files\Foo\scripts
    APP.JS_SCRIPTLIBPATH = /opt/adobe/fms/scriptlib
    # This section contains configurable parameters in Logger.xml #
    LOGGER.LOGDIR =
    # This section contains configurable parameters in Users.xml #
    # Enable or disable using HTTP requests to execute admin commands.
    # Set to "true" to enable, otherwise it will be disabled.  The
    # actual commands permitted for server admin and virtual host admin
    # users can be set in Users.xml.
    USERS.HTTPCOMMAND_ALLOW = true
    Users.xml:
    <Root>
        <UserList>
            <!-- This tag defines an administrator for the server. -->
            <User name="${SERVER.ADMIN_USERNAME}">
                <!-- Salted Password Hash for this vhost administrator. -->
                <Password encrypt="false">${SERVER.ADMIN_PASSWORD}</Password>
                <!-- This admin can only connect to the server from the specified -->
                <!-- hosts. This is specified as a comma delimited list of        -->
                <!-- hostnames or domain names, and/or (full or partial) IP       -->
                <!-- addresses. For example,                                      -->
                <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
                <Allow>All</Allow>
                <!-- This admin cannot connect to the server from any of the      -->
                <!-- specified hosts. This is specified as a comma delimited list -->
                <!-- of hostnames or domain names, and/or (full or partial) IP    -->
                <!-- addresses. For example,                                      -->
                <!-- "foo.yourcompany.com, macromedia.com, 10.60.1.133, 10.60"    -->
                <Deny></Deny>
                <!-- Specifies the order in which to evaluate the <Allow> and     -->
                <!-- <Deny> tags. This can be "Allow,Deny" or "Deny,Allow". The   -->
                <!-- default is "Deny,Allow" which means that access is allowed   -->
                <!-- unless specified in <Deny> and not specified in <Allow>.     -->
                <Order>Allow,Deny</Order>
            </User>
            <User name="janedoe">
                    <Password encrypt="false">S4mpl3P4ss</Password>
                    <Allow></Allow>
                    <Deny></Deny>
                    <Order>Allow,Deny</Order>
            </User>
        </UserList>
        <AdminServer>
            <HTTPCommands>
                <!-- Enable or disable using HTTP requests to execute admin commands.     -->
                <!-- Set to "true" to enable, otherwise it will be disabled.  The           -->
                <!-- actual commands permitted for server admin and virtual host admin    -->
                <!-- users can be set in the Allow and Deny elements.                                   $
                <Enable>${USERS.HTTPCOMMAND_ALLOW}</Enable>
                <!-- List of server admin commands that can be accessed via HTTP.         -->
                <!-- Add multiple commands separated by commas.  "All" indicates          -->
                <!-- every command (it's not recommended to allow all commands).          -->
                <!-- Seperate multiple commands with commas.                              -->
                <Allow>ping</Allow>
                <!-- List of server admin commands denied access via HTTP.                -->
                <!-- Add multiple commands seperated by commas.  "All" indicates          -->
                <!-- every command.                                                       -->
                <Deny>All</Deny>
                <!-- Processing order for deny and allow command lists.  "Deny,Allow"     -->
                <!-- means the command will be allowed if the command is in the allow     -->
                <!-- list or not in the deny list.   "Allow,Deny" means the command       -->
                <!-- will be allowed if it is in the allow list and not in the            -->
                <!-- deny list.                                                           -->
                <Order>Deny,Allow</Order>
            </HTTPCommands>
        </AdminServer>
    </Root>
    Output on :1111/admin/ping?auser=Admin&apswd=str34m1ng :
    <result>
      <level>error</level>
         <code>NetConnection.Connect.Rejected</code>
         <description>Admin user requires valid username and password.</description>
         <timestamp>Thu 17 May 2012 11:33:43 AM EDT</timestamp>
    </result>
    Connections do not work from both localhost and external connections and the fms_adminConsole.htm (.swf) fails as well.
    Any assistance is appreciated!

    Hi,
    FMIS 4.5 does not accept plain text password. Encrypt=false is no longer supported. See here for more information : http://help.adobe.com/en_US/flashmediaserver/configadmin/WS5b3ccc516d4fbf351e63e3d119f2926 bcf-7fed.html#WS5b3ccc516d4fbf351e63e3d119f2926bcf-7e91
    The value for SERVER.ADMIN_PASSWORD needs to be the encrypted string for your password. That should solve your problem.
    Hope this helps.
    Thanks,
    Apurva

  • Trial version of SAP J2EE engine and Development environment for Windows

    Hello,
    I am looking for a trial version of the SAP J2EE Development Environment and the corresponding SAP J2EE Engine for windows environment. I looked at the link https://www.sdn.sap.com/irj/sdn/nw-downloads. But the downloads are for the Linux environment. Are there any downloads for the Windows Environment.
    Thanks for your help in advance.
    Sumit Agarwal.

    Hi Sumit,
    Currently trial versions of SAP NetWeaver 2004 and 2004s (7.0) are only available for Linux.
    Java EE development environment (the latest Java EE version - 5) trial versions for Windows are available in the [SAP NetWeaver CE download section|https://www.sdn.sap.com/irj/sdn/nw-ce-downloads].
    HTH!
    -- Vladimir

  • Nakisa Java: Development environment

    Hello,
    We are implementing TVN 2.1 (Orgchart and Succession Planning).  The applications are installed running with Java, on Netweaver CE 7.1.
    This is the first time I'm working with Nakisa on Java but have worked with the Microsoft IIS version.  I have a lot of experience with J2EE development with SAP.
    With IIS, everything was quite easy: the application IIS folder was shared on the network and I could make any modification directly on the server.
    With Java, this is not possible because the application needs to be deployed on Netweaver server, since it's not a Windows server but Unix, we can't share the application server.
    Another issue with java is that any change made via the admin console requires a server restart.   Right now, we need to contact the server admin to get it restarted.  This procedure can be very heavy when it comes to make a lot of modifications or tests.
    With Netweaver Developer Studio (NWDS), I know we can configure a J2EE server and then deploy applications and restart the server.
    Or basis person just explained us that with 7.1, it doesn't seem to be the same procedure.  SDM port doesn't seem to be open and NWDS (7.1) doesn't seem to offer the possibility to configure a J2EE server.
    My question is: Is there any document from Nakisa explaining how to setup a java development environment and how changes can be done efficiently to the application?  How can the Netweaver server be remotely restarted?
    Thanks for your feedback!
    Laurent

    XML files can be changed using the Admin Console or directly (if you know what you are doing and have decoded) and replaced in application directory.  Restart NW CE via Start & Stop of NW AS to pick up changes.
    This is also true for language customisations (custom.xml), XSLT changes, etc.
    HOWEVER, anything changing below WEB-INF directory needs a re-deployment (usually this is done via a SDA EAR file that is deployed using NWDI).  Beware, this will overwrite the application on the server (e.g. if you've created a build in Admin_Config then re-deploy a new version of application then it will overwrite Admin_Config.  In other words, take a backup of any configuration and customisation you've created before re-deploying).
    To answer your Q ... we have been using WinSCP to connect to the Linux file system.  Slightly convoluted way of doing it (you have to copy to local, edit, upload to server).  We have been given a local user to access NW AS so have been doing start/stops ourselves; doesn't take long (<5 secs).
    Regards,
    Stephen

  • Directory Server Admin Console "disappears" after logging in

    Hi,
    We are just starting to work with Directory Server 6.1, on RedHat 4. I access the server on which Directory Server is running via X. However, when I try to access the Admin Console and after logging in, the main Admin Console panel appears very briefly, and then everything, including the xterm window that I started with, disappears.
    I've tried restarting both the slapd (slapd-xxx) and admin console (start-admin), but the same thing keeps happening.
    This is the first time that I'm working with 6.1, but do I need to login/start the Admin Console a different way than before when using X?
    Thanks,
    Jim

    Hi,
    No one has responded to this thread, but for the record, one of my colleagues got it working today, and I hope that this info might help someone else someday...
    I had neglected (sorry) to mention that we're in an environment where we can't run directly as root, but instead have to use sudo.
    What I was doing earlier was ssh'ing to the server, then doing a "sudo bash", doing the "export DISPLAY=...", then running the startconsole to startup the Sun DS console.
    So, today, I was fooling around with this with one of the other guys, and instead of doing the "sudo bash", he just did the "export DISPLAY=...", and then just "sudo ./startconsole", and, voila, we got the console GUI and were able to login without it disappearing.
    I had not tried that previously, because I had thought that the "export DISPLAY=..." wouldn't have survived the sudo (I'm not that familiar with it), but I guess it does.
    I'm not 100% sure what the problem was with doing the "sudo bash", but I believe it had something to do with "who we were logged-in as".
    Maybe someone here who's more familiar with sudo, etc. and Cygwin X might be able to provide an explanation.
    Jim

  • Development environment for 10g R2

    Guys,
    I need to setup a development environment for oracle 10g r2 forms development. I am a new to oracle and due to downsizing we lost our DBAs so I am on my own and need your huge support.........
    Current settings: Oracle on the server: Oracle 10g R2
    My local client installation: 10.1.0.4.2
    Downloaded oracle developer suite from oracle: Oracle Forms: 10.1.2.0.2 (Developer suite 10.1.2.0.2)
    * Is this a correct development environment? or any incompatibility do you see with this? *
    Secondly, I heard various stuff about development environment and would like your input as well:
    * Can I develop forms application from my own desktop, running OC4j from my local machine (came with developer suite) to run and develop forms? or do i have to develop on the server where oracle is installed? *
    * Does our oracle server needs any application server (weblogic) installed or just OC4j can work on the server to run forms production? *
    Please help me to resolve my confusion so I can present the development environment to my management.....
    Thank you soo much...
    -Raj
    Edited by: user12236377 on Jan 28, 2010 10:55 AM

    Current settings: Oracle on the server: Oracle 10g R2
    My local client installation: 10.1.0.4.2
    Downloaded oracle developer suite from oracle: Oracle Forms: 10.1.2.0.2 (Developer suite 10.1.2.0.2)
    * Is this a correct development environment? or any incompatibility do you see with this? *If you want to go with Forms 10G, i would apply the latest patch set (i think its 10.1.2.3, but would suggest to consult Metalink for that)
    * Can I develop forms application from my own desktop, running OC4j from my local machine (came with developer suite) to run and develop forms? or do i have to develop on the server >where oracle is installed? *Yes, you can develop "locally" on your PC using only OC4J, but for integrationtests it might be useful to have an "test"-OAS (Oracle Application server 10.1.2)
    * Does our oracle server needs any application server (weblogic) installed or just OC4j can work on the server to run forms production? *For running 10G forms in production you will need an OAS (Oracle Application server 10.1.2), not a WebLogic-server.
    As an alternative to 10G, you could also start directly using Forms11G, which is the latest release. In this case you need a WebLogic-Server 11-installation both for development as also for production.

  • Users cannot connect BPC Excel, Admin Console except bpc_sysadmin

    Hi experts!
    We use MultiServer BPC 7.5 MS sp06 Installation
    Servers
    1. bpcweb - WEB (IIS)  on Windows 2008 R2 x 64 (in AD)
    2. bpcapp - BPC App Server on Windows 2008 R2 x 64 (in AD)
    3. bpcdb - DB/OLAP MS SQL Server 2008 R2 on Windows 2008 R2 x 64 (in AD)
    Installation on AD users and OK, Diagnostic on Server Manager - OK
    We use AD authentification and Local too.
    I have added 2 users to Admin TEAM with full rights on AppShell and on our AppSet: one user from AD another from Local AppServer
    Users can connect into BPC Web, can select AppSets and Applications.
    But when I try connect to BPC Excel or Admin Console - after I enter user login, password and domain - appear message
    "Couldn't authetificate user id or password. Back and check, that entered valid credentials" (translation from Russian).
    And when I try connect by bpc_sysadmin everything OK.
    Thank you for help
    Best regards
    Iaroslav

    Hi!
    All versions of OS, SQL, IIS, BPC and other are  the same versions on all Environments, same AD.
    Our Environmets:
    DEV - Single Server - all connections - OK
    TEST - MultiServer (1: BPC App/WEb; 2: DB/OLAP) - all connections - OK
    PROD - MultiServer (1: BPC App;2: Web;  2: DB/OLAP) - connect to Excel and Admin Console - Error
    Best regards
    Iaroslav

  • ECC 6.0 Webdynpro for ABAP development environment

    Hello,
    We are currently running ECC 5.0 and ABAP stack is only available as of ECC 6.0. Is is possible to download and install just ECC 6.0 development environment?
    Thanks,
    Alex

    The ABAP development environement and runtime are integrated into the Business Suite release.  Therefore ECC 5.0 runs on top of NetWeaver 2004 (6.40) and ECC 6.0 runs on top of NetWeaver 7.0. There is no way to directly mix ECC/NetWeaver releases nor can you directly transport NetWeaver 7.0 objects (like Web Dynpro ABAP) to a 6.40 based system since the runtime wouldn't be present. 
    You can however install a standalone NetWeaver Systems. Then you would have a separate instance with the ABAP 7.0 developement and runtime environement.  You can use RFCs and Web Service Calls from this standalone system to read and write data to/from your ECC 5.0 system.  You give up some of the benefits (like the integrated DDic value-help).

  • SAPUI5 Development Environment Installation Issues

    Hi
    I am new to this development environment and am experiencing problems installing the Eclipse environment, the way I understand it once I have installed Eclipse I need to install UI5 Team and UI5 Tools  packages, I did manage to install the UI5 tools with out to many issues but the UI5 Team will not install and appears to be missing certain components that I have not been able to find. The message I get is below;
    Cannot complete the install because one or more required items could not be found.
    Software being installed: SAPUI5 ABAP Repository Team Provider 1.6.5 (com.sap.ide.ui5.team.feature.external.feature.group 1.6.5)
    Missing requirement: SAPUI5 ABAP Repository Team Provider 1.6.5 (com.sap.ide.ui5.team.feature.external.feature.group 1.6.5) requires 'com.sap.adt.fwk.ci.feature.group 0.20.1' but it could not be found.
    Could somebody point me in the direction where I can find a step by step detailed install for Eclipse and all components needed.
    Thanks

    please have a look at this document
    How to install a basic development environment for SAPUI5
    or
    follow Installation process for SAP UI5 Tools from
    SAPUI5 Tools - User Interface Add-On for SAP NetWeaver - SAP Library

  • Setting Up Shared Development Environment

    Is there any diagrams, white papers, guides or best practices on setting up the J-Developer and connecting to shared Services and database? The Developer guide (E10148.pdf) does not really cover what the standards is or the overall infrastructure of the JDeveloper and setting up a Shared Developer enviroment.
    I looking for something like http://docs.oracle.com/cd/E25178_01/fusionapps.1111/e15524/gs_install_e.htm but for (11.1.1.6.0) version webcenter.
    I basically looking for something to help me get our Shared Development Environment setup with Jdeveloper.

    The issue is connecting the Jdeveloper to the WebCenter DS and Activity DS schemas. In the Development guide it says I need to connect to these schemas to be able to utilize several of the WebCenter Services, ( http://docs.oracle.com/cd/E21764_01/webcenter.1111/e10148/jpsdg_svc_intro.htm#BHCDJHAI - 7.2.2 Setting Up a Database Connection
    We are trying to set up the connection to our shared development environment database. Our database group is concerned with giving developers access to these schemas. They are concerned that JDeveloper will changes or modify the schema and cause the database to fail. They created a account with read only access but we are not sure it this will work.
    I been trying to find anything in the documentation to find what access JDeveloper needs to the WebCenter DS and Activity DS schemas and if JDeveloper can modify these schema in any way.
    Additionally try to find anything on the best practices on connecting to a shared database and setting up a Development environment and its connection to Jdeveloper .

Maybe you are looking for