Distiller uses Finder creator/type "ORAC"/" FDP"

Distiller 8/9 running on Intel based mac running OSX 10.4.11/10.5.5.
It seems that Distiller creates pdf-files with creator/type "ORAC"/" FDP". That causes some systems not to recognice them as pdfs.
I hope Adobe will fix Distiller soon so that it would use file type "PDF " instead of current " FDP".

Wow, that's a pretty bone-headed thing to do. If Adobe's not going to use higher-level frameworks that handle the endian issue for them, they'll need to take care of the byte-swapping themselves.
(In case you're not familiar with the term "endian", it has to do with the way multi-byte values are stored in memory. Intel Macs store those values in memory in the opposite order than PowerPC Macs do. Notice 'ORAC' is 'CARO' backwards, and ' FDP' is 'PDF ' backwards).

Similar Messages

  • Exception [EJB - 10008]: Cannot find bean of type [SalesBean] using finder

    I'm trying to call an entity bean froma session bean i get the error :-
    7/02/27 14:35:25 javax.ejb.ObjectNotFoundException: Exception [EJB - 10008]: Cannot find bean of type [SalesBean] using finde
    [findByCustID].
    7/02/27 14:35:25       at oracle.toplink.internal.ejb.cmp.EJBExceptionFactory.objectNotFound(EJBExceptionFactory.java:325)
    7/02/27 14:35:25       at oracle.toplink.internal.ejb.cmp.finders.Finder.checkNullResult(Finder.java:224)
    My session bean looks like this :-
    public class HelloBean implements SessionBean
      public String helloWorld (String pzCustomerID) throws SQLException,RemoteException
         String lzRevenue=null;
         int liCustomerID=Integer.parseInt(pzCustomerID);
         try
              Context initial = new InitialContext();
              Object objref =   initial.lookup("SalesBean");
              SalesHome salesHome =(SalesHome) PortableRemoteObject.narrow(objref,SalesHome.class);
              Sales sales=salesHome.findByCustID(liCustomerID);
              lzRevenue=(String) sales.findByCustID(liCustomerID);
    My entity bean looks like this:-
    public class SalesBean implements EntityBean
      public String factPK;
      public int timeID;
      public int custID;
      public int locID;
      public int itemID;
      public int entityID;
      public String currency;
      public float qty;
      public float unitPrice;
      public float amount;
      public EntityContext context;
      private Connection con;
        private void makeConnection() {
            try {
                InitialContext ic = new InitialContext();
                javax.sql.DataSource ds = (javax.sql.DataSource) ic.lookup("jdbc/DSource");
                con = ds.getConnection();
            } catch (Exception ex) {
                throw new EJBException("Unable to connect to database. " +
                    ex.getMessage());
      public SalesBean()
      public String ejbFindByCustID(int custID) throws SQLException,RemoteException,FinderException
         makeConnection();
         PreparedStatement pstmt = con.prepareStatement("select sum(amount) from sales where cust_id= ? ");
         pstmt.setInt(1, custID);
         ResultSet rset = pstmt.executeQuery();
         if (!rset.next())
              throw new RemoteException("no records present" );
         return rset.getString(1);
      }My entity bean's home interface looks like this:-
    public interface SalesHome extends EJBHome
    public Sales create() throws RemoteException, CreateException;
    public Sales findByCustID(int custID) throws SQLException,RemoteException,FinderException;
    My entity bean's remote interface looks like this:-
    public interface Sales extends EJBObject
         public String findByCustID(int custID) throws SQLException,RemoteException,FinderException;
    my ejb-jar.xml looks like this:-
    <enterprise-beans>
    <session>
    <description>Hello Bean</description>
    <ejb-name>HelloBean</ejb-name>
    <home>myEjb.HelloHome</home>
    <remote>myEjb.HelloRemote</remote>
    <ejb-class>myEjb.HelloBean</ejb-class>
    <session-type>Stateful</session-type>
    <transaction-type>Container</transaction-type>
    </session>
         <entity>
              <ejb-name>SalesBean</ejb-name>
              <home>myEjb.SalesHome</home>
              <remote>myEjb.Sales</remote>
              <ejb-class>myEjb.SalesBean</ejb-class>
              <persistence-type>Container</persistence-type>
              <prim-key-class>java.lang.String</prim-key-class>
              <reentrant>False</reentrant>
              <cmp-field>
              <field-name>factPK</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>timeID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>custID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>locID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>itemID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>entityID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>currency</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>qty</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>unitPrice</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>amount</field-name>
         </cmp-field>
              <primkey-field>factPK</primkey-field>
              <resource-ref>
              <res-ref-name>jdbc/DSource</res-ref-name>
              <res-type>javax.sql.DataSource</res-type>
              <res-auth>Container</res-auth>
         </resource-ref>
         </entity>
    </enterprise-beans>
    please help me out of this trouble.

    I'm trying to call an entity bean froma session bean i get the error :-
    7/02/27 14:35:25 javax.ejb.ObjectNotFoundException: Exception [EJB - 10008]: Cannot find bean of type [SalesBean] using finde
    [findByCustID].
    7/02/27 14:35:25       at oracle.toplink.internal.ejb.cmp.EJBExceptionFactory.objectNotFound(EJBExceptionFactory.java:325)
    7/02/27 14:35:25       at oracle.toplink.internal.ejb.cmp.finders.Finder.checkNullResult(Finder.java:224)
    My session bean looks like this :-
    public class HelloBean implements SessionBean
      public String helloWorld (String pzCustomerID) throws SQLException,RemoteException
         String lzRevenue=null;
         int liCustomerID=Integer.parseInt(pzCustomerID);
         try
              Context initial = new InitialContext();
              Object objref =   initial.lookup("SalesBean");
              SalesHome salesHome =(SalesHome) PortableRemoteObject.narrow(objref,SalesHome.class);
              Sales sales=salesHome.findByCustID(liCustomerID);
              lzRevenue=(String) sales.findByCustID(liCustomerID);
    My entity bean looks like this:-
    public class SalesBean implements EntityBean
      public String factPK;
      public int timeID;
      public int custID;
      public int locID;
      public int itemID;
      public int entityID;
      public String currency;
      public float qty;
      public float unitPrice;
      public float amount;
      public EntityContext context;
      private Connection con;
        private void makeConnection() {
            try {
                InitialContext ic = new InitialContext();
                javax.sql.DataSource ds = (javax.sql.DataSource) ic.lookup("jdbc/DSource");
                con = ds.getConnection();
            } catch (Exception ex) {
                throw new EJBException("Unable to connect to database. " +
                    ex.getMessage());
      public SalesBean()
      public String ejbFindByCustID(int custID) throws SQLException,RemoteException,FinderException
         makeConnection();
         PreparedStatement pstmt = con.prepareStatement("select sum(amount) from sales where cust_id= ? ");
         pstmt.setInt(1, custID);
         ResultSet rset = pstmt.executeQuery();
         if (!rset.next())
              throw new RemoteException("no records present" );
         return rset.getString(1);
      }My entity bean's home interface looks like this:-
    public interface SalesHome extends EJBHome
    public Sales create() throws RemoteException, CreateException;
    public Sales findByCustID(int custID) throws SQLException,RemoteException,FinderException;
    My entity bean's remote interface looks like this:-
    public interface Sales extends EJBObject
         public String findByCustID(int custID) throws SQLException,RemoteException,FinderException;
    my ejb-jar.xml looks like this:-
    <enterprise-beans>
    <session>
    <description>Hello Bean</description>
    <ejb-name>HelloBean</ejb-name>
    <home>myEjb.HelloHome</home>
    <remote>myEjb.HelloRemote</remote>
    <ejb-class>myEjb.HelloBean</ejb-class>
    <session-type>Stateful</session-type>
    <transaction-type>Container</transaction-type>
    </session>
         <entity>
              <ejb-name>SalesBean</ejb-name>
              <home>myEjb.SalesHome</home>
              <remote>myEjb.Sales</remote>
              <ejb-class>myEjb.SalesBean</ejb-class>
              <persistence-type>Container</persistence-type>
              <prim-key-class>java.lang.String</prim-key-class>
              <reentrant>False</reentrant>
              <cmp-field>
              <field-name>factPK</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>timeID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>custID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>locID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>itemID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>entityID</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>currency</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>qty</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>unitPrice</field-name>
         </cmp-field>
         <cmp-field>
              <field-name>amount</field-name>
         </cmp-field>
              <primkey-field>factPK</primkey-field>
              <resource-ref>
              <res-ref-name>jdbc/DSource</res-ref-name>
              <res-type>javax.sql.DataSource</res-type>
              <res-auth>Container</res-auth>
         </resource-ref>
         </entity>
    </enterprise-beans>
    please help me out of this trouble.

  • When I use Find Font command from Type menu, the overprint fill changed!

    Can any one tell why the overprint fill attribute checked when I use Find Font from Type menu to simple change the font.
    Try this Illustrator file from this URL:
    https://docs.google.com/open?id=0BysC4QT512vCY2YzZDRkMGEtMjNmMy00MDE2LWFmNzQtNTBhNDQ5MTBlO Dk1
    and change the font of letter B in the illustration using Find Font command to and font and notice how the overprint fill changed from uncheched to checked.

    The problem happens here, even if I first change the color to CMYK 0000 prior to using find font.
    Anything we need to know about the history of this file, was it originally a pdf, or those text objects.
    Manually changing the font does not turn overprint on, Find Font is toggling the overprint value in the code for this probably due to somehting abnormal in the code, or maybe be associated to this font's name triggers this glitch.

  • How to find message type by using message number and application area

    Hi abapers,
    I know the message number and application area , how to find messagwe type.
    i.e weather it is error message or warning message.
    MESSAGE NUMBER IS    :219.
    APLLICATION AREA IS    : FS.
    in which table i had to check.
    i checked in t100 table , but i am unable  to find message type.
    please help me to solve this.
    regards

    hi,
    go to se91
    enter area and message number.
    then click on display.
    then go to utilities tab >> where used list or press shift + ctrl +f3
    there list of program will show .
    choose your program name
    then u will get ur mesage infoemation by double click on ur program name
    thanks
    sachin

  • I misplaced my iPhone and used Find My iPhone to track it down. It shoudl me a Google type may with my current location and the location of the iPhone; it was located in a ]heavily wooded area a few miles from my home. That was incorrect, Why?

    I misplaced my iPhone and used Find My iPhone to locate it. The map showed my home and the apparent location of the iPhone which was five miles south of my home in a heavily wooded area. It turns out that was an incorrect location as I eventually found my iPhone in my office three miles in the other direction. Can anyone provide m with an explanation for the discrepancy and inaccuracy?

    This topic has been frequently discussed on these forums.  Try a search to see the various responses.

  • Report for finding wage types using a processing class.

    Hi All,
    Is there any standard report that gives a list of all wage types that use a processing class given as input?.
    Thanks,
    Krish

    You can use the wage type utilization for this.  Go to transaction PC00_M99_DLGA20.  Leave the wage type selection fields blank.  Select "Continuous list" as your output.  Click on the execute button.  You will see the meaning of processing classes and their values.  If you scroll down past this (should be page 3 if you look for the number to the right side of the screen), you will see a list of the processing classes and which wage types are assigned to the class by valuation.  I don't know of any other standard reports to get you this information.  I hope this helps.
    - April King

  • Can't change creator type with AppleScript

    I'm trying to change the file type and creator type of some files using AppleScript. I've found many examples telling me how to do it. My problem is, that no matter what I try, the creator type does not change. Yes, I can change the file type, but using the same syntax for the creator type fails to make any change. There is no error; rather, the creator type simply remains what it was before.
    I'm doing this on 10.6.8, but I also tried it on 10.8.4 and had the same issue.
    Here's an example script:
    After executing on a single file (for example), the alerts show that the file type has been changed, but the creator type HAS NOT, and remains what it was previously.

    Hello
    Firstly, I have posted wrong handler, which should have been:
    on set_creator_code(f, c)
            string f : POSIX path of target file
            string c : 4-character creator code (or "" to set 0x00000000)
        do shell script "/usr/bin/perl <<'EOF' - " & f's quoted form & " " & c's quoted form & "
    die \"Usage: $0 <file> [<creator code>]\" unless @ARGV > 0;
    my ($f, $c) = @ARGV;
    (my $finfo = qx[xattr -p com.apple.FinderInfo \"$f\" 2>/dev/null]) =~ s/[[:space:]]//og;
    $finfo = \"00\" x 32 unless $finfo;
    my $cccc = unpack('H8', $c . \"\\0\\0\\0\\0\");
    $finfo =~ s/ ^((?:..){4}) ((?:..){4}) /$1$cccc/ox;
    qx[xattr -w -x com.apple.FinderInfo \"$finfo\" \"$f\"];
    EOF"
    end set_creator_code
    * The previous (wrong) handler will create wrong data when there's no com.apple.FinderInfo attribute of the file. Sorry.
    By the way, this handler is written to set creator code to \0\0\0\0 when c = "". So the script below will do what you want for a file.
    set f to choose file
    set_creator_code(f's POSIX path, "")
    As for recursive processing, it is straightforward but the question is how to determine the target files. Processing every file under a given directory tree could be too broad and potentially dangerous. Can we assume the target files are all html and its name extension is .html or .htm? If so, the script below will do what you want:
    set d to choose folder
    set_creator_code_recursively(d's POSIX path, "(html|htm)", "")
    on set_creator_code_recursively(d, e, c)
            string d : POSIX path of target directory
            string e : name extension pattern (case insensitive), e.g., (html|htm|css)
            string c : 4-character creator code (or "" to set 0x00000000)
        do shell script "/usr/bin/perl <<'EOF' - " & d's quoted form & " " & e's quoted form & " " & c's quoted form & "
    die \"Usage: $0 <directory> <name extension pattern> [<creator code>]\" unless @ARGV > 1;
    my ($dir, $ext, $code) = @ARGV;
    local $/=\"\\0\";
    my @ff = map {chomp; $_} qx[find -E \"$dir\" -type f -iregex '.*\\\\.$ext\\$' -print0];
    for my $f (@ff) {
        (my $finfo = qx[xattr -p com.apple.FinderInfo \"$f\" 2>/dev/null]) =~ s/[[:space:]]//og;
        $finfo = \"00\" x 32 unless $finfo;
        my $cccc = unpack('H8', $code . \"\\0\\0\\0\\0\");
        $finfo =~ s/ ^((?:..){4}) ((?:..){4}) /$1$cccc/ox;
        qx[xattr -w -x com.apple.FinderInfo \"$finfo\" \"$f\"];
    EOF"
    end set_creator_code_recursively
    Hope this may help,
    H

  • How to use oracle collection type with JDBC?

    I try to use oracle collection type in java program. So I made some package and java program, however Java program was not found "package.collectiontype"(JDBC_ERP_IF_TEST.NUM_ARRAY) . please, show me how to use this.
    Java Version : Java 1.4
    JDBC Driver : Oracle Oci Driver
    DB: Oracle 9i
    No 1. Package
    ===========================================
    create or replace package JDBC_ERP_IF_TEST AS
    type NUM_ARRAY is table of number;
    procedure JDBC_ERP_IF_ARRAY_TEST(P_NUM_ARRAY IN NUM_ARRAY, ERR_NO OUT NUMBER, ERR_TEXT OUT VARCHAR2);
    procedure TEST(ABC IN NUMBER);
    END JDBC_ERP_IF_TEST;
    ==================================================
    No 2. Package Body
    ===============================================
    CREATE OR REPLACE package BODY JDBC_ERP_IF_TEST is
    procedure JDBC_ERP_IF_ARRAY_TEST(p_num_array IN NUM_ARRAY,
    ERR_NO OUT NUMBER,
    ERR_TEXT OUT VARCHAR2) is
    begin
    ERR_NO := 0;
    ERR_TEXT := '';
    dbms_output.enable;
    for i in 1 .. p_num_array.count() loop
    dbms_output.put_line(p_num_array(i));
    insert into emp (empno) values (p_num_array(i));
    commit;
    end loop;
    EXCEPTION
    WHEN OTHERS THEN
    ERR_NO := SQLCODE;
    ERR_TEXT := ERR_TEXT ||
    ' IN JDBC INTERFACE TEST FOR ORACLE ERP OPEN API..';
    ROLLBACK;
    RETURN;
    end JDBC_ERP_IF_ARRAY_TEST;
    procedure TEST(ABC IN NUMBER) IS
    begin
    insert into emp(empno) values (ABC);
    commit;
    end TEST;
    end JDBC_ERP_IF_TEST;
    ===============================================
    NO 3. Java Program
    ===============================================
    ArrayDescriptor descriptor = ArrayDescriptor.createDescriptor("JDBC_ERP_IF_TEST.NUM_ARRAY", getConnection());
    ARRAY array = new ARRAY(descriptor, getConnection(), arrs);
    cstmt = getConnection().prepareCall(LQueryFactory.getInstance().get("Meta/Basic/testJdbcErpArrayIf").getSql());
    cstmt.setArray(1, array);
    cstmt.registerOutParameter(2, Types.INTEGER);
    cstmt.registerOutParameter(3, Types.VARCHAR);
    ====================================================
    couldn't find this phase => JDBC_ERP_IF_TEST.NUM_ARRAY
    what can i do for this package and program? please help me..

    Something like this:
    create or replace type t_record as  object (
    id number,
    no number
    CREATE or replace type t_table AS TABLE OF t_record;
    set serveroutput on
    declare
      v_table t_table := t_table();
      v_t1 t_table := t_table();
    begin
      v_table.extend(1);
      v_table(1).ID := 1;
      v_table(1).No := 10;
      v_table.extend(1);
      v_table(2).ID := 2;
      v_table(2).ID := 20;
      SELEC t_record (ID,NO) BULK COLLECT INTO v_t1
      from TableA
      FROM TABLEA
      WHERE ID IN (select t.ID from table(v_Table) t);
      for i in 1..v_t1.count loop
        dbms_output.put_line(v_t1(i).ID);
        dbms_output.put_line(v_t1(i).No);
      end loop;
    end;
    /Untested!
    P;
    Edited by: bluefrog on Mar 5, 2010 5:08 PM

  • Ram? how do i find the type that my macbook pro has?

    ram? how do i find the type that my macbook pro has?
    and whats the best brand to use?
    thanks
    also what kind of express cards addons are available for the macbooks?
    thanks again

    A_MaStA wrote:
    You simply take out and look on the ram chip(s), the manufacturer's name should be all over the chip(s).
    Not very helpful. Micron / Crucial makes maybe 2000 RAM types. If all you have is the RAM and the label you may be thin on luck.
    Reading the manual +*that came with the mac*+ is one resource, regrettably rarely used before posting here.

  • Java.io.IOException: unable to find the type mapping resource file

    Hi,
    I am using weblogic7.0 to deploy my applications. I wrote a web service and
    was able to deploy it sucessfully. I am trying to access the web service through
    a jsp page. I am the error posted below on my server and " error:505 internal
    server error" on the browser. Can any one please help me out with the problem.
    My jsp page just displays the float value i am returing from the session bean
    method.
    Thanks,
    Ramya.
    <Apr 14, 2003 4:32:51 PM PDT> <Error> <HTTP> <101019> <[ServletContext(id=64204
    55,name=bankwebapp,context-path=/bankwebapp)] Servlet failed with IOException
    java.io.IOException: unable to find the type mapping resource file for:bank.Ban
    kService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149400> <Activatin
    g application: appsdirbankwebapp_war>
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149404> <Activate
    application appsdirbankwebapp_war on myserver - Running>
    <Apr 14, 2003 4:41:01 PM PDT> <Notice> <Application Poller> <149404> <Activate
    application appsdirbankwebapp_war on myserver - Completed>
    The url value from the jsp page ishttp://localhost:7001
    The wsdl value from the jsp page ishttp://localhost:7001/web_services/BankServi
    ce
    <Apr 14, 2003 4:41:06 PM PDT> <Error> <HTTP> <101019> <[ServletContext(id=72463
    20,name=bankwebapp,context-path=/bankwebapp)] Servlet failed with IOException
    java.io.IOException: unable to find the type mapping resource file for:bank.Ban
    kService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    at weblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

    Hi Manoj,
    Thanks a lot for your hepl. I tried as you said and its working now.
    Ramya
    "manoj cheenath" <[email protected]> wrote:
    Make sure that you put the client jar file generated by
    clientgen in the lib directory of the jsp web app.
    It looks like the runtime is unable to load
    <service>.xml type mapping file. This xml file
    should be in the classpath (web-inf/lib or
    web-inf/classes).
    -manoj
    "Ramya" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I am using weblogic7.0 to deploy my applications. I wrote a web serviceand
    was able to deploy it sucessfully. I am trying to access the web servicethrough
    a jsp page. I am the error posted below on my server and " error:505internal
    server error" on the browser. Can any one please help me out with theproblem.
    My jsp page just displays the float value i am returing from the sessionbean
    method.
    Thanks,
    Ramya.
    <Apr 14, 2003 4:32:51 PM PDT> <Error> <HTTP> <101019><[ServletContext(id=64204
    55,name=bankwebapp,context-path=/bankwebapp)] Servlet failed withIOException
    java.io.IOException: unable to find the type mapping resource filefor:bank.Ban
    kService
    atweblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    atweblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    atweblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    atweblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149400><Activatin
    g application: appsdirbankwebapp_war>
    <Apr 14, 2003 4:40:59 PM PDT> <Notice> <Application Poller> <149404><Activate
    application appsdirbankwebapp_war on myserver - Running>
    <Apr 14, 2003 4:41:01 PM PDT> <Notice> <Application Poller> <149404><Activate
    application appsdirbankwebapp_war on myserver - Completed>
    The url value from the jsp page ishttp://localhost:7001
    The wsdl value from the jsp page
    ishttp://localhost:7001/web_services/BankServi
    ce
    <Apr 14, 2003 4:41:06 PM PDT> <Error> <HTTP> <101019><[ServletContext(id=72463
    20,name=bankwebapp,context-path=/bankwebapp)] Servlet failed withIOException
    java.io.IOException: unable to find the type mapping resource filefor:bank.Ban
    kService
    atweblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegi
    stry.java:62)
    atweblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at bank.BankService_Impl.<init>(BankService_Impl.java:23)
    at jsp_servlet.__getbal._jspService(__getbal.java:106)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    atweblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.ru
    n(ServletStubImpl.java:1058)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:401)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:445)
    atweblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubI
    mpl.java:306)
    atweblogic.servlet.internal.WebAppServletContext$ServletInvocationActi
    on.run(WebAppServletContext.java:5412)
    atweblogic.security.service.SecurityServiceManager.runAs(SecurityServi
    ceManager.java:744)
    atweblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppS
    ervletContext.java:3086)
    atweblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestI
    mpl.java:2544)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:153)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:134)
    >

  • Unable to Find the Type Mapping Resource File (Two web services)

    Hello,
    I am using BEA weblogic 7.0 to deploy my applications. I have a web service and was able to deploy it sucessfully. I am trying to access this web service from another web service previously succesfully deployed too. When I call the second one, I have the next problem:
    java.io.IOException: unable to find the type mapping resource file for:tuoprec.sinsesion.TuOPRecService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegistry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at tuoprec.sinsesion.TuOPRecService_Impl.<init>(TuOPRecService_Impl.java
    I put the client jar file (2nd web service) obtained from the <clientgen> in the class path of the ear file (1st web service), but I have the same error.
    Can anybody help me?,
    jose luis

    Hello,
    I am using BEA weblogic 7.0 to deploy my applications. I have a web service and was able to deploy it sucessfully. I am trying to access this web service from another web service previously succesfully deployed too. When I call the second one, I have the next problem:
    java.io.IOException: unable to find the type mapping resource file for:tuoprec.sinsesion.TuOPRecService
    at weblogic.webservice.core.encoding.DefaultRegistry.<init>(DefaultRegistry.java:62)
    at weblogic.webservice.core.rpc.ServiceImpl.<init>(ServiceImpl.java:72)
    at tuoprec.sinsesion.TuOPRecService_Impl.<init>(TuOPRecService_Impl.java
    I put the client jar file (2nd web service) obtained from the <clientgen> in the class path of the ear file (1st web service), but I have the same error.
    Can anybody help me?,
    jose luis

  • How to use Finder in Yosemite?

    I'm looking for a simple guide on how to use the Finder app in Yosemite.  I have a number of questions, mostly around limiting search results.  I find that Finder and Spotlight generally produce too many search results.  For example:
    1. How do I find folders (not documents) on my Mac whose names start with the letters ABC?
    2. How do I ensure that hidden files are included in the search results?
    3.  Once I find the file I am looking for, what's the easiest way to copy the path name into another Finder window or tab, so that I can see all the files within that path name?
    I know how to accomplish the above tasks, but my techniques are multi-step, and they seem clunky and inefficient.  So I assume there must be better ways.  Hence the search for a good training guide.  Thx

    Have you started here?
    Apple - Support - Search
    From there you can narrow your search
    OS X Yosemite: If searching your Mac doesn’t return expected results
    e.g.
    OS X Yosemite: Find specific types of items when searching
    e.g.
    OS X Yosemite: Spotlight preferences
    e.g.
    OS X Yosemite: About Spotlight Suggestions
    e.g.
    OS X Yosemite: Narrow down search results

  • When/How to use - "search" parameter type in parameter like other types.

    We recently upgraded BI Publisher to 10.1.3.4. I saw new parameter type "search" in parameter section, when creating report. whats the use of it? How to use it ? like other parameter type Text, Menu,Hidden, Date.
    I couldn't find any help or release notes on this !
    Thanks
    Ayaps

    I started looking into this parameter type when our drop-down for customer numbers went from 13,000 (manageable) to 45,000 (completely unmanageable).
    I imagine this is supposed to mimic the effects of a "Long List" type LOV in Oracle Applications (as I had inquired about in [this thread|http://forums.oracle.com/forums/thread.jspa?threadID=895521&stqc=true|Large List of Values (LoV) hangs. Is there an equivalent for a long list?]), but performance-wise, "Search" does not seem to be any more efficient that using the "Menu" type LOV. Even with the help of having a partial string with a wildcard to match, the "Search" still takes too long to pull up to be of any use to us.

  • How to use "Find my iPad"?

    When you locate a device using Find My iPhone app, I type a message and it sends the message to the device. It also shows on my computer the location. My question is this: Once this is done, I can move my device to another location, turn it off or keep it on but the only thing that the computer will show is the location again. How do I get to the window that allows me to send a message/sound again? As an example, if I recover the device and then lose it shortly thereafter, going to the computer only allows me to see the map from the initial time that I lost it.

    I'm glad to help,
    Here's How:
    As noted above, you need to have set up Find My iPhone on your device prior to it getting lost or stolen. If you did, go to https://www.me.com/ in your web browser (there's also a Find My iPhone app [opens iTunes link] that you can install on another iOS device to track it. These instructions are for using the web-based tool).Log in using the account you used when setting up Find My iPhone. This may be your Apple ID/iTunes account.
    When you log in, Find My iPhone will immediately begin trying to locate your device. You'll see onscreen messages as it works. If the device is turned off, the map will display its last known location, not necessarily its current location. When it's turned back on, the map will update.If it finds your device, it will zoom in on the map and show the location of the device using a blue dot. When this happens, you can zoom in or out of the map, and view it in map, satellite, and hybrid modes, like any Google Map.
    When your device is found, a window will pop up over the blue dot (if it disappears because you clicked elsewhere on the page, just click the blue dot again to get it back). Click the window and you'll see the various options you have.The first option is to send a message to the device or have it play a sound. You can send a message--for instance, letting someone know how to return the device to you--that will appear onscreen like a text message.Sending a sound to the device is best when you think you've misplaced your device in the house or office and want help finding it.
    You can also click the "lock" button. This will allow you to remotely lock the device's screen and set a passcode (even if you hadn't previously used a passcode) that will prevent the thief from using your device or accessing your personal data.To do this, click the "lock" button, enter the 4-digit lock code you want to use twice, and then click "lock" again. Your device will now be inaccessible to the thief unless they guess your code.
    For even greater security, you can also remotely delete all data from the device. To do this, click the "wipe" button. There, you'll see a warning (basically, don't do this unless you're absolutely sure you want to). Click the box that says you understand what you're doing and click the "Erase All Data" button. This will delete all your data, preventing the thief from accessing it.If you get the device back, you can restore your data from backup.
    If you think your device is on the move, click the curved arrow at the top right corner of the screen to refresh and get a new fix on your device's location.
    hope this helps!!

  • Why can't I see my media in the left sidebar when using finder?

    I recently made the switch to Mac and I have some confusion. When using finder, I am not getting an option to browse through my media such as photos, videos and music. How do I get these folders to appear on my sidebar?
    Thankyou.

    N8 Thomas wrote:
    I then went into my finder preference section and changed my "New finder window show" to my computer's name.  At that point I could view and find anything within it.  this part got the job done. 
    "You don't, they only appear in open file dialogs and in tool panels like in iMovie, iPhoto.
    To view your media, you open the app that you use to manage that type of media." this on the other hand was zero help
    What you did doesn't show the Media Browser. It just shows the folders where your media is stored. You may be correct that was all that cobacc wanted. 
    The Media Browser shows the actual media in thumbnails so that you can preview the media.
    However, neither requires any Sharing services to be enabled.

Maybe you are looking for

  • Help with rescuing data from faulty disk

    Sorry the long wall of text, I wanted to explained everything as detailed as possible to not mess with the chronological order (TL; DR down below!) Ok, here's the thing. I have two hard drives, a ssd [sda] (for the OS [arch linux, ubuntu and win7], m

  • Pictures Question

    Is there any way to use one photo as a default screen (like a desktop) or show them in a way that each will fill the whole screen?

  • RRI & user exit variable

    Hello RRI specialist! I need to implement the following logic: user executes report 1 (sender) which contains characteristic Material (and several other characteristics). With the RRI the user must be abled to jump into report 2 (receiver)displaying

  • Making Text Editable in AE loses the effects from Photoshop.

    I have to animate text and have finally gotten that process down .. but one problem left. The original text is made in Photoshop CS3 with shadow, bevel/emboss effects on it. When I make the text editable in AE so I can animate it, the Photoshop effec

  • Displaying master child relationship using datatable??

    Hello, I want to display master child data using a datatable or a datalist or any other component ( if can be used for this purpose )....I mean i have a particular role and the nominees in that particular role to be displayed...how can this be achiev