Prompt for Directory Selection when deploying in WEB

I have created a Java code to prompt for directory selection and it works when alone. When I get the code with the JavaBean in the forms 6i application, no dialog prompt appears when clicking the "Get_directory" button. The Java code is listed below.
(A) File DDialog.java
package oracle.forms.intex;
import java.awt.*;
import javax.swing.*;
import java.beans.*;
import java.io.File;
public class DDialog extends Canvas {
private String directory_name ;
private PropertyChangeSupport pcs;
public DDialog() {
directory_name = "";
pcs = new PropertyChangeSupport(this);
public void set_directory_name() {
JFrame frame = new JFrame("Get Directory");
javax.swing.JFileChooser OpenDlg = new JFileChooser();
OpenDlg.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int returnVal=OpenDlg.showOpenDialog(frame);
String old_directory_name = directory_name;
if(returnVal == JFileChooser.APPROVE_OPTION)
File selectedFile = OpenDlg.getSelectedFile();
if (selectedFile.isDirectory())
directory_name=selectedFile.getPath();
pcs.firePropertyChange("directory_name", old_directory_name, directory_name);
public void addPropertyChangeListener(PropertyChangeListener pcl) {
pcs.addPropertyChangeListener(pcl);
public void removePropertyChangeListener(PropertyChangeListener pcl) {
pcs.removePropertyChangeListener(pcl);
public static void main(String args[]) {
new DDialog();
(B) File DDialogPJC.java
package oracle.forms.intex;
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import oracle.forms.properties.ID;
import oracle.forms.handler.IHandler;
import oracle.forms.ui.CustomEvent;
import oracle.forms.ui.VBean;
public class DDialogPJC extends VBean implements PropertyChangeListener{
private Component mComp;
private IHandler mHandler;
private static final ID SHOWDIRECTORYDIALOG = ID.registerProperty("showdirectorydialog");
private static final ID DIRECTORYNAME = ID.registerProperty("directoryvalue");
private static final ID DIRECTORYCHANGEEVENT = ID.registerProperty("directorychangeevent");
public DDialogPJC() {
super();
try{
ClassLoader cl = getClass().getClassLoader();
Object obj = Beans.instantiate(cl,"oracle.forms.intex.DDialog");
mComp = (Component)obj;
mComp.setVisible(true);
mComp.setEnabled(true);
((oracle.forms.intex.DDialog)mComp).addPropertyChangeListener(this);
// add the component to this
add("Center",mComp);
catch(Exception e){
e.printStackTrace();
public void init(IHandler handler)
super.init(handler);
mHandler = handler;
public boolean setProperty(ID pid, Object value)
if(pid ==SHOWDIRECTORYDIALOG) {
((oracle.forms.intex.DDialog)mComp).set_directory_name();
return true;
else
return super.setProperty(pid,value);
public void propertyChange(PropertyChangeEvent pce) {
String new_directory_name=(String)pce.getNewValue();
try {
mHandler.setProperty(DIRECTORYNAME, new_directory_name);
catch(Exception e) {}
CustomEvent ce = new CustomEvent(mHandler, DIRECTORYCHANGEEVENT );
dispatchCustomEvent(ce);
(C) In the form, there is the button "GET_DIRECTORY" with code in WHEN_BUTTON_PRESSED trigger.
declare
DDialog_Bean Item;
begin
DDialog_Bean:=find_item('DDIALOG_BEAN');
if not id_null(DDialog_Bean) then
set_custom_item_property(DDialog_Bean,'showdirectorydialog',1);
end if;
end;
(D) In the same form, there is the javabean area "DDIALOG_BEAN" with code in WHEN_CUSTOM_ITEM_EVENT trigger.
declare
DDialog_Bean Item;
BeanValListHdl ParamList;
paramType Number;
EventName varchar2(20);
directory_name varchar2(255);
begin
DDialog_Bean:=find_item('DDIALOG_BEAN');
BeanValListHdl:=get_parameter_list(:system.custom_item_event_parameters);
EventName:=:system.custom_item_event;
if (EventName='directorychangeevent') then
get_parameter_attr(BeanValListHdl,'directoryvalue',ParamType,directory_name);
:directory_name:=directory_name;
end if;
end;
Please advise where the problem is and fix it, much thanks.
SK

Hello there SK. actually i have same problem with you. i am only new to Forms6i. Itried your code DDialog.java and the DDialogPJC.java
Ive got an error when i compile the DDialogPJC.java using the java complier.
here is the err:
package oracle.forms.properties does not exist
package oracle.forms.handler does not exist
package oracle.forms.ui does not exist
package oracle.forms.handler does not exist
how can i solve this problem. you said that it works properly in your machine.
please help me on this, i also want to try fixing your problem, but i need this to be fixed first. thank you and more power

Similar Messages

  • Crystal Report prompts for username / pwd when deployed to Bus Obj Server

    Hi All,
    I'm relatively new to Crystal Reports development.  My day job is test analyst.  I'm reasonably technically proficient.
    PROBLEM
    I have created a number of Crytsal Reports which have now been deployed to an Enterprise Business Objects Report Server.  The Server is Business Objects Server XI release 2.
    When I run the report in Crystal Reports Desiger 2008 it does not prompt me to enter the database credentials except if I have modified the SQL command or some other report detail.  Most times I run the report, no database username / pwd is required because I already set this up in the datasource config.
    I' connecting to an Oracle database using ODBC (RDO) connection type.  I cannot get the ODBC (RDO) connection type working from my PC using Crystal Reports Designer 2008, because I don't have ODBC configured for my datasource.  Instead, Im using the native Oracle Server driver to connect to my datasource.
    An existing user in the client organisation configured my report to use the ODBC (RDO) conneciton type for me because the Business Objects Server in the client organisation does not (currently) support the native Oracle driver.  Other reports this user has created and deployed using the ODBC conenction type run successfully without prompting user to enter the database connection credentials.
    NOTE:
    This report users an SQL Command (new to Crystal 2008 I beleive?).  The command is reqiured for this report due to the complexity of the underlying SQL query.
    Does anybody know why the report keeps prompting me to enter the database credentials at runtime?  Obviously for security reasons I don't want report users to have to enter the database schema name and password in order to run the report.

    Hi,
    You need to uncheck "Propmt the user for database logon when viewing". You will find this when you deploy the report on the BOE XI R2.
    The deployment step main heading is
    Specify Databse Crendentials.
    Hope this helps,
    Thanks
    -Azhar

  • Change default schemaLocation of wsdl when deploying a web service

    Hi,
    When I deploy a web service, and then view the schemaLocation attribute of the wsdl, it points to a file with the machine name and not the url for my server. I have tried changing in config files all of the instances that point to my machine name instead of my url. This has not changed what gets set for schemaLocation when I deploy the web service. I also tried creating a new virtual server but I am unsure what value to put for the hostName. I tried my url and that did not seem to work. Does anyone have any ideas of to change the value that gets written to schemaLocation attribute when deploying a web service?
    Could anyone point me to documentation for changing a domains' hostName or in other words, the url used to access it? I know when I point my browser to my server's url instead of the machine name for the admin console, things seem to work. But then I run into problems such as above, where certain urls do not get set properly.
    If there is a way to set this when installing Sun ONE AS through the wizard, please let me know because I have not added much to my install and could reinstall the software.
    Thanks,
    Scott

    Hi disgruntled one,
    The same problem has plagued us a few times already, and I've finally found a solution that worked for me.
    Option 1 - requires redeployment of web services.
    1. In the admin console, navigate to Configuration -> HTTP service -> HTTP Listeners.
    2. Select the correct listener. In most cases this would be http-listener-1
    3. In the General Settings section, enter the correct name of your host in the Server Name field. This can be the corresponding name you have in a DNS for the host, or if you don't have a DNS entry, you can hard code it to the machine's IP address.
    4. Redeploy any web services for the changes to take effect. I've tried restarting the server but that doesn't seem to have an effect on the WSDL output.
    Option 2 - modify the generated WSDL file
    1. Look under the {you app server's path}\domains\domain1\generated\xml. You should find the generated WSDL file under this tree in their appropriate sub folders.
    2. Modify as you see fit.
    This method of course, needs to be redone for each time you redeploy the web services.
    Cheers,
    Fred

  • SDM failed when deploying a Web Dynpro application

    SDM failed when deploying a Web Dynpro application - I get the following error message:
    Sep 19, 2006 2:25:34 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : eix-blade-011
    SDM port : 50118
    URL to deploy : file:/D:/DOCUME1/AMRM1.AZI/LOCALS1/Temp/temp43621sap.comwelcome.ear
    Deployment exception : Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011
    Inner exception was :
    Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011

    Amr Azim,
    You must have logged in thru a dedicated connection to any server through say VPN before deploying.This way the sdm uses the same login as that of already establised connection.
    So 'sign of'  all connections to any servers before deploying and redeploy your application.Here you will be prompted to supply the sdm password and deployment shall proceed.

  • Problem with fonts in forms when deployed on web

    Hi everybody out there! Please help me out. My problem is:
    I have used developer server to deploy forms on web, but when a
    form is shown on web, it takes some default settings for fonts
    and colors instead of retaining the original colors and fonts
    that i chose during creating forms. I want that forms retain
    their original colors and fonts when deployed on web. How would
    i do that ?? Someone told me to check the Registry.dat file but
    i do not how to change the settings in registry.dat file. So
    help me out and tell me how would i change color and font
    settings for forms being shown on web by web app. server.
    Thanking you in anticipation,
    Cheema
    null

    Hello Neeraj!
    The problem is no resolved:) In the Visual Attribute Group I changed the Font Weight to Bold in the Property Palette.
    Thanks a lot for showing interest for my problem.
    Regards
    Roar

  • Office prompts for windows login, when i'm trying to save edited document

    Hello, i'm trying to disable webdav in office 2010.
    My setup is: Apache 2.2.4 with Kerberos "mod_auth_kerb" enabled, works fine.
    So fare i have this config:
    .htaccess:
    RewriteCond %{REQUEST_METHOD} ^(OPTIONS|PROPFIND|HEAD)$ [NC]
    RewriteCond %{HTTP_USER_AGENT} ^Microsoft\ Office\ Core\ Storage\ Infrastructure.*$ [OR]
    RewriteCond %{HTTP_USER_AGENT} ^Microsoft\ Office\ Protocol\ Discovery [OR]
    RewriteCond %{HTTP_USER_AGENT} ^Microsoft\ Office\ Existence\ Discovery [OR]
    RewriteCond %{HTTP_USER_AGENT} ^Microsoft\-WebDAV\-MiniRedir.*$
    RewriteRule .* - [R=501,L]
    This config, disables the login, which came everytime i opened the document in Internet Explorer.
    But when document is opened and i want to save the document, i get a windows login prompt.
    This is my access log, which shows office tries to access the webserver, but anonymously.
    10.0.0.123 - - [22/Jan/2014:15:21:18 +0100] "OPTIONS /files/tool/ HTTP/1.1" 401 762 "-" "Microsoft Office Protocol Discovery"
    10.0.0.123 - [email protected] [22/Jan/2014:15:21:18 +0100] "OPTIONS /files/tool/ HTTP/1.1" 501 776 "-" "Microsoft Office Protocol Discovery"
    10.0.0.123 - [email protected] [22/Jan/2014:15:21:18 +0100] "OPTIONS /files/tool/ HTTP/1.1" 501 776 "-" "Microsoft Office Protocol Discovery"
    10.0.0.123 - [email protected] [22/Jan/2014:15:21:18 +0100] "OPTIONS /files/tool/ HTTP/1.1" 501 776 "-" "Microsoft Office Protocol Discovery"
    10.0.0.123 - - [22/Jan/2014:15:21:18 +0100] "HEAD /files/file.doc HTTP/1.1" 401 272 "-" "Microsoft Office Existence Discovery"
    10.0.0.123 - [email protected] [22/Jan/2014:15:21:18 +0100] "HEAD /files/file.doc HTTP/1.1" 501 447 "-" "Microsoft Office Existence Discovery"
    10.0.0.123 - [email protected] [22/Jan/2014:15:21:18 +0100] "GET /files/file.doc HTTP/1.1" 304 456 "-" "Microsoft Office Core Storage Infrastructure/1.0"
    10.0.0.123 - [email protected] [22/Jan/2014:15:21:18 +0100] "PROPFIND /files/file.doc HTTP/1.1" 501 807 "-" "Microsoft Office Core Storage Infrastructure/1.0"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS /files/ HTTP/1.1" 401 762 "-" "Microsoft Office Protocol Discovery"
    10.0.0.123 - [email protected] [22/Jan/2014:15:21:24 +0100] "OPTIONS /files/ HTTP/1.1" 501 771 "-" "Microsoft Office Protocol Discovery"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 762 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    10.0.0.123 - - [22/Jan/2014:15:21:24 +0100] "OPTIONS / HTTP/1.1" 401 761 "-" "Microsoft-WebDAV-MiniRedir/6.1.7601"
    I have tried this "fix it tool": http://support.microsoft.com/kb/2123563
    What am i missing?
    And why is office talking to the server anonymously ?
    Jakob Olsen

    Hello,
    in addition to my question here: http://social.technet.microsoft.com/Forums/office/en-US/eb068660-5ded-411e-bfc1-6f18ba7bc585/office-prompts-for-windows-login-when-im-trying-to-save-edited-document?forum=officeitproprevious
    Can someone tell my, how does the Microsoft Office Single Sign on work ?
    From what i understand, ms office opens the document (when through IE) and tries to create a webdav connection.
    I have tried to disable the webdav on apache.
    But the entire webserver is mod_auth_kerb "protected".
    And in the access-log, i can see this:
    IP, DATETIME, [email protected] document....
    But also: IP, DATETIME - document <--- None authenticated user... Why does microsoft not use the current user?
    I have tried to ssl enable the website, which i read in this thread: http://support.microsoft.com/kb/2123563
    But Microsoft Office stills act as anonymous user.
    Jakob Olsen

  • How can I set my iphone to prompt for a password when viewing a selected email account?

    I can see a lot of people complaining about adhoc password entry when using email but nothing where people actually want to be prompted for a password.  If I have multiple email accounts and a phone where others can pick up and enter the top level security 4 digit number, I would like one of the email accounts to be slightly more secure than the others, hence need it to prompt for a password.  Does anybody have any ideas how I can do this?

    Sorry, there is no way to do this in the current iOS. Suggest such to Apple here:
    http://www.apple.com/feedback/iphone.html

  • Case of missing Flash Videos when deploying to web

    Hi,
    I have done a simple flash catalyst project and I have inserted a F4V file into it. But when I deploy to Web as I publish, I don't see the video at all. Why is this so? I have the video stored in a folder called 'multimedia_assets'. Must I move the video into the same location as the FXP file? Please advise.
    Thanks!

    Have you uploaded the video file in the same directory structure to the web? When you publish the project, it should create a folder(s) that contain your videos. You will need to upload these files and mirror the directory structure.
    Chris

  • Getting a compilation error when deploying a web service to OC4J.

    The following are the error that I got from Oracle AS server console:
    [Feb 5, 2007 11:31:14 AM] Application Deployer for edsssaws STARTS.
    [Feb 5, 2007 11:31:14 AM] Copy the archive to D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws.ear
    [Feb 5, 2007 11:31:14 AM] Initialize D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws.ear begins...
    [Feb 5, 2007 11:31:14 AM] Unpacking edsssaws.ear
    [Feb 5, 2007 11:31:14 AM] Done unpacking edsssaws.ear
    [Feb 5, 2007 11:31:14 AM] Unpacking edsssaws-web.war
    [Feb 5, 2007 11:31:16 AM] Done unpacking edsssaws-web.war
    [Feb 5, 2007 11:31:16 AM] Initialize D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws.ear ends...
    [Feb 5, 2007 11:31:16 AM] Starting application : edsssaws
    [Feb 5, 2007 11:31:16 AM] Initializing ClassLoader(s)
    [Feb 5, 2007 11:31:16 AM] Initializing EJB container
    [Feb 5, 2007 11:31:16 AM] Loading connector(s)
    [Feb 5, 2007 11:31:16 AM] Starting up resource adapters
    [Feb 5, 2007 11:31:16 AM] Initializing EJB sessions
    [Feb 5, 2007 11:31:16 AM] Committing ClassLoader(s)
    [Feb 5, 2007 11:31:16 AM] Initialize edsssaws-web begins...
    [Feb 5, 2007 11:31:16 AM] Initialize edsssaws-web ends...
    [Feb 5, 2007 11:31:16 AM] Started application : edsssaws
    [Feb 5, 2007 11:31:16 AM] Binding web application(s) to site default-web-site begins...
    [Feb 5, 2007 11:31:16 AM] Binding edsssaws-web web-module for application edsssaws to site default-web-site under context root edsssaws
    [Feb 5, 2007 11:31:35 AM] Operation failed with error: Error compiling :D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws\edsssaws-web: compilation error occurred
    I don't have any problem to build the webservice using oracle:assemble command in ant script, nor compilation error in the build time.
    The error log shows as the following:
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-02-05T11:31:35.392-06:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>oc4j</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>16</MSG_LEVEL>
    <HOST_ID>w2gzfdx801</HOST_ID>
    <HOST_NWADDR>148.94.36.32</HOST_NWADDR>
    <MODULE_ID>admin.jmx.client.EventManager</MODULE_ID>
    <THREAD_ID>26</THREAD_ID>
    <USER_ID>SYSTEM</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>148.94.36.32:33615:1170696695392:16</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>1 events to be dispatched for: oracle.oc4j.admin.management.mejb.MEjb@a8c31b and domain: oc4j-w2gzfdx801.amer.corp.eds.com-12401-default</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-02-05T11:31:35.392-06:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>oc4j</COMPONENT_ID>
    <MSG_TYPE TYPE="TRACE"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>w2gzfdx801</HOST_ID>
    <HOST_NWADDR>148.94.36.32</HOST_NWADDR>
    <MODULE_ID>admin.jmx.client.CoreRemoteMBeanServer</MODULE_ID>
    <THREAD_ID>26</THREAD_ID>
    <USER_ID>SYSTEM</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>148.94.36.32:33615:1170696695392:16</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>Dispatching event type: deploy.edsssaws and message: Application Deployer for edsssaws FAILED. to listener with id: 0 on MBeanServer proxy: oracle.oc4j.admin.management.mejb.MEjb@a8c31b</MSG_TEXT>
    </PAYLOAD>
    </MESSAGE>
    <MESSAGE>
    <HEADER>
    <TSTZ_ORIGINATING>2007-02-05T11:31:35.392-06:00</TSTZ_ORIGINATING>
    <COMPONENT_ID>oc4j</COMPONENT_ID>
    <MSG_TYPE TYPE="ERROR"></MSG_TYPE>
    <MSG_LEVEL>1</MSG_LEVEL>
    <HOST_ID>w2gzfdx801</HOST_ID>
    <HOST_NWADDR>148.94.36.32</HOST_NWADDR>
    <MODULE_ID>admin.deploy.spi.status.ProgressObjectImpl</MODULE_ID>
    <THREAD_ID>26</THREAD_ID>
    <USER_ID>SYSTEM</USER_ID>
    </HEADER>
    <CORRELATION_DATA>
    <EXEC_CONTEXT_ID><UNIQUE_ID>148.94.36.32:33615:1170696695392:16</UNIQUE_ID><SEQ>0</SEQ></EXEC_CONTEXT_ID>
    </CORRELATION_DATA>
    <PAYLOAD>
    <MSG_TEXT>java.lang.InstantiationException: Error compiling :D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws\edsssaws-web: compilation error occurred</MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[oracle.oc4j.admin.jmx.shared.exceptions.InternalException: java.lang.InstantiationException: Error compiling  :D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws\edsssaws-web: compilation error occurred
         at oracle.oc4j.admin.jmx.shared.deploy.NotificationUserData.<init>(NotificationUserData.java:107)
         at oracle.oc4j.admin.internal.Notifier.reportError(Notifier.java:429)
         at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:123)
         at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
         at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:819)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: oracle.oc4j.admin.internal.DeployerException: java.lang.InstantiationException: Error compiling  :D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws\edsssaws-web: compilation error occurred
         at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:214)
         at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:96)
         at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:541)
         at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:197)
         at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
         ... 4 more
    Caused by: java.lang.InstantiationException: Error compiling  :D:\product\10.1.3\OracleAS_1\j2ee\home\applications\edsssaws\edsssaws-web: compilation error occurred
         at com.evermind.server.http.WrapperClassGenerator.generateWebServiceArts(WrapperClassGenerator.java:98)
         at com.evermind.server.http.HttpApplication.generateWebServiceArtifacts(HttpApplication.java:8403)
         at com.evermind.server.http.HttpApplication.populateLoaderWithWebServicesDeploymentCache(HttpApplication.java:5465)
         at com.evermind.server.http.HttpApplication.populateLoader(HttpApplication.java:5394)
         at com.evermind.server.http.HttpApplication.initClassLoader(HttpApplication.java:5333)
         at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:645)
         at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:428)
         at com.evermind.server.Application.getHttpApplication(Application.java:512)
         at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1975)
         at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1894)
         at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1591)
         at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:206)
         ... 8 more
    ]]></SUPPL_DETAIL>
    </PAYLOAD>
    </MESSAGE>
    Any idea why it happened?
    Thanks,
    Jason

    Hello,
    I do not see why you have this error, is it the only log entry that you have? Anything in the application.log?
    Can you send me the ear? tugdual [dot] grall [at] oracle [dot] com
    Regards
    Tugdual Grall

  • Since upgrading to iOS 6 I am not getting prompted for my password when I update apps. Why is this?

    When I updated apps on my ipad2 and iphone4S I used to get prompted for my password within a certain time.  So I could update a couple and then 10 minutes later if I wanted to download or update something else I would need to put in my password again. Since I upgraded to iOS6, I don't believe I am prompted for my password the same amount of times. I updated an app this am after not using iPad through the night and it just updated, no password required. This has me concerned now because sometimes I bump buttons by accident and now I will be charged for these accidents. What has happened to Apple's brilliant security?

    They've changed it in iOS and updates (and updates ONLY) do not require a password since it is really unnecessary as they have it on record that you were the one who bought the app. Why is more security needed, you aren't going to be charged for anything?
    Next time you update and app go to the App Store and try to buy something. You will be asked for your password.

  • Prompted for serial number when launching Acrobat Pro XI

    Keep being asked for a Serial Number Upgrade when trying to open trial version of Acrobat Pro XI.
    Had previously purchased and installed full version, but found out the Pro 9 serial number I had been using was not eligible for upgrade, so I uninstalled full version and installed trial version.
    How can I prevent it from prompting for Upgrade Serial Number? Probably something left over in Registry from that Pro XI purchase.
    Sure would be nice if it had prompted for the upgrade serial number BEFORE I purchased, uploaded and installed the upgrade, rather than finding out afterwards it wasn't eligible. Plus, it uninstalled my Pro 9 in the process, so now I'm left with nothing.

    Excellent suggestion; should have thought of that.
    However, after running Cleaner to remove Pro XI, rebooting, reinstalling Pro XI Trial and rebooting, it still prompts me from same Serial Number Upgrade dialog box as when I purchased Pro XI.
    It didn’t recognize my Pro 9 serial number in the original purchase/install because turned out Pro 9 was a Beta version. But that box keeps coming up when trying to use Pro XI Trial.

  • Safari 5 stopped prompting for file name when downloading.

    Hello,
    On Safari 4, when I clicked a download link, Safari always prompted for a file name, so I could change it before starting downloading, I installed Safari 5 and "this" feature dissapeared. Can anyone help?
    Thank you in advance,
    Alex

    Works for me: Right-click on the Paint.NET download file here. http://www.dotpdn.com/downloads/pdn.html
    It opens a menu. I click Download Linked File As... and change the name. It downloads.
    What experience are you seeing?

  • Prompt for Customizing request when saving Sales Employee (VPE1)

    Hi,
    When we try to create Sales Personnel through SD Menu path (VPE1), on saving the system prompts for customizing  request. Since this transaction is a master data and we dont transport this data to our production system. Suggest me a way to avoid this transport request while creating Sales Personnel.
    We are currently using version 3.1i and upgrading to ECC6.0. In 3.1i we use transaction PAL1 to create Sales Personnel However it will not prompt for Customizing request
    Also checked the SAP Note Note 854390 - FAQ: Use of the sales representative in SD without HR
    Help me on how to turn off this customizing request. Basis and Security team could not able to turn this off.
    Regards,
    Pradeep Maddi

    hello, friend.
    you have 2 choices:
    1.  create a transport request, save the data but do not release it for transport.
    2.  when the dialog asks you for transport request, just close this.  the system will give you a message about links.  just ignore it.
    hope this helped.  reward if so.
    regards.

  • Please help: Exception when deploying ADF Web app to AS 10.1.3

    Hi everyone, I hope someone could help me with this.
    I'm using JDeveloper 10.3.2.0.4066. Oracle AS is 10.1.3.
    The application works fine on the embedded OC4J, but when deployed to Oracle AS I get the following 500 Internal server error:
    oracle.jbo.JboException: JBO-25222: Unable to create application module.     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:155)     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)     at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2431)     at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)     at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2047)     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1913)     at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2756)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)     at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:258)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:397)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:392)     at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1550)     at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1408)     at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99)     at oracle.adf.model.BindingContext.get(BindingContext.java:465)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)     at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)     at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127)     at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)     at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277)     at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296)     at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425)     at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)     at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44)     at oracle.adf.model.BindingContext.get(BindingContext.java:491)     at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:327)     at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:641)     at oracle.adf.model.servlet.ADFBindingFilter.isPageViewable(ADFBindingFilter.java:532)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:301)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##javax.naming.NamingException [Root exception is java.lang.ClassCastException: com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication]     at oracle.jbo.server.InitialContextImpl.createJboHome(InitialContextImpl.java:59)     at oracle.jbo.common.JboInitialContext.lookup(JboInitialContext.java:77)     at javax.naming.InitialContext.lookup(InitialContext.java:351)     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:136)     at oracle.jbo.common.ampool.DefaultConnectionStrategy.createApplicationModule(DefaultConnectionStrategy.java:80)     at oracle.jbo.common.ampool.ApplicationPoolImpl.instantiateResource(ApplicationPoolImpl.java:2431)     at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:536)     at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2047)     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1913)     at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2756)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:426)     at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:258)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:397)     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:392)     at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1550)     at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1408)     at oracle.adf.model.binding.DCDataControlReference.getDataControl(DCDataControlReference.java:99)     at oracle.adf.model.BindingContext.get(BindingContext.java:465)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:280)     at oracle.adf.model.binding.DCUtil.findSpelObject(DCUtil.java:248)     at oracle.adf.model.binding.DCUtil.findContextObject(DCUtil.java:383)     at oracle.adf.model.binding.DCIteratorBinding.<init>(DCIteratorBinding.java:127)     at oracle.jbo.uicli.binding.JUIteratorBinding.<init>(JUIteratorBinding.java:60)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:87)     at oracle.jbo.uicli.binding.JUIteratorDef.createIterBinding(JUIteratorDef.java:51)     at oracle.adf.model.binding.DCIteratorBindingDef.createExecutableBinding(DCIteratorBindingDef.java:277)     at oracle.adf.model.binding.DCBindingContainerDef.createExecutables(DCBindingContainerDef.java:296)     at oracle.adf.model.binding.DCBindingContainerDef.createBindingContainer(DCBindingContainerDef.java:425)     at oracle.adf.model.binding.DCBindingContainerReference.createBindingContainer(DCBindingContainerReference.java:54)     at oracle.adf.model.binding.DCBindingContainerReference.getBindingContainer(DCBindingContainerReference.java:44)     at oracle.adf.model.BindingContext.get(BindingContext.java:491)     at oracle.adf.model.BindingContext.findBindingContainer(BindingContext.java:327)     at oracle.adf.model.BindingContext.findBindingContainerByPath(BindingContext.java:641)     at oracle.adf.model.servlet.ADFBindingFilter.isPageViewable(ADFBindingFilter.java:532)     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:301)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)Caused by: java.lang.ClassCastException: com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpApplication     at oracle.jbo.common.PropertyManager.loadStaticEnvironmentFromProperties(PropertyManager.java:392)     at oracle.jbo.common.PropertyManager.loadProperties(PropertyManager.java:223)     at oracle.jbo.server.SessionImpl.init(SessionImpl.java:136)     at oracle.jbo.server.ApplicationModuleHomeImpl.createSession(ApplicationModuleHomeImpl.java:110)     at oracle.jbo.server.ApplicationModuleHomeImpl.<init>(ApplicationModuleHomeImpl.java:47)     at oracle.jbo.server.InitialContextImpl.createJboHome(InitialContextImpl.java:51)     ... 43 more
    I see that I have a ClassCastException but I don't know anything about this class.
    I did not find any other thread related to this.
    Could someone please help me?
    Thank you.

    Hi I am afraid I do have similar problem in production now. We just upgrade app server from 10.1.3.0 to 10.1.3.1 plus ADF Runtime libraries 10.1.3.2 plus one-off patch (bug 4398431) for JDBC Driver (fixing deadlock in java threads related to JDBC pooling)
    Any hint what might be a issue. I suspect it might be related to jbo.timetolive because first occurence of this message is about 1 hour after restart of application server and we are using default BC configuration jbo.timetolive= 1hour
    After that we see folowing error messga in application.log
    JBO-30003: The application pool (aacp.wpailin.bc.PailinAppModuleLocal) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-25222: Unable to create application module.
    at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
    at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419)
    at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1536)
    at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1396)
    at oracle.adf.model.BindingContext.beginRequest(BindingContext.java:683)
    at oracle.adf.model.BindingRequestHandler.invokeBeginRequest(BindingRequestHandler.java:346)
    at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:166)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    ## Detail 0 ##
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-25222: Unable to create application module.
    at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
    at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419)
    at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1536)
    at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1396)
    at oracle.adf.model.BindingContext.beginRequest(BindingContext.java:683)
    at oracle.adf.model.BindingRequestHandler.invokeBeginRequest(BindingRequestHandler.java:346)
    at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:166)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:619)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:302)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:190)
    at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)

  • Not getting prompt for 2nd layer when writing DLT

    I am using DVDSP3. Trying to write a dual layer DVD-9. When I attempt to format it goes through the motions and writes both layers onto 1 tape. IFrom what I have read I am supposed to be prompted for the second tape. I have double checked my settings and they are all correct. I have marked for dual layer, one side, I let DVDSP set my breakpoint, 12 cm, OTP.
    I have searched the forum and found that the question was posed before and a couple of people alluded to the fact that there was a fix for this but they couldn't remember. Does anyone know anything about this?
    Thanks in advance

    Resolution- Either I just need a couple of days off or the drive was just being cranky but it is working now. I don't know if I turned things on in the wrong order before or what exactly made it work correctly but as we speak I am writing tape #2. So if anyone has this problem in the future make sure your tape is in securely and try powering everything back down and up. That's all I did.

