. PLX file on the application server

Hello

We are on the way to migrate a Forms 6i Application, that works very well at the moment. While preparing / test a novelty. Environment. We found that forms still has a problem in overwhelming one. Library PLX. Forms has the same problem with. MMX and. FMX, but which can be resolved through the definition of the parameter FORMS_MMAP. But with. It does not help PLX.
Today, we can live with this restriction, because we have created a work-a-round with a form in advance that does not use any what Lib and that form can download the new versions of the. PLX.
But now things are changing...
Think ACE runs a few users (or 100 of them), and when at a certain moment I want to deploy a new. PLX,
What is then?
The idea only I found so far on the internet of #ve was a recommendation from Oracle to have a second 'environment' / 'Forms-directory' and copy the new version of that place and change the environment to use the new location.
This sound is a little ridiculous to me.
Is really the only way?

Thanks for all the answers,

Mark

Mark,

It would be far better to be part of the production time before putting new versions of executables in a production environment - makes sense! However, having said this downtime may not be an option in some cases. However, you're talking about FORMS_MMAP and the problem here is that the information I have is that this setting does not have the form files plx (see NOTE 208566.1 if you have access to metalink).

This, this being said, the only option I see should have two area when you switch between the two by setting FORMS_PATH in the envFile accordingly. Of course, any user accessing already the previous file plx will do until they start a new session of forms.

Hope it will be useful.

Kind regards

Patel sunny.

Tags: Oracle Development

