[svn:sb-natebeck] 7814: Resurrecting mx.graphics. Parser into my sandbox to start on FXG run-time parser development.

Revision: 7814
Author:   [email protected]
Date:     2009-06-12 17:21:14 -0700 (Fri, 12 Jun 2009)
Log Message:
Resurrecting mx.graphics.Parser into my sandbox to start on FXG run-time parser development.
Added Paths:
    flex/sdk/sandbox/natebeck/trunk/frameworks/projects/framework/src/mx/graphics/Parser.as

Revision: 7814
Author:   [email protected]
Date:     2009-06-12 17:21:14 -0700 (Fri, 12 Jun 2009)
Log Message:
Resurrecting mx.graphics.Parser into my sandbox to start on FXG run-time parser development.
Added Paths:
    flex/sdk/sandbox/natebeck/trunk/frameworks/projects/framework/src/mx/graphics/Parser.as

Similar Messages

  • [svn:sb-natebeck] 7811: dropping current trunk setup in my sandbox for a re-sync

    Revision: 7811
    Author:   [email protected]
    Date:     2009-06-12 17:06:12 -0700 (Fri, 12 Jun 2009)
    Log Message:
    dropping current trunk setup in my sandbox for a re-sync
    Removed Paths:
        flex/sdk/sandbox/natebeck/trunk/

    Revision: 7811
    Author:   [email protected]
    Date:     2009-06-12 17:06:12 -0700 (Fri, 12 Jun 2009)
    Log Message:
    dropping current trunk setup in my sandbox for a re-sync
    Removed Paths:
        flex/sdk/sandbox/natebeck/trunk/

  • Error Message when running a parse

    When running a parse on a universe this error showed up when using a MS SQL Server 2005 OLE connection:
    Parse failed:  Exception:  DBD,[Microsoft OLE  DB Provider for SQL Server} : Object was open
    What is this telling me?  Did someone get an exclusive lock on the object in question or did this name with the "/" cause the problem:
    Stand Alone Domain Scores /PG Domain Apple
    Tom Nather

    Thomas,
    What is this telling me? Did someone get an exclusive lock on the object in question or did this name with the "/" cause the problem:
    Stand Alone Domain Scores /PG Domain Apple
    Is it possible for you to locate the offending object (Stand Alone Domain Scores /PG Domain Apple) in your universe and double-click it?  Once you double-click it will bring up the object editor.  From there you should be able to see any customized SQL code that was possibly applied and copy/paste to another editor and run.
    If there is no special SQL code, then copy/paste what you have, but in your editor you'll have to "doctor" it a bit.
    For instance, if the item has "xyz.column_a", then rewrite your SQL code in your editor as
    select xyz.column_a from xyz
    Thanks,
    John

  • FCP 10.1.3 multiple graphic images into one frame

    Hi - How do I put multiple graphic images into one frame? - so it kind of looks like a video wall - except these are still images. I can do it manually but it's not precise. Anyone found a way other than this? Thanks.

    Here is my quick and dirty generator called "9 Pictures": https://www.dropbox.com/s/92c536wgesh2yzj/9%20Pictures.zip?dl=0
    To install it, unzip the file and place the folder inside /Users/yourname/Movies/Motion Templates/Generators
    It will look like this in FCP X. You just have to click each drop zone icon in the inspector and then select the desired clip from the browser. Use the Pan and Scale controls in the inspector to select which part of each image you want to use. Note: this was done in the hope that it may be helpful, but it is no more than a quick thing. You can also control-click the generator in the generator browser and choose open in motion (if you have it) to see how it was done and to modify it.

  • I can not drag graphic items into or out of the Creative Cloud library in Illustrator CC 2014

    I've recently upgraded to the new 2014.1.0 release that includes linked Creative Cloud Libraries. However, it appears that my version of Illustrator is not allowing me to drag graphic items into or out of the library panel. I can use the menu prompts and panel buttons to add items to my library or document, however the drag feature is not working. You can see the issue in the screencast below. If anyone else is having this problem and has figured out a solution, I'd greatly appreciate it. It's worth noting that the panel works as advertised in other applications within Creative Suite CC. Thank you.
    http://screencast.com/t/Uh3BwMrJty

    Hello and thanks for your response!
    I'm running OS X 10.9.5. I've tried restarting the machine and clearing preferences, yet the problem remains. I may try to reinstall the program to see if that corrects the issue.

  • Series of static gfx - next graphic ghosts into last few seconds of each

    Hi all...I've got a really weird problem with Compressor. I'm taking an interlaced AVI / MOV (I've tried both) and trying to encode to MPEG-2 for DVD. The video looks great, but there are parts of it where I dissolve between a series of static graphics. In each graphic, a couple of seconds before the transition, the next graphic ghosts into the video.
    I've tried just about everything, including the manual and Google I've changed the GOP length and pretty much every other setting I have thought of, but nothing tunes this out.
    Am I the only one running into this goofy problem?
    Thanks,
    Clint F
    Bismarck, ND

    adetoye50 wrote:
    Dear Contacts Journal Support Team,
    FYI, this is a user to user support forum.  You are NOT addressing Apple here.
    Honestly, I doubt anyone is really going to take the time to read the novel you have written.

  • How to convert a Graphics object into a JPG image?

    I have this simple question about how to make a Graphics object into a JPG file...
    I just need the names of the classes or the packages ... I'll figure out the rest of the details...
    Thanks...

    Anyway this might come in handy
    JPEGUtils.java
    ============
    * Created on Jun 22, 2005 by @author Tom Jacobs
    package tjacobs.jpeg;
    import java.awt.Image;
    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import javax.imageio.ImageIO;
    import com.sun.image.codec.jpeg.JPEGCodec;
    import com.sun.image.codec.jpeg.JPEGEncodeParam;
    import com.sun.image.codec.jpeg.JPEGImageDecoder;
    import com.sun.image.codec.jpeg.JPEGImageEncoder;
    * Utilities for saving JPEGs and GIFs
    public class JPEGUtils {
         private JPEGUtils() {
              super();
         public static void saveJPEG(BufferedImage thumbImage, File file, double compression) throws IOException {
              BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(file));
              saveJPEG(thumbImage, out, compression);
              out.flush();
              out.close();
         public static void saveJPEG(BufferedImage thumbImage, OutputStream out, double compression) throws IOException {
              JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
              JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(thumbImage);
              compression = Math.max(0, Math.min(compression, 100));
              param.setQuality((float)compression / 100.0f, false);
              encoder.setJPEGEncodeParam(param);
              encoder.encode(thumbImage);
         public static BufferedImage getJPEG(InputStream in) throws IOException {
              try {
                   JPEGImageDecoder decode = JPEGCodec.createJPEGDecoder(in);
                   BufferedImage im = decode.decodeAsBufferedImage();
                   return im;
              } finally {
                   in.close();
         public static BufferedImage getJPEG(File f) throws IOException {
              InputStream in = new BufferedInputStream(new FileInputStream(f));
              return getJPEG(in);
         public static void saveGif(RenderedImage image, File f) throws IOException {
              saveGif(image, new FileOutputStream(f));
         public static void saveGif(RenderedImage image, OutputStream out) throws IOException {
    //          Last time I checked, the J2SE 1.4.2 shipped with readers for gif, jpeg and png, but writers only for jpeg and png. If you haven't downloaded the whole JAI, and you want a writer for gif (as well as readers and writers for several other formats) download:
    //          http://java.sun.com/products/java-media/jai/downloads/download-iio.html
              ImageIO.write(image, "gif", out);
         public static void main(String[] args) {
              // TODO Auto-generated method stub
    }

  • Installing PCIe 16x graphic card into XServe

    I would like to install another graphic card into a new to buy XServe next to the onboard graphics.
    Theoratically, the size dimensions of a standard NVidia GT 240 should fit in physically. Also, I don't think the heat would be an issue. But what I've read in the installation guide, seems like a problem:
    About PCI Express Cards for the Xserve
    The Xserve accepts cards that meet these specifications:
    - x16 PCI-E cards
    - 6.6 inch maximum length (slot 1), 9 inch (slot 2)
    - 25 W maximum power consumption per card
    According to NVidia, the board consumes about 69 Watts maximum. Which is conforming to the PCIe specs (max. 75 Watts).
    Thus, why does Apple give a 25 W limit? Is the power consumption the core of the problem that might be overcome by installing two power supply units? Or might it be the riser that defines the limit here?
    I would really like to have more CUDA/OpenCL capable GPU's in the system, even if they are not among of the most powerful of their type and a GT 240 would fit perfectly into my needs. But I cannot risk damaging or unstabelizing the system or loosing warranty etc.
    Thanks in advance!
    TB

    Thanks for the reply! Well I think the heat problem would be the best solvable one. By now, the server is planned to be equipped with:
    - the dual CPU option
    - 12GB RAM
    - SSD drive
    - 3 or 2 harddisks
    - dual power supply.
    Yes, there would already be some heat producing stuff in there but the graphics board comes with another active cooling - if this is a pro or a con concerning airflow is another question. At least, the PCIe card is the last in the chain of components the airflow has to cool down. Also, the server would be located in a temperature controlled environment among our other servers.
    The workload would most likely not be 24/7, but should hit 100% of each core of both CPU's and (hopefully) both GPU's for quite a long time, hours at least, more liklely some days - well both, CPU & GPU wont be stressed constantly at 100%, more or less alternating though.
    Thus, if you expect the heat problem to reason apple to give this wattage limit, it would be most interesting to me, if there is anybody who is running an extension card that defenitely consumes more than these 25 Watts?

  • Scanning (Into JPEG) of Plain Paper with few graphics results into multiple images on HP 3545

    Scanning (Into JPEG) of Plain Paper with few graphics results into multiple images.
    Whenever I scan a page which is almost a white paper, but has some graphics on it, then the Scanned Files is not a single, rather it becomes in multiple parts e.g. circle in one jpeg file, square in another jpeg file. However the scanning to PDF works fine. Please let me know if this is manufacturing defect or defect in the product I purchased. 

    This only happens if I scan plain paper with few graphics. But scan to jpeg is working fine if the page has multiple objects

  • Real world battery run time of new 15" mbp retina?  (on-board graphics vs. video upgrade)

    Considering a new Mac Book Pro 15" retina to use as a dedicated DAW in the studio.  Primarily audio production work but would also do some video editing (Youtube videos, etc.)  Will be primarily in studio but 10 - 15% in the field.  (Hence the MBP rather than a desktop.)  I'm looking at the top-end 15" retina maxed-out but not sure if I need or want the Nvidia GT750M graphics card. 
    My concern is battery run-time with the graphics card.  I know Apple site claims 8 hours for the 15" retina.  But their footnote states that's on a pre-production unit without the graphics upgrade.  I've read multiple independent reviews of the version with graphics upgrade citing real world = 3 hour run times with "casual use".  Yikes!  
    So I'm looking for real-world run time for the latest generation 15" retina with graphics upgrade vs. the Iris Pro option.   Anybody doing audio / video work with these two options care to share your experience?  I don't think the DAW software (Logic Pro X) needs the graphics card and I'd be fine with the Iris Pro on-board graphics for audio work.  Video editing would of course benefit from the card (2mg graphics memory.)  It's only a $100 upgrade to add the card so it's not a financial question.   If real world is twice the run time without the graphics card I'll go for run time.  But if it's, "4 hours Iris Pro and 3 hours Nvidia card" I'll probably go for the processing power and suffer.
    Thanks!

    Considering a new Mac Book Pro 15" retina to use as a dedicated DAW in the studio.  Primarily audio production work but would also do some video editing (Youtube videos, etc.)  Will be primarily in studio but 10 - 15% in the field.  (Hence the MBP rather than a desktop.)  I'm looking at the top-end 15" retina maxed-out but not sure if I need or want the Nvidia GT750M graphics card. 
    My concern is battery run-time with the graphics card.  I know Apple site claims 8 hours for the 15" retina.  But their footnote states that's on a pre-production unit without the graphics upgrade.  I've read multiple independent reviews of the version with graphics upgrade citing real world = 3 hour run times with "casual use".  Yikes!  
    So I'm looking for real-world run time for the latest generation 15" retina with graphics upgrade vs. the Iris Pro option.   Anybody doing audio / video work with these two options care to share your experience?  I don't think the DAW software (Logic Pro X) needs the graphics card and I'd be fine with the Iris Pro on-board graphics for audio work.  Video editing would of course benefit from the card (2mg graphics memory.)  It's only a $100 upgrade to add the card so it's not a financial question.   If real world is twice the run time without the graphics card I'll go for run time.  But if it's, "4 hours Iris Pro and 3 hours Nvidia card" I'll probably go for the processing power and suffer.
    Thanks!

  • [svn:fx-trunk] 9314: Merge layout, graphics, and fxg tests into BasicTests.

    Revision: 9314
    Author:   [email protected]
    Date:     2009-08-14 12:00:24 -0700 (Fri, 14 Aug 2009)
    Log Message:
    Merge layout, graphics, and fxg tests into BasicTests.
    Add more tests from spark tests into BasicTests.
    Modified Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests-config.xml
        flex/sdk/trunk/frameworks/tests/basicTests/BasicTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/halo/scripts/ListAndDataGridTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/ScrollBarTestScript.mxml
        flex/sdk/trunk/mustella/mustella.swc
    Added Paths:
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/scripts/
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/scripts/FXGCompileTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/FXGCompileTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/fxg/views/bg01.fxg
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/GraphicsTagsTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Ellipse_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _LinearGradRect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _Rect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RotatedLinearGradRect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_bevelFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_blurFilter.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_height.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke10.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke10Alpha.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_stroke10Purple.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_width.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_x.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/scripts/baselines/GraphicTags_Checkin _RoundRect_y.png
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/GraphicsTagsTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/EllipseBasic2.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/RectBasic3.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/graphics/views/comps/TextGraphicBasic1.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/DeferredInstantiationTestScript. mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/scripts/LayoutTestScript.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/views/DeferredInstantiationTests.mxml
        flex/sdk/trunk/frameworks/tests/basicTests/spark/views/LayoutTests.mxml

  • [svn:sb-natebeck] 7812: copy the trunk to my sandbox dir

    Revision: 7812
    Author:   [email protected]
    Date:     2009-06-12 17:06:38 -0700 (Fri, 12 Jun 2009)
    Log Message:
    copy the trunk to my sandbox dir
    Added Paths:
        flex/sdk/sandbox/natebeck/trunk/

    thank you for that hint.
    i THINK i found why it is thatway(just wana state here that i am still an absolute newb in making PKGBUILD's my own).
    there are some entrys in the MakeFile that describe where to put what (afaik because of what i gave ./configure as parameters?)
    everything except the DATADIR is set to ${prefix}/bla or ${exec_prefix}/bla.
    but DATADIR needs an absolute path as target to install probably or it gets just ignored, so its, whatever i make either DATADIR=/usr/share/ufoai(where i trys to install it there instead of throwing it into the pkg dir) or DATADIR=/home/bla/pkg/usr/share/ufoai(where he trys to look for that files even after installation.)
    since i dont solved the problem with your hint i postet the makefile into a pastebin, maybe u can tell how to actually work around this.
    http://pastebin.com/m3da70e68

  • Parsing data from Serial Port one byte at a time

    Hi everyone,
            What I want to do is read in from the serial port byte by byte and parse each byte that I am reading in. The size of the data read in varies. How do I do that? I can do using .dll but I want to learn how to do it in labview. I searched through the forum for something similar but no luck. I have seen some that puts the VISA read in a while loop and others that puts the property node,  "bytes at Port" in a while loop. What is the difference in doing either way? I am using Labview 7.1 Can anyone point me in the right direction?
    Thanks

    Hi guys..
    I'm still a beginner in using labview tcp/ip function. for now, i have a project to read the labview data with java programming language so that i can monitor that data using any devices that using java, such as PC or cell phone. my task for now is to determine the format of data that being sent (its type, length, etc), coz as far as i done until now, the data that read in the java is still a raw material so that i dont know how to gain the information from that data.
    my question is :
    - how does the type cast work in changing the data format from one to another?
    - how does the bytes to read in tcp read work? coz when i'm changing the length of bytes to read constant from 4 bytes to another, the data is becoming mess up. As far as i know, the bytes to read only read the first "constant number" byte in the tcp read to determine the length and type of the data..
    thanks

  • Error message while loading XML parser into db

    I get the following error message while loading xmlparserv2.jar
    ORA-29534 referenced object SYSTEM.oracle/xml/parser/v2/XMLNOde could not be resolved
    ORA-29545: badly formed class: java.lang.NullPointerException
    using XSU111 package

    I had the same problem. I did a search of the forum looking for the error number (that's how I ran across your question). It seems that the xmlparserv2.jar (v2.0.2.8 or 2.0.2.9) which is included was compiled with java 1.2 which is incompatible with Oracle 8.1.5 (which is what I have and probably what you have). You probably need xmlparser v2.0.2.7.
    Do a search on the error number, the post is from Steve back on June 8. I found the correct version of the xmlparserv2.jar in my copy of the xmlschema stuff (xmlschema_v0_9_0_0.zip). I don't know which version is in the current xmlschema
    (v1.0.0.0) but it is probably the new version.
    Steve will email you the correct version if you ask.
    Eric
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by nrajav ():
    I get the following error message while loading xmlparserv2.jar
    ORA-29534 referenced object SYSTEM.oracle/xml/parser/v2/XMLNOde could not be resolved
    ORA-29545: badly formed class: java.lang.NullPointerException
    using XSU111 package<HR></BLOCKQUOTE>
    null

  • XML parser error; when XPath elements starts with "_"

    Hi,
    I have a problem in extracting elements from XML which is starting with "_". please check the queries below executed on Oracle 10g.
    Query 1:
    SELECT EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/_B') FROM DUAL;
    Error starting at line 1 in command:
    SELECT EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/_B') FROM DUAL
    Error report:
    SQL Error: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00601: Invalid token in: '/A/_B'
    31011. 00000 - "XML parsing failed"
    *Cause:    XML parser returned an error while trying to parse the document.
    *Action:   Check if the document to be parsed is valid.
    Query 2:
    SELECT EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/E') FROM DUAL;
    EXTRACTVALUE(XMLTYPE('<A><_B>1</_B><_C>2</_C><_D>3</_D><E>4</E></A>'),'/A/E')
    4
    Oracle version:
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Please let me know if there is any workaround for this.*
    Thanks,
    Veerababu Kanumilli.

    Hi MichaelS,
    - I have executed the queries provided by you, but I am not able to get the result in 10g when I am trying to access elements with "_" in XPath.
    select * from v$version where rownum = 1;
    select extractvalue (xmltype ('&lt;A&gt;<_B>1</_B><_C>2</_C><_D>3</_D><E>4</E>&lt;/A&gt;'), '/A/_B') "_B" from dual;
    select extractvalue (xmltype ('&lt;A&gt;<_B>1</_B><_C>2</_C><_D>3</_D><E>4</E>&lt;/A&gt;'), '/A/E') "E" from dual;
    Output:
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    Error starting at line 4 in command:
    select extractvalue (xmltype ('&lt;A&gt;<_B>1</_B><_C>2</_C><_D>3</_D><E>4</E>&lt;/A&gt;'), '/A/_B') "_B" from dual
    Error report:
    SQL Error: ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00601: Invalid token in: '/A/_B'
    31011. 00000 - "XML parsing failed"
    *Cause:    XML parser returned an error while trying to parse the document.
    *Action:   Check if the document to be parsed is valid.
    E
    4
    Thanks,
    Veerababu Kanumilli

Maybe you are looking for