Maybe you are looking for

  • Unable to get a crystal working in multisim

    Can annyone help me. I trying to make the circuit (Crystaloscillator) work from http://www.circuitsonline.net/circuits/view/37 in multisim. The crystal does not oscillate and the exit shows no freq. I think it has to be in the setting from multisim 9

  • Lion 10.7.4 upgrade caused login loop

    I upgraded my 2008 MacBook Pro [Intel processor, 4 GB RAM, 250GB HDD to the latest security release for Lion two days ago.  I now have a vexing problem.  After typing the login password at the login screen OS X Lion 10.7.4 tries to log me in but then

  • Creating Logic for FDM Sign Flip Rule

    I am working through an implantation of FDM (11.1.2.2) for a Hyperion Enterprise environment and we have > 70 different locations to create. Some will share a common parent, but most will not. We were using HAL prior to FDM and HAL would allow us to

  • Os auth login with sql developer

    env: Oracle 9.2.0.6 Win2003 SQL Plus uses syntax "/@sid" for remote login using NT integrated authentication. What syntax does SQL Developer use for externally authenticated login? Thank you.

  • BPC70 NW: Differences between SP00 and SP01

    Dear all, We'd like to install BPC NW70. At the moment SP01 is available. At help.sap.com I try to find info on this but so far not found. Q: Does anybody know where to find help-info on BPC70 (Netweaver version)? For SP01 you also need EhP1 for BI7.