CDC and SVG

Hello! I am beginner in CDC and I need help in developing cdc application..I need to view svg image..
Edited by: krunchie on Dec 15, 2009 8:32 AM

The PocketPC Support Both CDC and PP profiles, but Palm Doesn�t.
The PalmOS will support until the PalmOS 6 release.
http://www.cs.ucl.ac.uk/staff/s.zachariadis/palmjava.html

Similar Messages

  • Help on cdc and pp

    1) i would like to develop application for pocket pc using cdc and personal profile for pda and i still don't how to begin even after reading the documentations that came with cdc and profile.help me please!
    2) is there any IDEs and emulators available which can be used to develop cdc and personal profile based application.
    3) can please recommend a high end pda that is suitable for application developed with cdc and personal profile.is the latest HP PDA : h5550 suitable?
    4) Please recommend web sites or books regarding application development for pda using cdc and personal profile.

    1) What you need is to buy Daryl Wilding-McBride's Java Development on PDAs (available at Amazon).
    2) About IDEs, yes, there are specific IDEs like the one from IBM. Though I found it difficult to get it running. Actually, you can use any IDE; I mean, I use Kawa because that's what I first learned. You have to install the proper JDK, and also you can use JavaCheck to make sure that your code is compliant (sp?) with Personal Java (yes, Personal Java). The biggest problem with this would be to find the Specifications file, but if you look for them in this forum you'll find them.
    About the emulator, yes, you can use the one from Microsoft (if you don't find it let me know and I'll look for the link). It's a huge download, because it doesn't come by itself, but as part of a whole package. This emulator doesn't emulate the hardware, only the software. Which means that you need a JVM that will run on x86 CPUs. For that purporse you can download CrEme (which is free, like the emulator).
    3) I guess any hidh end PDA is good for it (as soon as it's Java compatible)
    4) I mentioned the book already. That's the best you'll find right now. Also, you could go to www.javaranch.com and read through the J2ME board.
    If you need any more help, let me know
    Good luck!

  • There are two CDC methods - Source based CDC and Target based CDC which one

    There are two CDC methods - Source based CDC and Target based CDC, which one is better performancewise. in data services.
    If there is any document available which compares both and provides any info on performance etc, will be helpful.
    thank you for the helpful info.

    LIke Suneer mentioned CDC is for better performance.
    Following link would be helpful.
    http://wiki.sdn.sap.com/wiki/display/BOBJ/Extractors-Source-Based+CDC
    http://wiki.sdn.sap.com/wiki/display/BOBJ/Extractors-Target-Based+CDC
    Thanks,
    Arun

  • CDC and Journalizing....!!!

    Hi ,
    What is CDC and Journalizing.........
    How can I implement in my Data migration ( Source : Oracle , Target : Oracle).
    Can anyone plz explain me in detail, how to use this .......
    Thanks
    AK

    Hi,
    Steps Followed:
    Opened the Model ........and clicked the Journalizing Tab and selected Consistent Set..
    In the KM dropped I selected JKM Oracle Consistent and the save the changes.
    Then I chose the Datastore, right clicked ----> changed Data Capture ---->Add subscriber....then Added a name and clicked Ok ...
    Then Datastore, right clicked ----> changed Data Capture ---->Add CDC....
    Then I got an Icon in my Datastore......
    Then I started the Journal .........
    In the Operator I could c a succesful completion ..........
    It had 11 steps..it created 4 tbles.......
    1.create subscribers table
    2.create CDC set Data
    3.create table list table
    4.Create CDC objects table.
    I am not sure about how to use this durin my interface running ...........
    Thanks
    AK

  • J2ME/CDC and Netbeans

    Hi all,
    I am compiling some code in Netbeans using the CDC libraries and I am getting
    this:
    Compiling 20 source files to C:\build\compiled
    C:\CP\ControlPanel.java:56: generics are not supported in -source 1.4
    (try -source 1.5 to enable generics)
    The only Java platforms I have in there are CDC and J2SE 1.5 - why does the compilation keep
    referring to 1.4 as source? Furthermore, let's say for some reason it does, how does one
    change this?
    Thanks much

    Hi all,
    I am compiling some code in Netbeans using the CDC libraries and I am getting
    this:
    Compiling 20 source files to C:\build\compiled
    C:\CP\ControlPanel.java:56: generics are not supported in -source 1.4
    (try -source 1.5 to enable generics)
    The only Java platforms I have in there are CDC and J2SE 1.5 - why does the compilation keep
    referring to 1.4 as source? Furthermore, let's say for some reason it does, how does one
    change this?
    Thanks much

  • SVG and SVG states support.

    I would like to see full support on SVG's. SVG's with hyperlinks that allow for state changes (normal/mouse over/mouse down/active).

    We have done this at FT by designing a mapping between SDO_GEOMETRY types and
    SVG elements (eg point -> <text>; multipoint <g><text>...</g>) etc.
    From this we let a contract to an external company (www.geometryit.com) who programmed
    up some Java classes that allowed us to go from SDO_GEOMETRY <-> SVG. These were then
    deployed within the database with before insert etc triggers automatically mapping between
    the two (the SVG is stored alongside the SDO_GEOMETRY as a CLOB).
    I can send you our documentation on this.
    If you want access to the Java code, contact Andrew Betlehem at Geometry.
    regards
    Simon

  • Issue with CDC and Replication enabled

    Hello,
    We have this strange issue with CDC and replication. Let me explain
    1. We have a database on write server and we replicate some tables to the read server. There are 15 tables that we replication and 8 of them have computed columns that are persisted.
    2. We also have CDC enabled on the same database where we have transactional replication enabled. I know that both CDC and replication uses replication log reader. Some how, all the time we see the log_reuse_wait says replication
    3. If I add around 100-200 MB into these tables, with these persisted columns, it will be around 500 MB of data. But the replication is queuing up 10-15 GB of data.
    4. I checked CDC tables, and the updates are in cdc tables. Also, I don't see CDC capture job. Is this because there is already replication enabled?
    What might be the issue that's causing the log to hold for a very long extended periods of time? We don't see any issue with log reader and CDC.

    2. Log_reuse_wait will show replication status both for CDC and replication.
    4. Yes as you are using transaction replication, Log Reader Agent is created for the database and the capture job won’t exist.
    When the Log Reader Agent is used for both change data capture and transactional replication, replicated changes are first written to the distribution database.
    Then, captured changes are written to the change tables. Both operations are committed together. If there is any latency in writing to the distribution database, there will be a corresponding latency before changes appear in the change tables.
    https://msdn.microsoft.com/en-us/library/cc645938.aspx?f=255&MSPPError=-2147217396
    As you said CDC updates are in cdc table I don’t see any issue.
    You could run DBCC OPENTRAN to see the old active transaction? It will give you more info.

  • Export to EPS, PS and SVG file formats

    How can i export a document to EPS, PS and SVG file formats?

    Mark:
    See on-line traning session 15:printing. It will get you started.
    Regards,
    Noel Williams

  • What is the difference between CDC and SCD type2

    I am a new user of BODS and Have used SCD type 2 (delta's) capturing and loading the difference of data to targets.
    Trying to understand the difference between CDC and scd type 2.
    CDC says capture changed data, so i assume both are same, is that true?
    thanks for the helpful info.

    CDC is Change Data Capture -
    The CDC methods will enable you to extract and load only the new or changed records form the source, rather than loading the entire records from the source. Also called as delta or incremental load.
    SCD Type 2 (Slowly Changing Dimension Type 2)
    This lets you store/preserve the history of changed records of selected dimensions as per your choice. The transaction table / source table will mostly have only the current value and is used in certain cases where in the history of a certain dimension is required for analysis purpose.
    Regards,
    Suneer

  • J2me swing, cdc and window

    my company has developed a working version of swing w/ serializable on the desktop and like to import them into a pda. when i research this option online and i find out that only cdc can do that. however, when i download cdc and it seems that the package is only linux. where can i download a package that can used on window. i need to have swing on the pda, can cdc support all swing component? if not, what other options can i have?? i read online that j2me does not fully support swing, is that true?? i am a new programmer in j2me and really appreciate any help that i can receive.
    many thanks
    Yang

    First you should be aware that CDC is a configuration, so it does not contain any GUI components. In J2ME there are 3 different Profiles which are based on CDC.
    Foundation Profile (FP), Personal Base Profile (PBP and Personal Profile (PP). Only PP contains enhanced Java GUI elements. But it ONLY contains AWT. SWING is NOT supported and is not part of the PP specification.. Some JVMs like Creme from NSI (http://www.nsicom.com/) support Swing as opptional non-specification package. But you must buy the Creme JVM. The IBM VM J9 supports a reduced version of SWT (a GUI Framework), but not SWING. So generally it is very difficult to use SWING on a PocketPC.

  • Indesign CS4 and SVG export (or lack of)

    I normally do documents in Indesign and then export to pdf (for web and print). I've had a special client request to convert a few of those Indesign document to SVG format.
    This was an option in CS3 that has been taken off CS4.
    What's the best way to produce this? Is there a quick option to do this? The only option I can see is by exporting the Indesign file into eps, opening that into Ilustrator and then saving as SVG. The file could potentially have a lot of pages - so it could be pretty time consuming opening each eps file produced into Illustrator and then saving as individual SVG files. Maybe I can't see the wood for the trees?
    Any help on a better and more efficient way of doing this would be brill.
    Is there a plug in/extension available that makes up for this now redundant option in Indesign CS4?
    Moll O' Moon

    Hi MoMo,
    I noticed this issue right now too. At work I have IDCS3 and here at home CS4. Damn...what a crap! I'd bet that this is just a (stupid) product-strategical decision to take all options fromthe user so that he must chose between Adobe's proprietary Formats and "everything" stays within the Adobe ecosystem.However, thanks to Inkscape I finally got it done.
    pblank

  • Does safari 6.0.4 need and svg viewer?

    I am visiting a website and part of the site provides graphics. The graphics do not show up but the area where they should be tells me I need to download adobe's svg viewer. The website it takes me to is within Adobe but has no downloads for MACs plus it states that Adobe no longer supports SVG viewers. The information I have found is all dated years ago. What kind of questions should I ask the web site developer to find out why their site does not work in Safari?

    Quit Safari.
      Hold the shift key down and relaunch Safari.
    Reset Safari.
    Click Safari in the menu bar.
    From the drop down select "Reset Safari".
    Uncheck the box next to  " Remove saved names and passwords".
    Click "Reset".

  • Significance of Global_names parameter in Oracle CDC and Oracle Streams

    Hi,
    I am trying to implement a sample Oracle CDC example.
    I read in some examples that we need to set a parameter *'global_names= TRUE'*. (which means that all dblink names should be same as their respective database names)
    But my doubt is that what will happen if i use the default value 'FALSE' for this parameter without changing it to 'TRUE'.
    Is it mandatory to make 'global_names= TRUE' ?
    Could anyone please explain this.
    Thanks in Advance
    Regards,
    Gowreesh.

    Hi Sybrand,
    Thanks for the reply.
    Currently there are some dblinks in my database(with dblink names different from the database).
    My concern is,
    If i make global_names=TRUE, then all my earlier dblinks with that database will not work.
    and if I DONOT make global_names= TRUE, then i will not be able to work with Oracle CDC/Streams with the database.
    I am looking to find out any work around to overcome this deadlock type of situation.
    I would be very thankful if you can give some idea to come out of this problem.
    Regards,
    Gowreesh

  • Konqueror and svg file thumbnail icons [SOLVED]

    I was telled that konqueror can make a thumbnail icon of the svg files just as it does with other file formats (jpg, png, ...) but it doesn't seem to be working in my box.
    Did anyone had the same problem before?
    Does anyone has any idea?
    Thanks   

    not the most elegant one, but it worked now.
    I tried kde 3.4.2 from testing and got the same result, so i used abs to build kdebase-3.4.2 from source and patched kioslave/thumbnails/picturecreator.cpp from :
    ThumbCreator *new_creator()
    to
    KDE_EXPORT ThumbCreator *new_creator()
    rebuild the picturethumbnail.so library and replace the system one with the fresh one and now previewing svg images in konqueror works as it should.
    Since i have no idea about kde or kde development, I'm just a new KDE user, so i don't know if this was a bug just in my box, in the arch KDE package or in KDE. I'd appreciate any info from another user or developer.

  • JSP and SVG

    Hi all,
    I have a problem by generating and manupulating SVG with JSP:
    I generated a SVG file (for example a.jsp) with JSP using <%@ page contentType="image/svg+xml" %>.
    And then i want to embed this generated SVG image into a html page using
    <embed src="a.jsp" width="300" height="300"/>
    But it doesn't work. Can anyone help me to solve this problem?
    Thanx in advance!

    This problem has been solved. Thanks for your help, jleech!
    I must add type="image/svg+xml" into the tag's attribute list, as
    <embed src="index.jsp" width="300" height="300" type="image/svg+xml">
    jleech, do you know Batik well and have some experience with generating and manipulating SVG using Batik?
    I tried to use Batik, but his Java Doc ist to bad, there are no informations about the classes and his fields and methods, so that i can't understand them. For example, what does this class "SVGPathSegArcRel" mean and how can i use it? i can't get a good overview about the useful classes for my need (for example there are over 100 classes only in the package org.apache.batik.dom.svg).
    Besides the Batik i can also see a svg-file as a normal xml, so that i can use generic DOM to manipulate it.
    Can you tell me if there are any advantages to use Batik? Is it much more efficient and easier to generate and manipulate SVG with Batik than with generic DOM? Is it with more complexity to use generic one in compare to Batik?

Maybe you are looking for

  • Sap query and additional fields.

    Hello guys. ABAP it's not my strong skill, but i need to develop some report. What i need: input: material, SLED, plant output: material, SLED, plant, values from characteristic field. I have created sap query with additional field type c. Below my c

  • Vertical mappings and queries

    Hi all, I am currently a bit frightened by what I see in my logs. Most of our classes (around 70 for the moment) are belonging to a complex hierarchy. BASE <---------> RELATION |||| subclasses The top superclass 'base' is a class which is containing

  • Dimension Profit Center in 8.8

    Hi all! In customer database, they used localization in INDIA SAP 2005B They have 2 dimension, and Item code will link to 2 Dimension by one UDF on Item master data. Ex:  Item A , there are 2 UDF which have value( AAA| BBB)  the same with Profit cent

  • Strange/unusual behaviour of New-ish(Old white style) Macbook

    I got my Macbook the same week the new ones came out, so its not very old. Since day 1, sometimes when i turn it on the green light from the built in camera comes on, and wont go off until shut down. This then makes photobooth and any application tha

  • Enqueue/Dequeue in Oracle Aq Adapter

    Hi, I need to use enqueue/dequeue option in oracle aq adapter. However i need to know how the macthing of ids has to happen. Can any one provide me with an example with details steps? Thanks, Rosh