Similar Questions

  • Webutil - deleting files from the application server

    Is there a Webutil function that will erase the files from the application server?

    I tried Webutil_file. Delete_File but it doesn't seem to work. Not quite sure if it's for customer files?

    Thank you
    Paul

    Hello
    Why don't you use HOST or WEBUTIL_HOST command to delete files of APPLICATION SERVER for example...

    HOST('DEL FILEPATH\FILENAME.EXT');
    or
    HOST('CMD /C DEL FILEPATH\FILENAME.EXT');
    
    or 
    
    WEBUTIL_HOST('DEL FILEPATH\FILENAME.EXT');
    or
    WEBUTIL_HOST('CMD /C DEL FILEPATH\FILENAME.EXT');
    

    Function Webutil_File works on the client side. See the documentation for webutil.
    http://www.Oracle.com/webapps/online-help/forms/10G/State?navSetId=_&Navid=3&vtTopicFile=web_util/functions.htm&vtTopicId=

    -Clément

    Published by: Graham on April 20, 2010 20:07
    Link added

  • webutil read file function finds the file on the application server

    Hello

    I want to select and read a file (possibly .pdf) and save it to the database.

    To achieve this, I:

    1) created a table, deltia (key primary aa, varchar2, blob, other columns... image_blob, filename)

    (2) created a block form of database based on the deltia table. The element of the "image_blob" column type is image

    and the image format is "tiff".

    (3) wrote the following piece of code to perform the selection of local file (successfully)

    Select the FUNCTION (i_FileFiltre IN Varchar2 default vDefFileExt)

    RETURN VARCHAR2

    IS

    vPath Varchar2 (128);

    vFileName Varchar2 (256);

    vFileFiltre Varchar2 (200): = i_FileFiltre;

    Begin

    vPath: = CLIENT_WIN_API_ENVIRONMENT. Get_Temp_Directory;

    vFileName: = WEBUTIL_FILE. FILE_OPEN_DIALOG

    (

    vPath,

    '',

    vFileFiltre,

    "Select the file to download.

    ) ;

    Return vFileName;

    END selection;

    The form above function call is:

    Declare

    vFileName Varchar2 (200);

    Begin

    vFileName: = PKG_File_Ops.Selection;

    If vFileName is not null then

    : eq_deltia_metakinhshs. Filename: = vFileName;

    End if;

    End;

    (4) wrote the piece of code to the game/place the file selected in the form element "image_blob", as following:

    client_image.read_image_file (: eq_deltia_metakinhshs.filename,)

    substr (: eq_deltia_metakinhshs.filename, instr (: eq_deltia_metakinhshs.filename,-1)).

    "eq_deltia_metakinhshs.deltio_image");

    The call to the packaged procedure client_image.read_image_file does not work. It returns error

    "47109 - cannot locate the/u01/oracle/temp /... image file"

    In other words, the system will search to read the selected file locally on the server App.

    What can be the cause of this?

    With regard to the content of the webutil.cfg of the App Server. :

    # ---------------------------------------------------------------------------

    # webutil.cfg - WebUtil default configuration file

    # ---------------------------------------------------------------------------

    # This file contains all the configuration settings for webutil. These are some

    # divided according to the following sections:

    # 1. Logging options

    # 2. Installation options

    # 3. Upload a file and download Options

    # 1. Logging options side server for recording the log messages and errors

    # You must set logging.enabled to true to allow registration of mid-range. Without this

    logging of mid-range # will not be any PL/SQL or URL options

    # are provided to turn it on. Once recording is activated the other settings are

    # in-game.

    #

    # Details

    # -------

    # logging.file: sets the file name and location of the log file.

    # Note that WebUtil does no management of the log file. You can

    # need to manually clean this file at any time.

    # logging.enabled: can be TRUE or FALSE

    # logging.errorsonly: can be TRUE or FALSE. Parameter True will ensure that

    # only errors and the normal information log messages

    # are written to the log file. It would be for the use of the product,

    # normally be set to TRUE

    # logging.connections: can be TRUE or FALSE. Setting to true causes each

    connection from a client using WebUtil for write in #.

    # the log that it puts in place.

    Logging.file =

    Logging.Enabled = False

    Logging.ErrorsOnly = false

    Logging.Connections = false

    # 2. Installation options

    # WebUtil needs to download files on the client to perform

    # some operations such as OLE integration or access to the registry. These files

    # are downloaded on the client when webutil is run for the first time.

    # Subsequent executions will use the dll in the cache. Define the location of the

    # These files on the server and the location on the client.

    #

    # Here's a chart that shows numeric constants and their meanings. They

    # are used in configurations of installation options. These constants are defined

    # in WEBUTIL_CORE package spec. Note that the Processor Architecture of the Client operating system

    # is generally the architecture of the JAVA virtual machine that runs on the client,

    # not necessarily even the real client architecture of BONE.

    #

    # < Os - > Client OS family < arch - > processor for the Client operating system Architecture

    # 0-0 - 32-bit Windows

    # 1 Linux 1-64-bit architecture

    # 2 SOLARIS

    # 3 HP

    # 4 AIX

    # 5 mac

    # 9 unknown

    #

    # < Package > - package name

    # 7 WEBUTIL_OLE2

    # 9 WEBUTIL_C_API

    # We do not yet have downloads for other packages. If you need, refer

    # Spec package WEBUTIL_CORE for constants of other packages

    #

    # Details

    # -------

    # NOTE: For all < arch > parameters field is optional. Without this field, the

    # setting will apply to the client 32-bit and 64-bit OS (FMV)

    architectures of #.

    #

    # install.syslib.location. < os >. < arch >:

    # The virtual path of the directory containing the webutil library files the

    server-side of #. This must be an absolute URL or a relative URL

    # for the documentbase.

    # NOTE: < os > field is optional for this parameter. In the absence of a framework

    # which has the client OS and ARCH, it will use

    # install.syslib.location. < arch > cannot be specified if < os > is omitted.

    #

    # install.syslib.location.client. < os >. < arch >:

    # The path to the directory on the client machine where the webutil library

    # files will be downloaded. This must be an absolute path or a path

    # which is the profile of the client user or at HOME. Directory will be created

    # If necessary as well as other parent directories. If the path is

    # do not set, it will be treated as a special case where the libraries will be

    # downloaded to the client JRE\bin (windows) or JRE/lib (unix). If this

    # Directory is changed, all libraries will be redownloaded again.

    #

    # Please keep in mind that other forms server may also have a similar

    the location of # and so libraries could be overwritten even when

    # client running webutil server of different forms. It is therefore

    # advised that the location has a subdirectory that may be unique to your

    # Server, such as the name of the host server. You could use $(SERVERHOST) in the

    # location. This string will be replaced with the actual hostname of the server

    #

    # install.syslib. < os >. < arch >. < package >. < n >:

    # The names of the libraries required for the particular webutil beans. The

    # format of it's name. size | version | showDownloadDialog. Several libraries

    # can be downloaded per package. But make sure the values < n >

    # row and start at 1 for a given operating system, arch and package together.

    install.syslib.Location=/webutil

    install.syslib.Location.0.0=/webutil/Win32

    install.syslib.Location.0.1=/webutil/Win64

    # Add/Edit the following if you want to specify a different location client

    # where syslib libraries.

    # Format:

    # install.syslib.location.client. < os >. < arch > = < location >

    \win32 install.syslib.Location.client.0.0=webutil\syslib\$ (SERVERHOST)

    \win64 install.syslib.Location.client.0.1=webutil\syslib\$ (SERVERHOST)

    # Change the size and the version if necessary, such as when the upgrade of the library.

    # Normally this is not necessary since most of these libraries are equipped

    # settle. Jacob does not however come with installation

    # Format:

    # install.syslib. < os >. < arch >. < package >. < n > = name | size | version | showDownloadDialog

    1.14.3 - install.syslib.0.0.7.1 = Jacob - x 86 DLL | 102400 | 1.14.3 | true

    1.14.3 - install.syslib.0.1.7.1 = Jacob - x 64 .dll | 117760 | 1.14.3 | true

    install.syslib.0.0.9.1 = JNIsharedstubs.dll | 45056 | 1.0: true

    install.syslib.0.1.9.1 = JNIsharedstubs.dll | 58368 | 1.0: true

    install.syslib.0.0.9.2 = d2kwut60.dll | 81920 | 1.0: true

    install.syslib.0.1.9.2 = d2kwut60.dll | 102400 | 1.0: true

    # You can also add your own libraries here, for example

    #install.syslib.0.0.user.1 = testwebutil.dll | 204872 | 1.0: true

    #install.syslib.0.0.user.1 = ffisamp.dll | 40960 | 1.0: true

    #install.syslib.0.1.user.1 = ffisamp.dll | 35328 | 1.0: true

    # 3. Download / upload options

    # For file upload and download options, you can set the default locations

    # on the server that webutil can use as a work space. Optionally, you can pass

    off # upload and download

    #

    # Details

    # -------

    # transfer.database.enabled: can be TRUE or FALSE - allows you to activate or

    # disable upload and download of data

    #                                server.

    # transfer.appsrv.enabled: can be TRUE or FALSE - allows you to activate or

    # disable the upload and download from the

    application server #.

    # transfer.appsrv.workAreaRoot: the root of the location in which can WebUtil

    # store temporary files uploaded by the client.

    # If no location is specified, application server

    # user_home/temp will be assumed.

    # This place is always readable and accessible writable

    # No matter the parameters of

    # transfer.appsrv. * are. This parameter is

    # If you need side customer

    # READ/WRITE_IMAGE_FILE procedures.

    # transfer.appsrv.accessControl:Can be TRUE or FALSE - allows you to specify

    # that loads and downloads can occur

    # the directories named in the

    # transfer.appsrv.read.n and

    entries transfer.appsrv.write.n # and their

    subdirectories #. If this parameter is set to FALSE,

    # transfers can happen anywhere.

    # transfer.appsrv.read. < n >: list of directory names that downloads can read

    #                                from.

    # transfer.appsrv.write. < n >: list of directory names that mail can write

    #                                to.

    #NOTE: by default, the file transfer is disabled by security measure

    Transfer.Database.Enabled = True

    Transfer.appsrv.Enabled = True

    transfer.appsrv.workAreaRoot =

    transfer.appsrv.accessControl = FALSE

    #List transfer.appsrv.read. < n > directories

    Transfer.appsrv.Read.1=c:\temp

    #List transfer.appsrv.write. < n > directories

    Transfer.appsrv.Write.1=c:\temp

    # 4. Others

    # Details

    # -------

    # BlockAllowHeartBeat: Continue the heart beat communication with the

    # Server when set to TRUE. By default, the value is

    # the value False. If set to False, there is no heart

    # fight mode blocking communication.

    BlockAllowHeartBeat = False

    Notes:

    The database version is 11g v.2

    Forms services version is 11g v.2

    The webutil has been installed and configured (I have done a project that requires reading a

    saved locally excel file - using webutil_ole2.)

    I didn't notice an error in the Java console.

    Thank you

    SIM

    This error indicates that your server is a unix platform: 47109-cannot locate image file/u01/oracle/temp /


    If it is correct, then your webutil.cfg is not been set correctly.  Entries for transfer.appsrv are in reference to the appsrv and not the client.  So you currently C:\temp which is a directory of Windows and not Unix.

    (2) Transfer.appsrv.Read.1 =c:\temp. It is already set.

    3) Transfer.appsrv.Write.1=c:\temp. It is already set.

  • File name of the application server in the forms

    Hi people,

    I have two sitting file on the application server and want to get the names of file of them in forms (6) where I can use the filenames for treatment, anyway I can do this?

    See you soon

    Very well!
    In the d2kwut package is a package called win_api_directory_list.
    With this you can list the names of files on the application server in your form and can
    Open it by clicking with the text-io-forms package.
    Concerning

  • Print file .rep directly on the printer, configure the application server

    Hello

    I spent several hours on this forum and unfortunately not found a solution yet so hoping someone has an idea that can help me solve this problem.

    Using forms/States of oracle 11g with a linux application server, we develop on windows machines. Printing reports using compiled .rep files.

    We have a network printer sharing (HP) that is configured on the application server, and we can print on the correct printer directly on the application server.

    Problem is when I try to print a report when executing the forms of oracle on my machine of development directly to the printer.

    I tried:

    SET_REPORT_OBJECT_PROPERTY (l_repid, report_destype, printer);

    SET_REPORT_OBJECT_PROPERTY (l_repid, report_desname, 'APPSERVER_PRINTER_NAME');

    When I put the report_desformat in 'pdf' format I can see the reports to enter the print queue, but they do not reach a 'State' order ' print file empty. "

    When I remove report_desformat, he sends in eps and as I understand it, it prints, but with bad formatting (I work remotely and run by what their colleagues say.)

    CUPS 1.4.2 reference printer queue tab.

    The report generates in the browser if I change the destype to produce and use web_show_document to display it as we usually do.


    I understand there are solutions using a java bean or involving the installation of the software on the client computer, but my employer is unwilling to go to that direction. We have only a handful of reports that require the ability to print directly to the printer.


    That someone has an idea of what the problem might be or help provide additional steps, I can take to solve problems? I have no idea how to do to configure printers, our IT Department managed this and they say, it's good so I don't know if there is a problem with what I'm doing or there was something installation related rate with this network printer.


    Thanks in advanced for any assistance!

    I have given up trying to use a report_desformat of pdf and paste it with the default value of the eps, after review, it seems pretty close match that generates pdf format and despite the fact that the queue on the application server throws a misprint even with the eps format it actually always draws for the good enough for now. Would be nice to know what happened here, but the problem has been resolved.

  • Download file from the database server, through application server.

    Nice day

    I use Jdeveloper 11.1.2.3.0.

    I have a requirement to download a file that already exists on the database server Directory. Now my current scenario is that user is connected to the application server, and the user has no direct access to the database server.  I drew a diagram of my requirement as:


    DownloadFile.png


    I get a way to do this. Please suggest.


    Best regards,

    Julien

    The session does not expire if you are streaming data from the application to the client. However, you will need to manage the data sent over the network, because it can make the very slow network if you send this amount of data at high speeds on the network and then to the customer. This connection between client and server is the biggest problem, because bandwidth is usually small. Think about downloading software by one side oracle (for example 1 GB), this takes time and is prone to errors.

    We did something similar by transferring the data from the database (in our case, it has been stored in a BLOB) on a dedicated server with a server web apache on it. Then, we send a link to the client, which then uses the link to get the special file server data.

    The advantage is that you don't have to code the transfer of huge files in the application of the adf but can already use ready to use of software (balancing bandwidth and the recovery of a broken download).

    Timo

  • A single file in my local folder of RoboHelp 10 which can be copied on the application server?

    Nice Hello Pals, (this is Vipin Nambiar in Bangalore)

    I am currently evaluating Adobe Robohelp 10 version for one of my writings of technical architecture. Requesting assistance to the earlier hedges high time below Said.

    I have completed my technical for writing internal application system and have generated and view available main (with the permission of the file -> display -> main layout.) as content, Index, Glossary and would like to be hosted on the server so that all users of this application can access these contents, Index, Glossary and act as a know-how notes to use this application.

    Is there a single file in my local folder to Adobe RoboHelp 10 which can be copied on the application server?

    (My local Adobe RoboHelp 10 folder

    (a.) subfolders called ! Language!, ! ScreenLayout!, ! SkinSubFolder!, ! SSL!

    (b) Types of files called *. ALI file, *. File of the APJ, *. Bitmap image, *. BRS file, *. Cascading Style Sheet Document, *. CPD file, *. File FPJ, *. GIF image, *. File GLO, *. H file, *. HHC file, *. File Perfect, *. HHP file, *. HTML document, *. HTT file, *. Image JPEG, *. JScript Script file, *. LDB file, *. File PPF, *. PSS file, *. RoboHelp HTML Project leader, *. SSL file, *. XML document)

    Any help here will serve me to plentious

    First of all, your username cannot be changed and it is not a good idea to have visible on any forum email addresses, unless you like to read the spam.

    This issue is addressed in the online help. When you create an output that it is generated in any folder you specify in the source schema. What is in this folder go to the server.

    If help is in! SSL! > WebHelp, so everything in this folder, including subfolders is what it takes to go to the server.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • In the Application Server error ' / '.

    What should I do?

    In the Application Server error ' / '. A network-related or specific to the instance error occurred establishing a connection to SQL Server. The server is not found or inaccessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP provider, error: 0 - no connection can be made because the target machine actively refused it.) Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and its origin in the code.

    Exception details: System.Data.SqlClient.SqlException: A network-related or instance-specific error all by establishing a connection to SQL Server. The server is not found or inaccessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: TCP provider, error: 0 - no connection could be made because the target machine actively refused it.)

    Source error:

    Line 101: Dad SqlDataAdapter = new SqlDataAdapter (SQL, con); Line 102: Dtbl DataTable = new DataTable(); Line 103: dad. Fill (dtbl); Line 104: return dtbl; Line 105 :}

    Source file: c:\HostingSpaces\almal\SiteES\Default.aspx.cs Line: 103

    Stack trace:

    [SqlException (0 x 80131904): a network-related or instance-specific error occurred establishing a connection to SQL Server.] The server is not found or inaccessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (fournisseur: fournisseur TCP, erreur: 0-aucune connexion pourrait être établie car l'ordinateur cible a activement refusée il.)] System.Data.ProviderBase.DbConnectionPool.GetConnection (DbConnection owningObject) 428 System.Data.ProviderBase.DbConnectionFactory.GetConnection (DbConnection owningConnection) + 65 System.Data.ProviderBase.DbConnectionClosed.OpenConnection (DbConnection outerConnection, DbConnectionFactory connectionFactory) + 117 System.Data.SqlClient.SqlConnection.Open () + 122 System.Data.Common.DbDataAdapter.QuietOpen (IDbConnection, ConnectionState & originalState connection) + 31 System.Data.Common.DbDataAdapter.FillInternal (DataSet dataset, DataTable [] datatables, Int32 startRecord, Int32 maxRecords, String srcTable, command IDbCommand, CommandBehavior behavior) + 112 System.Data.Common.DbDataAdapter.Fill (DataTable [] dataTables, Int32 startRecord, Int32 maxRecords, command IDbCommand, CommandBehavior behavior) + 162 System.Data.Common.DbDataAdapter.Fill (DataTable dataTable) 115 Default3.GetTableDataMy (String SQL) in c:\HostingSpaces\almal\SiteES\Default.aspx.cs:103 Default3.Page_Load (Object sender, EventArgs e) in c:\HostingSpaces\almal\SiteES\Default.aspx.cs:179 System.Web.Util.CalliHelper.EventArgFunctionCaller (fp IntPtr, Object o, object t, e As EventArgs) System.Web.Util.CalliEventHandlerDelegateProxy.Callback + 14 (Object sender, EventArgs e) + 35 System.Web.UI.Control.OnLoad (EventArgs e) + 99 System.Web.UI.Control.LoadRecursive () + 50 System.Web.UI.Page.ProcessRequestMain (Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) + 627

    Version information: Microsoft .NET Framework Version: 2.0.50727.3615; ASP.NET Version: 2.0.50727.3618

    Hello

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    https://social. .Microsoft.com/ TechNetForums/in-us/categories /.

    I hope this helps.

  • ' In the Application Server error ' / ' "error running FAMILY TREE MAKER 2011

    I used my Family Tree Maker 2011 then Microsoft packages update, now I can't access the Internet through Family Tree Maker 2011.

    I get a Run Time Error with explanations, however, I can't find the files they show:

    In the Application Server error ' / '. Runtime error Description: An application error occurred on the server. The current settings of error customized for this application prevent the details of the error in the application being viewed remotely (for security reasons). It could, however, be read by browsers running on the local server computer.

    Details: To enable the details of this error message specific either visible on remote machines, please create a tag in a "web.config" configuration file located in the root directory of the current web application. This tag should have its attribute of 'mode' on 'Off '.

    Notes: The current error page you see may be replaced by a custom error page by modifying the "defaultRedirect" of an application attribute tag configuration to point to a custom error page URL.

    Before I had a chance to dig into these files, Ancestry.com has sent me a saying Email "they were aware of the error message" and that they were working on the problem. Later in the day, I tried the program again and it worked OK  Owes posed a problem at their end.

    Thanks for the quick response.

  • Statement and analytical framework deployed on the application server has failed

    IM unable to config R & a framework while improving 11.1.2.1 to 11.1.2.3. Config is a failure while deployed to the application server.

    Here is the error msg that we receive.

    To be precise web analysis is not set up.

    [2015 08-14 T 16: 59:31.200 + 05:30] [EPMCFG] [TRACE] [EPMCFG-07561] [oracle. EPMCFG] [tid: 24] [ecid: 0000KwfxjtjD0jx6wBzW6G1LnT1s000006, 0] [SRC_CLASS: com.hyperion.config.document.Storage] Called: Storage.getLocalHostComponents (com.hyperion.hit.registry.ComponentType)("WEBANALYSIS_WEB_APP"): returned 2 component (s)
    [2015 08-14 T 16: 59:31.200 + 05:30] [EPMCFG] [ERROR] [EPMCFG-01020] [oracle. EPMCFG] [tid: 24] [ecid: 0000KwfxjtjD0jx6wBzW6G1LnT1s000006, 0] [SRC_CLASS: com.hyperion.hit.tool.deploy.ant.wrappers.ScriptTaskWrapper] error: []
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.hyperion.hit.tool.deploy.ant.wrappers.ScriptTaskWrapper.execute(ScriptTaskWrapper.java:72)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor33.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    at com.hyperion.hit.tool.deploy.ant.engine.ProjectRunner.execAtNumber(ProjectRunner.java:143)
    at com.hyperion.cis.config.AntDeploymentApiAdapter.deploy(AntDeploymentApiAdapter.java:168)
    at com.hyperion.cis.config.AppServerDeployer.deploy(AppServerDeployer.java:239)
    at com.hyperion.config.wizard.impl.RunAllTasks.executeAppDeploymentTask(RunAllTasks.java:592)
    at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:302)
    at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:92)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.NullPointerException
    in java.io.File. < init > (File.java:222)
    at com.hyperion.hit.tool.deploy.update.util.RegistryHelper.createPhysicalWebApp(RegistryHelper.java:263)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:32)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:12)
    at com.hyperion.hit.tool.deploy.update.ConfigToolRegistryUpdater.update(ConfigToolRegistryUpdater.java:34)
    at com.hyperion.hit.tool.deploy.ant.wrappers.RegistryUpdateWrapper.uptadeRegisty(RegistryUpdateWrapper.java:23)
    ... more than 22

    ]]
    [2015 08-14 T 16: 59:31.200 + 05:30] [EPMCFG] [ERROR] [EPMCFG-01020] [oracle. EPMCFG] [tid: 24] [ecid: 0000KwfxjtjD0jx6wBzW6G1LnT1s000006, 0] [SRC_CLASS: com.hyperion.cis.config.AntDeploymentApiAdapter] error: []
    E:\Oracle\Middleware\EPMSystem11R1\common\config\11.1.2.0\resources\ant-repository\build.XML:282: java.lang.IllegalStateException: java.lang.reflect.InvocationTargetException
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:116)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    at com.hyperion.hit.tool.deploy.ant.engine.ProjectRunner.execAtNumber(ProjectRunner.java:143)
    at com.hyperion.cis.config.AntDeploymentApiAdapter.deploy(AntDeploymentApiAdapter.java:168)
    at com.hyperion.cis.config.AppServerDeployer.deploy(AppServerDeployer.java:239)
    at com.hyperion.config.wizard.impl.RunAllTasks.executeAppDeploymentTask(RunAllTasks.java:592)
    at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:302)
    at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:92)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.IllegalStateException: java.lang.reflect.InvocationTargetException
    at com.hyperion.hit.tool.deploy.ant.wrappers.ScriptTaskWrapper.execute(ScriptTaskWrapper.java:76)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor33.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    ... 12 more
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.hyperion.hit.tool.deploy.ant.wrappers.ScriptTaskWrapper.execute(ScriptTaskWrapper.java:72)
    ... more than 17
    Caused by: java.lang.NullPointerException
    in java.io.File. < init > (File.java:222)
    at com.hyperion.hit.tool.deploy.update.util.RegistryHelper.createPhysicalWebApp(RegistryHelper.java:263)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:32)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:12)
    at com.hyperion.hit.tool.deploy.update.ConfigToolRegistryUpdater.update(ConfigToolRegistryUpdater.java:34)
    at com.hyperion.hit.tool.deploy.ant.wrappers.RegistryUpdateWrapper.uptadeRegisty(RegistryUpdateWrapper.java:23)
    ... more than 22
    -Nested Exception-
    java.lang.IllegalStateException: java.lang.reflect.InvocationTargetException
    at com.hyperion.hit.tool.deploy.ant.wrappers.ScriptTaskWrapper.execute(ScriptTaskWrapper.java:76)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor33.invoke (unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:106)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1337)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1306)
    at com.hyperion.hit.tool.deploy.ant.engine.ProjectRunner.execAtNumber(ProjectRunner.java:143)
    at com.hyperion.cis.config.AntDeploymentApiAdapter.deploy(AntDeploymentApiAdapter.java:168)
    at com.hyperion.cis.config.AppServerDeployer.deploy(AppServerDeployer.java:239)
    at com.hyperion.config.wizard.impl.RunAllTasks.executeAppDeploymentTask(RunAllTasks.java:592)
    at com.hyperion.config.wizard.impl.RunAllTasks.execute(RunAllTasks.java:302)
    at com.hyperion.config.wizard.impl.RunnAllTasksState.run(RunnAllTasksState.java:92)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.hyperion.hit.tool.deploy.ant.wrappers.ScriptTaskWrapper.execute(ScriptTaskWrapper.java:72)
    ... more than 17
    Caused by: java.lang.NullPointerException
    in java.io.File. < init > (File.java:222)
    at com.hyperion.hit.tool.deploy.update.util.RegistryHelper.createPhysicalWebApp(RegistryHelper.java:263)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:32)
    at com.hyperion.hit.tool.deploy.update.RegistryUpdater.update(RegistryUpdater.java:12)
    at com.hyperion.hit.tool.deploy.update.ConfigToolRegistryUpdater.update(ConfigToolRegistryUpdater.java:34)
    at com.hyperion.hit.tool.deploy.ant.wrappers.RegistryUpdateWrapper.uptadeRegisty(RegistryUpdateWrapper.java:23)
    ... more than 22

    ]]
    [2015 08-14 T 16: 59:31.200 + 05:30] [EPMCFG] [TRACE] [EPMCFG-01001] [oracle. EPMCFG] [tid: 24] [ecid: 0000KwfxjtjD0jx6wBzW6G1LnT1s000006, 0] [SRC_CLASS: com.hyperion.hit.tool.deploy.ant.model.utils.TimeReportUtil] trace: all deployment: 01 min 53 s

    There was a duplicate for web analytics registry entry. I checked in the deployment report, then deleted using the object_id. It was not detected by the registry cleanup utility

  • How to call static pages using web.show_document on the application server

    Hi all.

    I'm using forms / reports 11 g Rel2.

    I´d like to call it a few static pages of forms using web.show_document and have the pages located on the same machine where the application server is running.

    I know it's more a problem of Oracle HTTP Server configuration, but I want to know if I can use one of the default virtual directories already defined on the installation process.

    Please recommend a virtual directory to use.

    Best regards, Luis... :))

    Sure. You can store the files anywhere you want. Of course, it is easy to create a new virtual directory. But if you want to use an existing one, the most obvious likely would be the virtual path of/forms/html that can be found here:

    INSTANCE_HOME\config\FormsComponent\forms\html

    The url to access it would look something like this:

    http://server:port/forms/HTML/myWebPage.htm

  • PIA - the application server is down

    Hello

    Get the error:

    The application server is down at the moment. CHECK THE LOGS OF APPSERVER. THE SITE STARTED WITH THE INTERNAL DEFAULT SETTINGS...

    I checked the positions which have been previously by our users, but have had no luck!

    8,53 PT with ELM 9.1 - wins 2008, sql 2008, everything runs on a single server.

    AppServer is in place and I can connect via the application designer. No errors in the log, even no error when I run startPIA.cmd

    the site URL is http://oracleELM/psp/ps etc. no not required in the URL port number

    .Properties configuration has the following entry

    psserver = OracleELM:9000

    There is no entry assperver, is this correct?

    Settings for the domain
    WSL port: 7000
    JSL Port: 9000

    Thanks for your help!

    One more thing that may be incorrect is the password for the PTWEBSERVER in the configuration.properties file.

    During the installation of the database that you need to provide the password for PTWEBSERVER.

    During the installation of the PIA, you also had to provide the PTWEBSERVER user and the password.

    These two must match.

  • Deploy to the Application Server is not on a distributed environment

    Hi all

    I try to configure the new verion Hyperion 11.1.2.2 on distributed environment, but during the configuration of the calculation to the failed server application manager and get error message like "deploy for Application Server has failed." I don't know what is the problem and how to fix it. I tried to read the log files, but I am not able to undersantd where to watch and to debug this issue.

    My Hyperion environment view as one below: -.

    1. I used Microsoft VMWARE to build my Enviornment Hyperion
    2 - I created 1 Server 2003 domain window and 4 clients in this domain. (All these systems have windows 2003 server is installed). I have the name given to each client server i.e. system A system B, System C system D
    3. I installed SQL 2005 and created data bases for all components of Hyperion that is Shared services, Manager of calculation, epma on a system
    5. I have installed and configured the services foundation and weblogic server on a system b. (in this system, I have installed and configured the SSP, weblogic, workspace and able to deployed application server on the same system)
    6. on a system, I am able to complete installation for hyperion Performance Management architect and Manager of calculation and be able to complete all the type of configuration for these two, but as soon as the system tries to configure all associated with the SERVER APPLICATION services that it fails to configure. On a configuration system summary page shows everything is configured, but APPLICATION SERVER says FAILED written on a red colored letters.

    I explored the log files and found that calculation Manager server application doesn't have to be deployed or to be deployed on the application server is not...

    Since then, I don't know where to look and how to debug this issue, I ask all friends of hyperion to help and guide me to debug as I tried to install this product since last Friday and still no out put...

    I'll be really grateful if someone sharing his wisdom to help me...

    Thanks to all in advance...

    Thank you
    Safi

    Have you installed on the machine of the Foundation as well as the machine that they will be deployed in all web applications on WebLogic.

    "On the computer on which you will administer the WebLogic Server, you must install all of the Web applications for all applications that you plan to deploy on any machine in the environment. (The Administration WebLogic Server is installed and deployed on computer Services Foundation) »

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • starts the application server

    Hello
    in tools 8.52 in 2008, in which file should I register the domain name to start the application server automatically restart when?
    He was psntsrv.cfg in PS_HOME/appserv 8.49.
    Thank you.

    start the PSADMIN and choose the option
    (6) Service configuration
    and then
    (1) configure Windows Service
    Provide the name of CRP, the appserver you want to start automatically as a service

    In the Administration of PeopleSoft Services menu option
    (2) install the Windows Service
    This will create a new service, in my case
    PeopleSoft_C__apps_psoft_config

    Kind regards

    Halin

  • Issue by starting the application server.

    I installed Tux 8.1 under windows 2003 on PT 8.48.16.

    Whenver I'm trying to start the application server I m getting the error message below.

    I had tried all the possible solution given on the support site, but no luck.

    Beside that, I also get a pop-up images that say ' an unhandeled win32 exception occurred in tmadmin.exe [3004]. "


    Can you please give advice about this.


    ==========
    Error: -.

    073656.DCB - STG-APP3! tmloadcf.4048.1592.-2: 24/04/2012: Tuxedo Version 8.1, 32-bit

    073656.DCB - STG-APP3! tmloadcf.4048.1592.-2: CMDTUX_CAT:879: INFO: a new file system is created. (size = 1120 blocks of 512 bytes)

    073658.DCB - STG-APP3! tmloadcf.4048.1592.-2: CMDTUX_CAT:871: INFO: E:\psoft\PT848\appserv\CRPROD\PSTUXCFG TUXCONFIG file was created

    073705.DCB - STG-APP3! PSADMIN.3964: Attempt to Begin on field CRPROD

    073717.DCB - STG-APP3! tmboot.3744.864.-2: 24/04/2012: Tuxedo Version 8.1, 32-bit

    073717.DCB - STG-APP3! tmboot.3744.864.-2: LIBTUX_CAT:681: ERROR: failed to create the message queue

    073717.DCB - STG-APP3! tmboot.3744.864.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: cannot create the queue

    073717.DCB - STG-APP3! PSADMIN.3964: Attempt to end boot on domain CRPROD

    If you are using a terminal server server, make sure that you connect to the console on the server session (using mstsc/console or mstsc/Admin, depending on your windows version of the client).

    Kind regards
    Bob

Maybe you are looking for