Comment on precompiled in 1.4 source?

In 1.4 the java.nio.ByteBuffer class is documented.
But there is no java file for that class in the source.
There are several interesting files with a 'X' in the name.
This is the code from the top of ByteBufferAs-X-Buffer.java
  #warn This file is preprocessed before being compiled
  package java.nio;
  class ByteBufferAs$Type$Buffer$RW$$BO$               // package-private
    extends {#if[ro]?ByteBufferAs}$Type$Buffer{#if[ro]?$BO$}
  #if[rw]
    protected final ByteBuffer bb;
    protected final int offset;
#end[rw]
...Obviously not java.
Anyone recognize the precompiler syntax? It certainly isn't C/C++.
I would like a reference to the manual that explains this, if anyone knows what it is.
Presumably ByteBuffer comes from X-Buffer.java. That is preprocessed as well.

Either I am mis-reading the responses above or there is a misunderstanding about what I want.
I am not interested in the following:
-Instructions on building the source
-The java source for ByteBuffer.
-Explainations of what a pre-processor does (or how it works.)
I am interested in documentation or even the name of the specific tool use to pre-process the the files in the sun source tree.
There are several possibilities...
Now presumably this is something that exists on windows. Because without it, it means that building the windows jdk is a two step process, a unix build and a windows build. (And having worked with that before it can be a real nightmare.) Now they might be using a common (or not so common) unix tool that has been ported to windows. If that is the case and I knew the name, then I could find the documentation.
Or they could have written a pre-processor. If so then it should exist in the source tree. In this case there might not be any documentation. But I might be able to figure out the rules if I knew where to look.
Or they could have written it, but it is not in the source tree. But then the source tree is not buildable.

Similar Messages

  • Post Source Code Comments in DTR

    Is there a way to configure the DTR to take the activity check-in comments and add them as comments to the header of the source file(s)?  It would be nice if you could put the version number and the last author and the change comments at the begining of the source file.
    JC

    Hi Jason,
    No, this feature ("Keyword substitution", as it is known in the SCM world) is not yet available in DTR.
    Regards,
    Manohar

  • 903/902/BC4J can't get data-sources.xml conn pooling to work in production; help

    I have several BC4J ears deployed to a 903 instance of OC4J being configured as a standalone
    instance. I've had this problem since I started deploying in development on 902. So it's
    some basic problem that I've not mastered.
    I can't get data-sources.xml managed connection pooling to actually pool conn's. I'm wanting
    to declare my jndi jdbc source connection pool in j2ee/home/config/data-sources.xml.
    Have all BC4J apps get conns from this JNDI JDBC pool. I've removed all data-sources.xml from my BC4J ears,
    and published the jndi jdbc source in my oc4j common data-sources.xml. I've tested that this is
    the place controlling the conn URL/login passwd by commenting it out of config/data-sources.xml
    and my BC4J apps then throw exceptions, can't get conn.
    I've set the oc4j startup cmd line with the BC4J property to enabled connection pooling:
    -Djbo.doconnectionpooling=true
    symptom
    Connections are created and closed. Instead of being put back into the pool managed by oc4j,
    what ever BC4J is doing or my data-sources.xml is doing, the connections are just being created and
    closed.
    I can verify this via (solaris) lsof and netstat, where I see my oc4j instance under test load
    with only 1 or 2 conns to the db box, and the ephemeral port is tumbling, meaning a new socket is
    being opened for each conn. ;( grrrrrrr
    Does anyone have a clue as to why this is happening?
    Thanks, curt
    my data-sources.xml
    <data-sources>
         <data-source
            class="com.evermind.sql.DriverManagerDataSource"
            connection-driver="oracle.jdbc.driver.OracleDriver"
            ejb-location="jdbc/DEVDS"
            location="jdbc/DEVCoreDS"
            name="DEVDS"
            password="j2train"
            pooled-location="jdbc/DEVPooledDS"
            url="jdbc:oracle:thin:@10.2.1.30:1521:GDOC"
            username="jscribe"
            xa-location="jdbc/xa/DEVXADS"
            inactivity-timeout="300"
            max-connections="50"
            min-connections="40"
        />
    </data-sources>

    I've run another test using local data-source.xml, that's packaged in the .ear. Still
    pooling under BC4J doesn't work??
    A piece of info is that the 903 oc4j release notes states that global conn pooling doesn't
    work. Infering that the j2ee/home/config/data-sources.xml data sources aren't pooled or ??
    I just tested so called local connection pooling, where I edited the data-sources.xml that
    gets packaged in the ear, to include the min/max params and re-ran my test.
    Still, the AM creates a new conn, it's to a new socket, and closes the conn when done. Causing
    each conn to not be pooled, rather opened then closed to the DB box. As verified with lsof and
    netstat, checking the ephemeral port # on the DB box side, always changes, meaning it's a
    new socket and not an old pooled conn socket.
    ???? What the heck??
    Surely if the AM conn check out / return code works properly, OC4J's pooling JDBC driver would
    pool and not close the socket??
    Has anywone gotten JDBC Datasource connections in BC4J to actually be pooled under OC4J??
    Since I couldn't get this to work in my early 902 oc4j testing, and now can't get it to work
    still under 903 OC4J, either it's my config or BC4J AM's code or OC4J?
    Any thoughts on how to figure out what's not configed correctly or has a bug?
    Thanks, curt

  • Marker comments not being saved

    I've been adding markers and then comments to those markers in the source panel on clips from the project pane.  The marker comments show up in the markers pane.  However, upon opening a new clip and then returning to the clip with markers, all of the comments are gone.  The markers remain.  If there was a "duration" set, those are also gone.
    I'm running 6.0.2 on a Macbook Pro with Retina Display.  I've reset preferences and repaired permissions.  Any ideas?  I'm trying to log footage prior to cutting.

    Have you seen this thread, on the same, or very similar problem: http://forums.adobe.com/thread/1157963?tstart=0 ?
    Good luck,
    Hunt

  • 903/902/BC4J can't get OC4J data-sources.xml conn pooling to work in production: help

    [cross posted to the j2ee forum]
    I have several BC4J ears deployed to a 903 instance of OC4J being configured as a standalone
    instance. I've had this problem since I started deploying in development on 902. So it's
    some basic problem that I've not mastered.
    I can't get data-sources.xml managed connection pooling to actually pool conn's. I'm wanting
    to declare my jndi jdbc source connection pool in j2ee/home/config/data-sources.xml and
    have all BC4J apps get conns from this JNDI JDBC pool. I've removed all data-sources.xml from
    my BC4J ears, and published the jndi jdbc source in my oc4j common data-sources.xml.
    I've tested that this is the place controlling the conn URL/login passwd by commenting it
    out of config/data-sources.xml and my BC4J apps then throw exceptions, can't get conn.
    I've set the oc4j startup cmd line with the BC4J property to enabled connection pooling:
    -Djbo.doconnectionpooling=true
    symptom
    Connections are created and closed. Instead of being put back into the pool managed by oc4j,
    what ever BC4J is doing or my data-sources.xml is doing, the connections are just being created and
    closed.
    I can verify this via (solaris) lsof and netstat, where I see my oc4j instance under test load
    with only 1 or 2 conns to the db box, and the ephemeral port is tumbling, meaning a new socket is
    being opened for each conn. ;( grrrrrrr
    Does anyone have a clue as to why this is happening?
    Thanks, curt
    my data-sources.xml
    <data-sources>
         <data-source
            class="com.evermind.sql.DriverManagerDataSource"
            connection-driver="oracle.jdbc.driver.OracleDriver"
            ejb-location="jdbc/DEVDS"
            location="jdbc/DEVCoreDS"
            name="DEVDS"
            password="j2train"
            pooled-location="jdbc/DEVPooledDS"
            url="jdbc:oracle:thin:@10.2.1.30:1521:GDOC"
            username="jscribe"
            xa-location="jdbc/xa/DEVXADS"
            inactivity-timeout="300"
            max-connections="50"
            min-connections="40"
        />
    </data-sources>

    Thanks Leif,
    Yes, set it to the location jndi path.
    A piece of info is that the 903 oc4j release notes states that global conn pooling doesn't
    work. Infering that the j2ee/home/config/data-sources.xml data sources aren't pooled or ??
    I just tested so called local connection pooling, where I edited the data-sources.xml that
    gets packaged in the ear, to include the min/max params and re-ran my test.
    Still, the AM creates a new conn, it's to a new socket, and closes the conn when done. Causing
    each conn to not be pooled, rather opened then closed to the DB box. As verified with lsof and
    netstat, checking the ephemeral port # on the DB box side, always changes, meaning it's a
    new socket and not an old pooled conn socket.
    ???? What the heck??
    Surely if the AM conn check out / return code works properly, OC4J's pooling JDBC driver would
    pool and not close the socket??
    Has anywone gotten JDBC Datasource connections in BC4J to actually be pooled under OC4J??
    Since I couldn't get this to work in my early 902 oc4j testing, and now can't get it to work
    still under 903 OC4J, either it's my config or BC4J AM's code or OC4J?
    Any thoughts on how to figure out what's not configed correctly or has a bug?
    Thanks, curt

  • Accepting Text Edits from Comment review Ver 7

    I have successfully sent a pdf document out for review by email and comments and edit markups have been inserted. How can I accept/reject these edits with out retyping into either the PDF or the original Indesign file that the PDF was created from. I want to be able to send the PDF's for editing and review and simply accept the reviewers edits. I can't see how this is done. Can anyone help or point me to a good video podcast which can demonstrate how to do this?

    You're expecting that that comment and review works the way comments work in Word. That's because in Word the reviewer is working in the same application as the creator.
    There is no such connection between the comments in the PDF and the source InDesign document. You'll have to manually make the corrections marked in the PDF in InDesign.
    Some of us have been asking for that feature in InDesign but to no avail so far.

  • Web Dynpro for Open Source

    Dear Web Dynpro community,
    please have a look to Benny´s  blog under http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417200ID0731044050DB00226095944409325288End?blog=/pub/wlg/16004 raising the question whether Web Dynpro Java should become Open Source.
    It would be very interesting for me to here your opinion about this. What are the benefits in doing this? What are the risks? Would YOU like to actively contribute?
    Thanks in advance
    Jochen (Product Owner Web Dynpro Java)

    Hi all,
    <p>
    let me add some comments on some parts of the answers (also in the two blogs around this topic ..).
    In general it is really interesting to see that there seems to be a real interest for an "open sources" Web Dynpro for Java. This is motivating to go into this direction and to further discuss this here within SAP.
    <p>
    Some technical comments: I agree that an open-source WDJ (in the ideal world) would include also the WDJ tools parts and most probably also UR ( = Unified rendering) as the underlying (HTML) rendering technology. Also NWDI is somehow part of this game. BUT: I do not think that such a big step is realistic and feasible. Instead of this the first natural step for me would be to open-source the WDJ runtime part. This WDJ runtime contains all important parts needed to run WDJ applications (including the control libraries, the different CMI model implementations, the different clients and last but not least the server-abstraction layer).
    <p>
    This server abstraction layer (SAL) is most probably not know by the WDJ community as this was never rolled out in the past. As the name shows this layer encapsulates the server environment "hosting" the WDJ runtime. This allows us even today to run WDJ applications besides the SAP JEE  also in top of a simple TomCat installation. This version is used for a long time for control development but was never rolled out.
    <p>
    In the labs we have WDJ application running on Amazon Cloud, on Google App Engine, on Bea and also on top of Geronimo.
    Not all of these server abstraction implementations are fully working for the moment and not all features are available for all implementations - but it would be really straightforward to provide all these implementations - in the ideal case of course via a active open source community ,-)
    <p>
    Besides the platform implementations I see some other areas how an open sourced version of WDJ could be extended:
    <p>
    The combination of WDJ projects with Maven. This is also on our internal development list but due to prios this was never started.
    New controls. Also without open-sourcing the UR layer I see a lot of potential to extend existing controls or to build completly new controls.
    "Generation-free WDJ" - the idea would be to provide a WDJ version which is not depending on a complex generation framework. This would be of course one option but a "generation-free" WDJ would allow you to code your WDJ apps / components completly without any generation.
    Extending the usage scenarios for "system components" - this kind of WD components is used to extend WDJ runtime capabilities. Currently this is only used for the "Technical Info" and the UI of the implicit personalization but there is a lot of potential to extend this.
    <p>
    This is only a very short list of things I have currently in mind - for sure you will find more.
    <p>
    Have fun at TechEd Phoenix
    Best regards
    Jochen

  • Problem loading images in adobe bridge html photo gallery

    Can someone please, please help me!? I can not figure out why the images will not load in my adobe bridge html photo gallery cs5. I am not getting any error messages in Firefox and just the x in internet explorer.
    Here is the link to the gallery page on the site: http://www.irishwetlands.ie/Gallery.html
    I created the gallery as a html file for compatibality reasons due to accesbility issues with flash, and followed the general insturctions. The gallery folder is called wetlandsgallery and it is loading everything style-wise except the images themselves.
    I then made the gallery within an iframe so it would be more similar to the other pages on the site and contain the menu bar - but no change on the lack of images!
    Having looked around online I think it might be something to do with the bin folder?? Does this have some secutity somewhere thats protecting the images? I am also unsure if I filled in the FTP info correctly when creating the site as I was  getting the message "could not connect to FTP server" so I had to copy over the file from my hard drive to the server provider files. All the tutortials say to load your gallery and no mention of what to do when it won't connect to FTP server.
    If you could also tell me how to edit the image sizes that would be a great help too, as any size changes I make to either the bin/large or bin/thumnail images makes no difference in what appears in the preview?
    Help would be very greatfully appreciated as I am pulling my hair out trying to figure it out with no sucess and a possible bald patch!
    Thanks in advance,
    Áine

    Hello Áine,
    1. Is it really necessary to comment out this part in your source code?
    <!--<p><img src="images/GalleryImages/Gallery1_
                    -----stuff del-----
                    Grasshopper" title="Grasshopper" />
                     </p><br />-->
    Using your source code without these things I could see some of your images.
    2. Looking to your website with my IE8 into image 7 (e.g.) I saw this:
    what means there is a reference to a html file, not to an image. ???
    3. Here it becomes interesting (completely contrary to my point 2.), looking for your path:
    http://www.irishwetlands.ie/images/GalleryImages/Gallery1_Selection%20of%20IRWC%20members% 20at%20the%20Gearagh.jpg
    I can see this image in my IE8 (some people in front of a "wetland". But still I've to assume (as Murray already did too), that there is something wrong with your upload and the pathes.
    4. Allow me to make one brief point, we talked about here on several occasions:  please don't use spaces in image, folders or filenames. I'll quote Murray: In general, URL encoding spaces does not lead to problems. ... Whatever the details are, though, using spaces in filenames or paths is a bad practice which WILL lead to problems.
    5. What concerns the image sizes, maybe later (I didn't understand your question correctly I fear). There is still my language barrier, I'm sorry.
    Hans-Günter

  • Bouncing Ball without Main Method

    Hi. I needed to reserch on the Internet sample code for a blue bouncing ball which I did below. However, I try coding a main class to start the GUI applet and it's not working. How can I create the appropriate class that would contain the main method to start this particular application which the author did not provide? The actual applet works great and matches the objective of my research (http://www.terrence.com/java/ball.html). The DefaultCloseOperation issues an error so that's why is shown as remarks // below. Then the code in the Ball.java class issues some warning about components being deprecated as shown below. Thank you for your comments and suggestions.
    Compiling 2 source files to C:\Documents and Settings\Fausto Rivera\My Documents\NetBeansProjects\Rivera_F_IT271_0803B_01_PH3_DB\build\classes
    C:\Documents and Settings\Fausto Rivera\My Documents\NetBeansProjects\Rivera_F_IT271_0803B_01_PH3_DB\src\Ball.java:32: warning: [deprecation] size() in java.awt.Component has been deprecated
        size = this.size();
    C:\Documents and Settings\Fausto Rivera\My Documents\NetBeansProjects\Rivera_F_IT271_0803B_01_PH3_DB\src\Ball.java:93: warning: [deprecation] mouseDown(java.awt.Event,int,int) in java.awt.Component has been deprecated
      public boolean mouseDown(Event e, int x, int y) {
    2 warnings
    import javax.swing.*;
    public class BallMain {
    * @param args the command line arguments
    public static void main(String[] args) {
    Ball ball = new Ball();
    //ball.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    ball.setSize( 500, 175 ); // set frame size
    ball.setVisible( true ); // display frame
    import java.awt.*;*
    *import java.applet.*;
    import java.util.Vector;
    // Java Bouncing Ball
    // Terrence Ma
    // Modified from Java Examples in a Nutshell
    public class Ball extends Applet implements Runnable {
    int x = 150, y = 100, r=50; // Position and radius of the circle
    int dx = 8, dy = 5; // Trajectory of circle
    Dimension size; // The size of the applet
    Image buffer; // The off-screen image for double-buffering
    Graphics bufferGraphics; // A Graphics object for the buffer
    Thread animator; // Thread that performs the animation
    boolean please_stop; // A flag asking animation thread to stop
    /** Set up an off-screen Image for double-buffering */
    public void init() {
    size = this.size();
    buffer = this.createImage(size.width, size.height);
    bufferGraphics = buffer.getGraphics();
    /** Draw the circle at its current position, using double-buffering */
    public void paint(Graphics g) {
    // Draw into the off-screen buffer.
    // Note, we could do even better clipping by setting the clip rectangle
    // of bufferGraphics to be the same as that of g.
    // In Java 1.1: bufferGraphics.setClip(g.getClip());
    bufferGraphics.setColor(Color.white);
    bufferGraphics.fillRect(0, 0, size.width, size.height); // clear the buffer
    bufferGraphics.setColor(Color.blue);
    bufferGraphics.fillOval(x-r, y-r, r*2, r*2); // draw the circle
    // Then copy the off-screen buffer onto the screen
    g.drawImage(buffer, 0, 0, this);
    /** Don't clear the screen; just call paint() immediately
    * It is important to override this method like this for double-buffering */
    public void update(Graphics g) { paint(g); }
    /** The body of the animation thread */
    public void run() {
    while(!please_stop) {
    // Bounce the circle if we've hit an edge.
    if ((x - r + dx < 0) || (x + r + dx > size.width)) dx = -dx;
    if ((y - r + dy < 0) || (y + r + dy > size.height)) dy = -dy;
    // Move the circle.
    x += dx; y += dy;
    // Ask the browser to call our paint() method to redraw the circle
    // at its new position. Tell repaint what portion of the applet needs
    // be redrawn: the rectangle containing the old circle and the
    // the rectangle containing the new circle. These two redraw requests
    // will be merged into a single call to paint()
    repaint(x-r-dx, y-r-dy, 2*r, 2*r); // repaint old position of circle
    repaint(x-r, y-r, 2*r, 2*r); // repaint new position of circle
    // Now pause 50 milliseconds before drawing the circle again.
    try { Thread.sleep(50); } catch (InterruptedException e) { ; }
    animator = null;
    /** Start the animation thread */
    public void start() {
    if (animator == null) {
    please_stop = false;
    animator = new Thread(this);
    animator.start();
    /** Stop the animation thread */
    public void stop() { please_stop = true; }
    /** Allow the user to start and stop the animation by clicking */
    public boolean mouseDown(Event e, int x, int y) {
    if (animator != null) please_stop = true; // if running request a stop
    else start(); // otherwise start it.
    return true;
    }

    FRiveraJr wrote:
    I believe that I stated that this not my code and it was code that I researched.and why the hll should this matter at all? If you want help here from volunteers, your code or not, don't you think that you should take the effort to format it properly?

  • Java and Open Adaptor

    I am trying to run a java class. The java class is using openadaptor in order to upload data, but I am getting an error when I run the application:
    SEVERE: AbstractReader Source failed creating instance of DOStringReader: DOStringReaderWriter: AttName or NumAttributes properties not set
    AbstractReader Source failed creating instance of DOStringReader: DOStringReaderWriter: AttName or NumAttributes properties not set
    at org.openadaptor.adaptor.AbstractReader.setDOStringReader(AbstractReader.java:932)
    at org.openadaptor.adaptor.AbstractReader.init(AbstractReader.java:256)
    at org.openadaptor.adaptor.AbstractSimpleSource.init(AbstractSimpleSource.java:551)
    at org.openadaptor.adaptor.standard.FileSource.init(FileSource.java:147)
    at org.openadaptor.adaptor.RunAdaptor.createSourcesAndSinks(RunAdaptor.java:1345)
    at org.openadaptor.adaptor.RunAdaptor.<init>(RunAdaptor.java:401)
    at server.system.CIInterfaceSinkAdapter.Execute(CIInterfaceSinkAdapter.java:107)
    at server.parts._Interface._Unit.Interface_Unit_Process_Import_Payment.Process(Interface_Unit_Process_Import_Payment.java:44)
    at server.parts._Interface.Interface_Import_Payment.Process(Interface_Import_Payment.java:41)
    at server.system.CIBatchService.ExecuteProcess(CIBatchService.java:178)
    at server.system.CIServiceFactoryBatch.main(CIServiceFactoryBatch.java:74)
    May 6, 2008 4:06:12 PM server.system.CIBatchService ExecuteProcess
    INFO: server.parts._Interface.Interface_Import_Payment ended at 2008-05-06 16:06
    Could somebody help me?
    here is the configuration file
    # Adaptor adaptor - Component Names
    adaptor.Controller.Name = Controller
    adaptor.Logging.Name = Logging
    adaptor.Component1.Name = Source
    adaptor.Component2.Name = Sink
    # Adaptor adaptor - Component Classes
    adaptor.Controller.ClassName = org.openadaptor.adaptor.SimpleController
    adaptor.Source.ClassName = org.openadaptor.adaptor.standard.FileSource
    adaptor.Sink.ClassName = org.openadaptor.adaptor.LocalSink
    # Adaptor adaptor - Component Links
    adaptor.Source.LinkTo1 = Sink
    # Adaptor adaptor - Component Controller
    # Adaptor adaptor - Component Logging
    adaptor.Logging.LogSetting1 = FAULT DEFAULT
    adaptor.Logging.LoggingPackageInfo = true
    adaptor.Logging.LoggingThreadInfo = true
    # Adaptor adaptor - Component Source FileSource
    adaptor.Source.DOStringReader = org.openadaptor.dostrings.FixedWidthStringReader
    # Adaptor adaptor - Component Source FixedWidthStringReader
    adaptor.Source.EmptyStringAsNull = true
    adaptor.Source.Type1 = File_Header
    adaptor.Source.File_Header.TypeFieldMatch1 = "~"
    adaptor.Source.File_Header.TypeFieldNumber = 1
    adaptor.Source.File_Header.FieldWidth1 = 1
    adaptor.Source.File_Header.FieldWidth2 = 2
    adaptor.Source.File_Header.FieldWidth3 = 2
    adaptor.Source.File_Header.FieldWidth4 = 2
    adaptor.Source.File_Header.AttName1 = Record_File
    adaptor.Source.File_Header.AttName2 = Header_desig
    adaptor.Source.File_Header.AttName3 = Major_Version
    adaptor.Source.File_Header.AttName4 = Minor_Version
    adaptor.Source.Type2 = Payment_Header
    adaptor.Source.Payment_Header.TypeFieldMatch1 = "10"
    adaptor.Source.Payment_Header.TypeFieldNumber = 1
    adaptor.Source.Payment_Header.FieldWidth1 = 2
    adaptor.Source.Payment_Header.FieldWidth2 = 3
    adaptor.Source.Payment_Header.FieldWidth3 = 25
    adaptor.Source.Payment_Header.FieldWidth4 = 8
    adaptor.Source.Payment_Header.FieldWidth5 = 10
    adaptor.Source.Payment_Header.FieldWidth6 = 8
    adaptor.Source.Payment_Header.FieldWidth7 = 13
    adaptor.Source.Payment_Header.AttName1 = Record_File
    adaptor.Source.Payment_Header.AttName2 = Payment_Record_Identifier
    adaptor.Source.Payment_Header.AttName3 = Payment_Code
    adaptor.Source.Payment_Header.AttName4 = Payment_Date
    adaptor.Source.Payment_Header.AttName5 = Batch_Number
    adaptor.Source.Payment_Header.AttName6 = Detail_Count
    adaptor.Source.Payment_Header.AttName7 = Total_Amount
    adaptor.Source.Type3 = Payment_Detail
    adaptor.Source.Payment_Detail.TypeFieldMatch1 = "11"
    adaptor.Source.Payment_Detail.TypeFieldNumber = 1
    adaptor.Source.Payment_Detail.FieldWidth1 = 2
    adaptor.Source.Payment_Detail.FieldWidth2 = 3
    adaptor.Source.Payment_Detail.FieldWidth3 = 15
    adaptor.Source.Payment_Detail.FieldWidth4 = 1
    adaptor.Source.Payment_Detail.FieldWidth5 = 13
    adaptor.Source.Payment_Detail.FieldWidth6 = 25
    adaptor.Source.Payment_Detail.FieldWidth7 = 8
    adaptor.Source.Payment_Detail.FieldWidth8 = 5
    adaptor.Source.Payment_Detail.FieldWidth9 = 5
    adaptor.Source.Payment_Detail.FieldWidth10 = 13
    adaptor.Source.Payment_Detail.AttName1 = Record_File
    adaptor.Source.Payment_Detail.AttName2 = Payment_Record_Ide
    adaptor.Source.Payment_Detail.AttName3 = Account_Number
    adaptor.Source.Payment_Detail.AttName4 = Check_Digit
    adaptor.Source.Payment_Detail.AttName5 = Payment_Amount
    adaptor.Source.Payment_Detail.AttName6 = Payment_Description
    adaptor.Source.Payment_Detail.AttName7 = Payment_Date
    adaptor.Source.Payment_Detail.AttName8 = Sequence_Number
    adaptor.Source.Payment_Detail.AttName9 = Donation_Code
    adaptor.Source.Payment_Detail.AttName10 = Scan_Line_Amount
    adaptor.Source.Type4 = Payment_Trailer
    adaptor.Source.Payment_Trailer.TypeFieldMatch1 = "20"
    adaptor.Source.Payment_Trailer.TypeFieldNumber = 1
    adaptor.Source.Payment_Trailer_Record.FieldWidth1 = 2
    adaptor.Source.Payment_Trailer_Record.FieldWidth2 = 2
    adaptor.Source.Payment_Trailer_Record.FieldWidth3 = 8
    adaptor.Source.Payment_Trailer_Record.FieldWidth4 = 13
    adaptor.Source.Payment_Trailer_Record.AttName1 = Record_File
    adaptor.Source.Payment_Trailer_Record.AttName2 = Payment_Record_Id
    adaptor.Source.Payment_Trailer_Record.AttName3 = Detail_Count_T
    adaptor.Source.Payment_Trailer_Record.AttName4 = Payment_Trailer_Amt
    adaptor.Source.Type2 = File_Trailer
    adaptor.Source.File_Trailer.TypeFieldMatch1 = "99"
    adaptor.Source.File_Trailer.TypeFieldNumber = 1
    adaptor.Source.File_Trailer.FieldWidth1 = 2
    adaptor.Source.File_Trailer.FieldWidth2 = 5
    adaptor.Source.File_Trailer.AttName1 = Record_File
    adaptor.Source.File_Trailer.AttName2 = Count_Number_Import_Payment
    # Adaptor adaptor - Component Sink LocalSink

    This is my understanding from reading a few other boards. OpenOffice 3.2 apparently tests for the validity of the Java Runtime Environment by checking some character strings returned by some system functions. The latest version of the JRE from Apple (apparently this was associated with Snow Leopard) did not match the character strings expected by OpenOffice 3.2 and was then therefore rejected as being "corrupted". The release candidate versions of Open Office 3.3 have apparently had this problem corrected, although I have no idea whether it is by adding character strings to the test or eliminating the test entirely. In OpenOffice 3.2, you can turn off use of the JRE, but this may invalidate some third-party plugins.
    I strongly suspect that this may be related to the fact that Apple has said that they want to have Oracle provide the JRE updates so that the updates in operating systems and Oracle products are in sync. This may also mesh with some other comments about the relationship between open source JRE development and Oracle. (This is the vastly misquoted messages about Java being deprecated.)
    The following is my understanding of the options.
    Load an earlier version of the JRE and get OpenOffice to use it. I'm not sure if this can be done.
    Use NeoOffice, which apparently made the required change to the tests for JRE's.
    Download a release candidate version of OpenOffice 3.3.
    Modify the code yourself and compile your own version. (I would not recommend that choice.)

  • T41---proc​ess rundll32.e​xe occupied 100% cpu usage and caused slow performanc​e.

    hi i have a big problem whit the performance of my laptop. I bought a extra 4gb ram for the second slot that not exist; and still continuos getting my cpu usage at 100% whit 2 programs running like office and google crhome.
    i have this specf of my latop:
    - procesor: amd c-60 apu  whit radeon hd graphics 1,00 ghz
    - ram: 4gz 
    system type: 64-bit  OS
    winows 7 ultimate
    please tell me if i have to install another OS, made changes in my configuration or just buy another laptop.
    tks

    Rundll32.exe Using High CPU on Windows 8.1
    I use a Lenovo T440s laptop for my service calls and when I need to do work remotely. My laptop runs Windows 8.1 Professional. I love this laptop and it has proved to be tough as well as extremely fast. I noticed a couple weeks ago that my battery was going dead after about an hour of usage. I also noticed that my cooling fan in the laptop was running louder than normal. I decided to open Task Manger on my laptop to see what the issue was. I soon noticed that a process called rundll32.exe was using around 25 percent of my CPU. I killed the process and everything returned to normal.
    A few days later, my battery was going dead very rapidly. My cooling fan was on almost constantly and was blowing warm air. I opened Task Manger and sure enough, rundll32.exe was using 25% of my CPU again. I killed the process and everything was fine. It wasn’t long and my laptop was doing the exact same thing as I described before. I decided it was time to get to the bottom of this issue. Here is how I troubleshot what program was using the rundll32.exe and in the process was killing my battery.
    Step One: I downloaded Process Explorer. This is an excellent tool. It is similar to Task Manager but goes into way more depth on the processes and dlls that are running. I extracted the download and then ran Process Explorer as an administrator.
    Step Two: One of the first things I noticed was rundll32.exe was using 23 percent of my CPU again. 
    I right-clicked on the rundll32.exe process and selected properties. I clicked on the Image tab and at once saw the culprit. A utility to monitor and gauge my battery usage, called PwrMgrBkGndMonitor, was draining my battery instead of saving it.
    Step Three: After a little digging around in my installed programs I located a program called Lenovo Settings Dependency Package. PwrMgrBkGndMonitor was installed in the Lenovo Settings Dependency Package.
    I didn’t use this program and decided I didn’t need it. I uninstalled the program and restarted my laptop. I haven’t had a problem with the rundll32.exe using up my CPU since I uninstalled Lenovo Settings Dependency Package.
    If you are experiencing the same symptoms has stated above and you are running a Lenovo laptop with Windows 8.1, this may be your issue. However, before you uninstall the program I would recommend using Process Explorer. Process Explorer will help you determine the exact program that is giving you issues before blindly uninstalling and killing services. I hope my troubleshooting steps can help you find program is making rundll32.exe use high CPU usage. Let me know in the comments if this helped you!
    Source: techspeeder.com

  • What type of hard drive replacement should i use to replace the hard drive in my first generation mac min 2005 model a 1103?

    what type of hard drive replacement should I use to replace the hard drive on my first generation mac mini model a 1103?   G4 1.25 mhz 40 gb hd 1 gb. mem.

    You'll need a 2.5" parallel ATA interface hard drive. Most are 5400RPM, forget 7200RPM drives and slower 4200rpm drives.  You don't want a serial ATA (SATA) drive, as that has a different connector and won't work.
    One source I've used for drives is Newegg, and their parallel ATA hard drives are at http://www.newegg.com/Product/ProductList.aspx?Submit=ENE&N=100007605%2060000344 2&IsNodeId=1&name=IDE%20Ultra%20ATA100%20%2f%20ATA-6 .  Newegg also has many user comments about the drives. Other sources are OWC at http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/ (Click on ATA on the left) . Look for at least a 3 year warranty. 

  • SQL Server 2000 and BPEL configuration issues

    I am attempting to get SQL Server 2000 to work with BPEL PM Server, and have followed a similar set of instructions as provided in a previously posted document regarding the switch from oracle lite to oracle production. I am following the OC4J route. I've seen a previous posting on this, however, I am elaborating a little more on the configuration details here and the difficulties that I am encountering.
    I'm am using the following software:
    1) SQL Server 2000 (w/ SP3)
    2) SQL Server 2000 JDBC Driver (SP3 latest version)
    3) BPEL PM (GA release)
    Here's what I've done:
    1) setup the database in SQL Server 2000 (named: ORABPEL). then ran the ddl scripts that came with the BPEL installation for sql server. there were two scripts, one for domain and the other for server. the commandlines to run these scripts:
    sql -Uuser -Ppassword -ddatabase
    -i c:\orabpel\system\database\scripts\domain_sqlserver.ddl
    -o c:\orabpel\system\database\scripts\domain_sqlserver.out
    2) installed stored procedures for JTA. this is documented in the JDBC driver help file.
    3) modified the library paths in application.xml as followed:
    <!-- SQL2K JDBC LIBS -->
    <library path="C:\Program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msbase.jar"/>
    <library path="C:\Program files\Microsoft SQL Server 2000 Driver for JDBC\lib\msutil.jar"/>
    <library path="C:\Program files\Microsoft SQL Server 2000 Driver for JDBC\lib\mssqlserver.jar"/>
    4) modified the datasources in the data-sources.xml:
    - first comment out the oracle lite data-source
    - add datasources for mssql 2000:
    <data-source class="com.evermind.sql.DriverManagerDataSource"
         name="BPELServerDataSource"
         location="loc/BPELServerDataSource"
         xa-location="BPELServerDataSource"
         ejb-location="jdbc/BPELServerDataSource"
         connection-driver="com.microsoft.jdbc.sqlserver.SQLServerDriver"
         url="jdbc:microsoft:sqlserver://127.0.0.1:1433;SelectMethod=cursor;User=<username>;Password=<password>;DatabaseName=ORABPEL">
    </data-source>
    <data-source class="com.evermind.sql.DriverManagerDataSource"
         name="BPELSamplesDataSource"
         location="jdbc/BPELSamplesDataSource"
         xa-location="BPELSamplesDataSource"
         ejb-location="jdbc/BPELSamplesDataSource"
         connection-driver="com.microsoft.jdbc.sqlserver.SQLServerDriver"
         url="jdbc:microsoft:sqlserver://127.0.0.1:1433;SelectMethod=cursor;User=<username>;Password=<password>;DatabaseName=ORABPEL">
    </data-source>
    <data-source class="com.evermind.sql.DriverManagerDataSource"
    name="AdminConsoleDateSource"
    location="jdbc/AdminConsoleDateSource"
    xa-location="AdminConsoleDateSource"
    ejb-location="jdbc/AdminConsoleDateSource"
         connection-driver="com.microsoft.jdbc.sqlserver.SQLServerDriver"
         url="jdbc:microsoft:sqlserver://127.0.0.1:1433;SelectMethod=cursor;User=<username>;Password=<password>;DatabaseName=ORABPEL">
    </data-source>
    after starting the BPEL PM Server, I got the following set of error messages:
    Loading processes for BPEL domain "default" ...
    <2005-06-02 09:36:44,482> <ERROR> <default.collaxa.cube.sensor> <PCException::<i
    nit>> Sensors not supported.
    <2005-06-02 09:36:44,482> <ERROR> <default.collaxa.cube.sensor> <PCException::<i
    nit>> Sensors are not supported on this database platform.
    <2005-06-02 09:36:44,482> <ERROR> <default.collaxa.cube.sensor> <PCException::<i
    nit>> If sensor functionality is required, please switch to a supported platform
    After this I went and changed the class tags to: com.microsoft.jdbcx.sqlserver.SQLServerDataSource
    restarted the server and got the following:
    <2005-06-02 09:22:52,531> <INFO> <collaxa> <ConnectionFactoryImpl::init> Initial
    ized connection factory jdbc/BPELServerDataSource
    05/06/02 09:23:06 ORABPEL-04077
    Cannot fetch a datasource connection.
    The process domain was unable to establish a connection with the datasource with
    the connection URL "loc/BPELServerDataSource". The exception reported is: Cann
    ot fetch a datasource connection.
    The process domain was unable to establish a connection with the datasource with
    the connection URL "loc/BPELServerDataSource". The exception reported is: [Mic
    rosoft][SQLServer 2000 Driver for JDBC]Unable to connect. DataSource property s
    erverName must be specified.
    Please check that the machine hosting the datasource is physically connected to
    the network. Otherwise, check that the datasource connection parameters (user/p
    assword) is currently valid.
    Please check that the machine hosting the datasource is physically connected to
    the network. Otherwise, check that the datasource connection parameters (user/p
    assword) is currently valid.

    Hi,
    I just saw your post message about configuring SQL server 2000 with Oracle BPLE. Have you configured it successfully or still encountered any problem.
    I am new to Oracle BPEL. Want to know if Oracle BPEL can use MSFT SQL server 2000 as the repository entirely, therefore, we don't need Oracle (or Oracle light database).
    Will really appreciate if you can share information and experience to configure SQL 2000 with Oracle BPEL.
    Thank you so much in advance.
    Leey

  • Dbms_metadata.get_ddl and select_catalog_role

    Hi,
    We have been requested to give support staff the ability to see table triggers, stored procedures, etc only for specific schemas and they don't have access to the schema password. We can't give them SELECT_CATALOG_ROLE because they are not allowed to see all schemas. I wish there were a way to grant a version of SELECT_CATALOG_ROLE for only certain schemas......
    I've played around with dbms_metadata.get_ddl with no luck (as per the documentation, but just had to try it anyway). I've even considered the script below, but it requires creating a view under the SYS schema and I can't figure out how to add triggers to the view.
    Any ideas would be greatly appreciated!
    Thanks,
    Susan
    accept 1 prompt "Enter Owner:"
    create or replace view all_dev_source
    (OWNER, NAME, TYPE, LINE, TEXT)
    as
    select u.name, o.name,
    decode(o.type#, 7, 'PROCEDURE', 8, 'FUNCTION', 9, 'PACKAGE',
    11, 'PACKAGE BODY', 13, 'TYPE', 14, 'TYPE BODY',
    'UNDEFINED'),
    s.line, s.source
    from sys.obj$ o, sys.source$ s, sys.user$ u
    where
    u.name = upper('&&1') and
    o.obj# = s.obj#
    and o.owner# = u.user#
    and o.type# in (7, 8, 9, 11, 13, 14)
    and
    o.owner# in (userenv('SCHEMAID'), 1 /* PUBLIC */)
    or
    (o.type# = 7 or o.type# = 8 or o.type# = 9)
    and
    o.obj# in (select obj# from sys.objauth$
    where grantee# in (select kzsrorol from x$kzsro)
    and privilege# = 12 /* EXECUTE */)
    or
    exists
    select null from sys.sysauth$
    where grantee# in (select kzsrorol from x$kzsro)
    and
    /* procedure */
    (o.type# = 7 or o.type# = 8 or o.type# = 9)
    or
    privilege# = -144 /* EXECUTE ANY PROCEDURE */
    or
    privilege# = -141 /* CREATE ANY PROCEDURE */
         or
    /* package body */
    o.type# = 11 or
    privilege# = -141 /* CREATE ANY PROCEDURE */
    or
    /* type */
    o.type# = 13
    or
    privilege# = -184 /* EXECUTE ANY TYPE */
    or
    privilege# = -181 /* CREATE ANY TYPE */
         or
    /* type body */
    o.type# = 14 and
    privilege# = -181 /* CREATE ANY TYPE */
    union
    select u.name, o.name, 'JAVA SOURCE', s.joxftlno, s.joxftsrc
    from sys.obj$ o, x$joxfs s, sys.user$ u
    where
    u.name = upper('&&1') and
    o.obj# = s.joxftobn
    and o.owner# = u.user#
    and o.type# = 28
    and
    o.owner# in (userenv('SCHEMAID'), 1 /* PUBLIC */)
    or
    o.obj# in (select obj# from sys.objauth$
    where grantee# in (select kzsrorol from x$kzsro)
    and privilege# = 12 /* EXECUTE */)
    or
    exists
    select null from sys.sysauth$
    where grantee# in (select kzsrorol from x$kzsro)
    and
    /* procedure */
    privilege# = -144 /* EXECUTE ANY PROCEDURE */
    or
    privilege# = -141 /* CREATE ANY PROCEDURE */
    comment on table all_dev_source is
    'Current source on stored objects that user is allowed to create'
    comment on column all_dev_source.OWNER is
    'Owner of the object'
    comment on column all_dev_source.NAME is
    'Name of the object'
    comment on column all_dev_source.TYPE is
    'Type of the object: "TYPE", "TYPE BODY", "PROCEDURE", "FUNCTION",
    "PACKAGE", "PACKAGE BODY" or "JAVA SOURCE"'
    comment on column all_dev_source.LINE is
    'Line number of this line of source'
    comment on column all_dev_source.TEXT is
    'Source text'
    grant select on all_dev_source to <username>
    /

    user632322 wrote:
    I think I am misunderstanding your reply becauseI had to be more specific. By "privileged user" I meant SYS. SELECT_CATALOG_ROLE is a role itself, so it will be ignored by definer rights SP/SF. That is why it has to be owned by privileged user SYS:
    SQL> select * from v$version
      2  /
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> show user
    USER is "SYS"
    SQL> create user u1 identified by u1 default tablespace users quota unlimited on users
      2  /
    User created.
    SQL> grant create session to u1
      2  /
    Grant succeeded.
    SQL> create or replace
      2    function get_ddl(
      3                     p_type varchar2,
      4                     p_object varchar2,
      5                     p_owner varchar2
      6                    )
      7      return clob
      8      is
      9      begin
    10          return dbms_metadata.get_ddl(p_type,p_object,p_owner);
    11  end;
    12  /
    Function created.
    SQL> grant execute on get_ddl to u1
      2  /
    Grant succeeded.
    SQL> connect u1/u1
    Connected.
    SQL> set serveroutput on
    SQL> exec dbms_output.put_line(dbms_metadata.get_ddl('TABLE','EMP','SCOTT'));
    BEGIN dbms_output.put_line(dbms_metadata.get_ddl('TABLE','EMP','SCOTT')); END;
    ERROR at line 1:
    ORA-31603: object "EMP" of type TABLE not found in schema "SCOTT"
    ORA-06512: at "SYS.DBMS_SYS_ERROR", line 105
    ORA-06512: at "SYS.DBMS_METADATA", line 2806
    ORA-06512: at "SYS.DBMS_METADATA", line 4333
    ORA-06512: at line 1
    SQL> exec dbms_output.put_line(sys.get_ddl('TABLE','EMP','SCOTT'));
      CREATE TABLE "SCOTT"."EMP"
       (    "EMPNO" NUMBER(4,0),
            "ENAME" VARCHAR2(10),
            "JOB" VARCHAR2(9),
            "MGR" NUMBER(4,0),
            "HIREDATE" DATE,
            "SAL"
    NUMBER(7,2),
            "COMM" NUMBER(7,2),
            "DEPTNO" NUMBER(2,0),
             CONSTRAINT
    "PK_EMP" PRIMARY KEY ("EMPNO")
      USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255
    COMPUTE STATISTICS
      STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS
    2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "USERS"  ENABLE,
             CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO")
    REFERENCES "SCOTT"."DEPT" ("DEPTNO") ENABLE
       ) PCTFREE 10 PCTUSED 40 INITRANS
    1 MAXTRANS 255 NOCOMPRESS LOGGING
      STORAGE(INITIAL 65536 NEXT 1048576
    MINEXTENTS 1 MAXEXTENTS 2147483645
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
    BUFFER_POOL DEFAULT)
      TABLESPACE "USERS"
    PL/SQL procedure successfully completed.
    SQL> Now one more correction to my previous reply. Driver table shoudl not be owned by SYS (that would be bad practice). Create it in some other schema. Just make sure your "support staff" has no access to it.
    SY.

  • Loading the different result sets in the same sequence for the target table

    Dear all,
    I have 5 tables say A,B,C,D as my source and i made 3 joins P,Q,R .the result sets of these 3 joins are loading into a target table X but with 3 different targets with same table name.
    I created one sequence say Y as my target table has primary key and mapped to three different targets for the same target table which i need to load.
    But after deployed and executed successfully ,i am able to load the data from three join result sets with differeent sequence numbers.
    I am looking to load data like this.
    If First Result set P has 10 Records,SEcond Result Set Q Has 20 and the third result set has 30 records then while loading data into first target it creates the seq for the 10 records from 1..10 and while loading the data for second result set ,it creates the sequence from 11 ...20 and while loading the third target with the third result set it creates the sequence from 21 ----30.
    But i am looking to load the three result sets in the sequence 1to 10 but not like creating fresh sequence for each result set.
    how can we achieve this in owb?
    any solution for this will be appreciated.
    thank you
    kumar

    My design is like following
    SRC1
    ---->Join1--------------------------->Target1( Table X)<-----Seq1
    SRC2
    SRC3
    ----> Join2----------->Target2(Table X)<----Seq1
    SRC4
    -----> Join3 -------> Target3(Table X)<-----Seq1
    SRC5
    Here the three 3 targets are for the same Table X as well sequence is same i.e seq1
    If the First Join has 10 rows ,Seq1 generates sequence in 1 to 10 while loading target1
    But while loading second target,Same Seq1 is generating new sequence from 11 but i am looking to load target2 and target 3 starting from sequence 1 but not from 11 or so.
    As per your comments :
    you want to load 3 sources to one target with same sequence numbers?
    yes
    Are you doing match from the other two sources on first source by id provided by sequence (since this is the primary key of the table)?
    No
    can you please tell me how to approach for this?
    Thank You
    Kumar

Maybe you are looking for

  • Exception [TOPLINK-4002]

    Hi,I have no idea,help.thanks javax.ejb.EJBException: nested exception is: java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:      java.rmi.RemoteException: null; nested exception is:      Exception [TOPLINK-400

  • How can I get my .rx2 files to not be Unix Executables?

    I've never had any trouble importing rex files into Sperctrasonix RMX until today, when I bought some loops for RMX.The problem seems to be that they are showing up as Unix Executable files even though the extension is .rx2 on each file.  The icon is

  • Printing on epson cold press bright paper with Epson 2200 in Photoshop CS5

    The printer is old. Epson chooses neither to support it, nor does it seem to have anyone in their tech support knowledgeable about paper profiles. The paper is the whitest of white, and a bit thicker and stiffer than any of the usual watercolor paper

  • Visual effects in iTunes

    Can anyone tell me what software was used to get the Visual effects in iTunes? I didn't know where to post this query so Using iTunes won out. cheers stevebaz eMac   Mac OS X (10.3.9)   eMac   Mac OS X (10.3.9)  

  • I am unable to use safari

    My safari on Snow leopard was running fine until the last update. Since then it has never worked. Are other people facing similar problems