Trouble with using MX Templates in DW8

I had a question that I just cannot seem to figure out. My
company recently bought Macromedia's Studio 8 Upgrade for the
Design department. We used to use Dreamweaver MX. We did not have
any problems with MX, with images showing in the Design window.
However, in DW8 the images do not show up. There are place
holders, but I need to see the images so I can actually design the
page. When I program the sites into DW8 and then open a page it
seems like the website management is not right. I found out that I
had to re-attach the CSS sytle sheet using DW8's CSS window, once I
did that the page looked a lot better but the images still do not
show up (in the design screen).
This problem only seems to occur in Dreamweaver 8. When
viewed in a browser it seems to be fine. Does anyone know a setting
that I may be getting messed up? I copied all of our websites
directly from MX, so that cannot be the issue.
Thanks again!

Show me such a page, please.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"Fadet0blak" <[email protected]> wrote in
message
news:e5i6b8$91q$[email protected]..
>I had a question that I just cannot seem to figure out.
My company recently
> bought Macromedia's Studio 8 Upgrade for the Design
department. We used to
> use
> Dreamweaver MX. We did not have any problems with MX,
with images showing
> in
> the Design window.
>
> However, in DW8 the images do not show up. There are
place holders, but I
> need
> to see the images so I can actually design the page.
When I program the
> sites
> into DW8 and then open a page it seems like the website
management is not
> right. I found out that I had to re-attach the CSS sytle
sheet using DW8's
> CSS
> window, once I did that the page looked a lot better but
the images still
> do
> not show up (in the design screen).
>
> This problem only seems to occur in Dreamweaver 8. When
viewed in a
> browser it
> seems to be fine. Does anyone know a setting that I may
be getting messed
> up? I
> copied all of our websites directly from MX, so that
cannot be the issue.
>
> Thanks again!
>
>

Similar Messages

  • I'm having trouble with using Calculated-User Can Override, it will not honor my overide

    I'm having trouble with using Calculated-User Can Override, it will not honor my overide.  I'm using LiveCycle Designer ES v.8.2

    Reset the device:
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears.
    If that doesn't help, tap Settings > General > Reset > Reset All Settings
    No data is lost due to a reset.

  • Anyone have trouble with using Last Pass on macbook pro

    anyone have trouble with using Last Pass on macbook pro
    Also does anyone find that Chrome is super slow on Macbook Pro with OS X 10.9.1??

    nellyfromsalt spring island wrote:
    anyone have trouble with using Last Pass on macbook pro
    why don't you just state what problems you are having?
    nellyfromsalt spring island wrote:
    Also does anyone find that Chrome is super slow on Macbook Pro with OS X 10.9.1??
    No, I use Chrome daily with 10.9.1 and it is still very speedy.

  • Need help with using cd templates

    I'm very new to Photoshop and trying to figure out how to use and edit templates for a 2 panel cd insert and the Tray Card template (back cover of the cd).  I want to just use pictures for the 2 panel but the Tray card needs to just have a color or design background with text.  I seem to have gotten a project started using the tray card template but I'm having trouble figuring out how to get going with it and add a color background and I'm assuming I'll need to use the layers function?  If anyone has any advice or can help me get started, I would really appreciate it!!  Thanks!!

    jds2n,
    Is it possible to get around installing the Entire Distribution + OEM and include only the platform specific files?
    Just a thought
    Example:
    I would like to create a Flash Archive of a E2900 server which i plan to use to recover a 6900.
    The 2900 was installed with a developer cluster.
    When creating the Flash archive of the 2900 is it possible to add the 6900 platform specific files and drivers
    from the Solaris CD?
    Thanks

  • Troubles with using twice exec_sql in a procedure

    Then I've written a procedure (1), using exec_sql.execute, that executes an SQL string, given the number of columns.
    Then, I've written a procedure (2), using exec_sql.describe_column, that identifies the columns in the result of an SQL string.
    Both of them work.
    So I tried to merge them, so I shouldn't need to know how many columns I have to extract in the procedure (2), but, after executing the "(1)" part, an exception (ORA-306500: non-Oracle exception) is thrown when "res := exec_sql.execute(cursID)" is executed.
    Excluding exclusively one of the two parts with /* and */, I see that each part, stand alone from another, works!
    I use the same cursor (exec_sql.curstype) for both parts. I've also tried to use two different cursors, closing the former before opening the latter, but the results don't change.
    Where is the trouble?
    Thanks in advance.

    Here is the code. Thanks in advance.
    procedure push_xls_query(wh text_io.file_type, wh_web varchar2, titolo varchar2, testoquery varchar2) is
         type stringArray is table of varchar2(500) index by binary_integer;
         type intArray is table of pls_integer index by binary_integer;
         valori stringArray;
         tipi intArray;
         nRows number := 0;
         i number := 0;
         cursorID exec_sql.curstype;
         result pls_integer;
         colName varchar2(30);
         colLen number;
         colType pls_integer;
         numerocampi number;
         temp1 varchar2(80);
    begin
         -- Se la lunghezza del titolo e' maggiore di 31 caratteri, lancia una eccezione
         if length(titolo) > 31 then
              raise xls_exception;
         end if;
         pkg_txt_io.putline(wh, wh_web, '<Worksheet ss:Name="'||to_xml(titolo)||'"><Table>');
         numerocampi := 0;
    cursorID := exec_sql.open_cursor;
    exec_sql.parse(cursorID, testoquery, exec_sql.V7);
    message('Prima di execute'); message(' ', no_acknowledge);
         result := exec_sql.execute(cursorID);
    message('Dopo di execute'); message(' ', no_acknowledge);
         -- Stampa i nomi dei campi
         pkg_txt_io.putline(wh, wh_web,'<Row>');
         loop
              numerocampi:=numerocampi+1;
              begin
                   exec_sql.describe_column(cursorID, numerocampi, colName, colLen, colType);
                   tipi(numerocampi) := colType;
                   if colType in (exec_sql.NUMBER_TYPE,
                             exec_sql.FLOAT_TYPE,
                             exec_sql.ROWID_TYPE) then
                        temp1 := 'rightbold';
                   else
                        temp1 := 'bold';
                   end if;
                   pkg_txt_io.putline(wh, wh_web, '<Cell ss:StyleID="'||temp1||'"><Data ss:Type="String">'||to_xml(colName)||'</Data></Cell>');
              exception
                   when others then
                        if sqlcode=1 then -- -306500 then
                             exit;
                        else
                             message('Errore imprevisto: '||SQLCODE||' - '||SQLERRM);
                             message(' ', no_acknowledge);
                             return;
                        end if;
              end;
         end loop;
         pkg_txt_io.putline(wh, wh_web,'</Row><Row></Row>');
    i := 1;
    while i <= numerocampi loop
    valori(i) := null;
    exec_sql.define_column(cursorID, i, valori(i), 500);
    i := i+1;
    end loop;
    while (exec_sql.fetch_rows(cursorID)>0) loop
    nRows := nRows + 1;
         pkg_txt_io.putline(wh, wh_web, '<Row>');
    i := 1;
    while i <= numerocampi loop
    exec_sql.column_value(cursorID, i, valori(i));
              if tipi(i) in (exec_sql.NUMBER_TYPE,
                             exec_sql.FLOAT_TYPE,
                             exec_sql.ROWID_TYPE) then
                   temp1 := 'Number';
              else
                   temp1 := 'String';
              end if;
              pkg_txt_io.putline(wh, wh_web, '<Cell><Data ss:Type="'||temp1||'">'||to_xml(valori(i))||'</Data></Cell>');
    i := i+1;
    end loop;
         pkg_txt_io.putline(wh, wh_web, '</Row>');
    end loop;
         exec_sql.close_cursor(cursorID);
         pkg_txt_io.putline(wh, wh_web, '</Table></Worksheet>');
    end;
    procedure push_xls_simplequery(filename varchar2, testoquery varchar2) is
         wh text_io.file_type;
         wh_web varchar2(1);
    begin
         begin
              pkg_txt_io.delete_temp_file(filename);
         exception
              when pkg_txt_io.ex_web_io then null;
         end;
         pkg_txt_io.open(filename, 'w', wh, wh_web);
         push_xls_begin(wh, wh_web);
         push_xls_query(wh, wh_web, 'Sheet1', testoquery);
         push_xls_end(wh, wh_web);
         pkg_txt_io.close(wh, wh_web);
    end;

  • Trouble with using several page tag in pagedef and including jsff-page

    Please, help!
    I have the .jsff-page with table (refNMU.jsff with own pagedef), which used as ref-book on main page. On main page it simple include in dalog content:
                  <af:popup id="dlgNMU">
                    <af:dialog>
                      <jsp:include page="/Refs/refNMU.jsff"/>
                    </af:dialog>
                  </af:popup>In main pages pagedef I include the pagedef of jsff-page:
        <page id="PD_refNMU" path="Refs.refNMUPageDef" Refresh="ifNeeded"/>and in jsff-page replace binds from
    bindings.refNMUView.collectionModelto
    bindings.PD_refNMU.refNMUView.collectionModelIt`s work fine.
    But if I add two ref-book (in main pages pagedef insert two <page> tag before existing ("PD_refNMU") then table on refNMU.jsff page "no row yet" show (but "estimatedRowCount" method work fine).
    If I move <page> tag on first position then its work fine again, but the other two jsff-page not working ("no row yet" in table or "QueryModel object not defined" in console)!

    Hi,
    binding file references are supported for template bindings only and here you are allowed to have a single template only. So what you try is not supported. Please use a region for adding the page fragment (bounded taskflow) or copy the bindings into the main file
    Frank

  • Trouble with using TortoiseCVS and Fireworks

    Hi,
    we're using Fireworks and TortoiseCVS in our company on
    several clients. There seems to be a problem having installed both
    software packages at once. Fireworks is crashing suddenly or
    producing broken files or corrupted content. Here's some
    description, what happens to us, when we've installed both
    software. Reproducable on several machines now...
    - Fireworks crashes with "internal error" msg by clicking in
    text objects
    - Fireworks cripple gradients (inverting and collapsing
    them...)
    - Fireworks changes suddenly the line height or font size in
    text objects
    - Fireworks damage written files, so they only are readable
    by photoshop or other "flat-png" applications
    - Diverse JavaScript error msg on random actions
    We are currently using:
    Windows XP SP#3
    Fireworks 9.0.1.1213
    TortoiseCVS 1.10.9
    Does someone also have problems using TortoiseCVS in
    dependency with Fireworks?
    Greetings
    Peter

    Hi,
    binding file references are supported for template bindings only and here you are allowed to have a single template only. So what you try is not supported. Please use a region for adding the page fragment (bounded taskflow) or copy the bindings into the main file
    Frank

  • Trouble with using javascript $s function to populate a page item

    Hello Oracle APEX Community,
    I'm working on a drilldown dashboard page and have been encountering a problem when i try to populate a Text Page Item (hidden or not) using the javascript built in $s function.
    The function works great when the data is a number such as dept_id (even if the field type is varchar). However, trying to pass anything which is a text the process fails, except when a value is hard-coded as a parameter for the function. So for example, I have a chart with counts of constituents by state. I would like to populate (filter) a table based on when you click on a bar for a state without having to submit the page. I'm using dynamic actions and a built in javascript function in the SQL for the chart to accomplish this; but again, it works great when I use a varchar field like the FIPS code (i.e. the FIPS for Texas is '48'), but when I try to populate the page item using the state abbreviation 'TX' (again varchar) it fails.
    Here's an example of code that works:
    SELECT 'javascript:$s("P1_DEPTNO",'||d.deptno||')' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO",'||d.deptno||')', d.dname And here's an example of code that does not work:
    SELECT 'javascript:$s("P1_DEPTNO",'||d.loc||')' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO",'||d.loc||')', d.dname However, when I hard code a text value the script works:
    SELECT 'javascript:$s("P1_DEPTNO","BOSTON")' LINK,
    d.dname LABEL,
    sum(e.SAL) sal
    FROM emp e, dept d
    where e.deptno = d.deptno
    group by 'javascript:$s("P1_DEPTNO","BOSTON")', d.dname
    ORDER BY d.dname I'm encountering this problem on several versions of APEX: (4.0.2.00.07-local installation) and (4.1.0.00.28-apex.oracle.com)
    Does anybody know of this problem and how to solve it? I've looked for settings on the page item itself, and can't figure it out.
    I've re-written my sql to utilize the value fields of my tables instead but I have some objects on the page which are really going to depend on the character based data instead.
    Thanks,
    Wayne

    In your javascript you are generating, surround your value with double-quotes and it'll should then always work with both numbers and strings (your strings are probably being interpreted as variable names and they don't exist at runtime, hence erroring out).
    Example:
    SELECT 'javascript:$s("P1_DEPTNO","'||d.loc||'")' LINK,Edited by: gti_matt on Aug 16, 2011 9:50 AM

  • Having trouble with using variables in functions and after functions..

    Morning,
    I have simplified this, as it represents the core of what’s I obviously don't know how to do. 
    Problem:
    Say I populate that variable by reading in a list if IP addresses from file, finding the line that matches the hostname and place that string into the $IPAddress variable for use later throughout the script.   I did not run into a significant problem
    until I decided to convert the routine of looking up the IP address and populating the variable into a function.   As soon as I made it a function, and called that function, the $IPAddress variable only had the data in it until the function completed. 
    Once the function had done its work, and had placed the data into the variable, I expected that “new” data to be available after the function had completed..in that variable.  But it’s like the $IPAddress variable in the main script is a totally
    different data then the variable with the same name that’s used within the function. 
    So I think this demonstrates some of what’s kicking my butt.. 
    $IPAddress = "This is the wrong data”
    Function TestFunction () 
    $IPAddress  #call to display the contents of the variable at the start of the function. 
    $IPAddress = Read-Host -Prompt "Please enter the text ‘Goober’" 
    $IPAddress   #call to display the contents of the variable at the end of the function. 
    TestFunction
    $IPAddress ​
    The output I get is: 
    This is the wrong data
    "Please enter ‘Goober’"  : where I enter Goober
    Goober
    This is the wrong data
    Huh? 
    I had expected:
    This is the wrong data
    "Please enter ‘Goober’"  : where I enter Goober
    Goober
    Goober
    What good is the repeatability of a function if it’s output is lost? 

    THis seems to work.. IS there any reason NOT to do this?
    $Global:IPAddress= "This is the wrong data” #"
    Function TestFunction{
        Write-Host $IPAddress-fore green
          $host.ui.RawUI.FlushInputBuffer()
         $Global:IPAddress =
    Read-Host -Prompt
    "Please enter the text ‘Goober’"
        return$Global:IPAddress
    TestFunction
    return$Global:IPAddress

  • Teething troubles with Using Adobe Captivate

    Hello I have never used Adobe Captivate before, and would be grateful for some answers. I know people are very busy and may not want to deal with beginners but any comments suggestions partial tips will be gratefully appreciated
    I am trying to do screen recording and run into difficulties.  I want to record a short (<10min) video of an instructive tutorial that plays on the internet. This tutorial has slides, and it is advanced by hand (manually) to the next slide
    I was able to record video correctly, using the "Full Motion" mode. But when I use the other 2 available modes: I.e,Automatic, and Manual, I am not able to record. What happens it, I merely get a still picture upon playback, that runs as a video for 3 seconds. It turns out somewhere in "settings" there is a default which says slide length =3sec.  It looks like what I am getting recorded is a single slide, containing the very 1st scene.  What have I done wrong?
    What I need to record are slides, some of which contain video and speech, some containing video but no speech,some are stills. In the Full Motion Mode
    The video is being recorded split into many bits , and these bits (slides) are unequal in length, the first slide being of longest duration,  the last slide is of shortest  duration. Should they not equal in length? Also how to convert into "normal" formats like AVI? What kind of media player would play these presentations/slide shows when each slide is a short video? Further I do not hear any audio.
    Also what is panning
    I am shunned because I am a woman and no one helps me with anything because I am supposed by a tacit rule to be with women ALL THE TIME and I am failing in what I am supposed to do. I have no means of using my brain or actively pursuing  science and technology, and others in it will not speak to me because of my defiance of that rule. I hope some MAN who doesn't mind will volunteer answers and I promise not to bother you again. I won't speak to you again, I wont come ont his site again, I have women's numbers.I wil be very grateful if you help me
    Thanking you,
    Yours SIncerely,
    Milliemachine3

    Hi folks and welcome to our community Milliemachine3
    All I can say is... wow! I'm not sure where you live, but it sounds sort of "stuck in time" if you are really made to feel like an outcast just because your body has different parts.
    All that aside, I'll take a stab at answering your questions.
    I was able to record video correctly, using the "Full Motion" mode. But when I use the other 2 available modes: I.e,Automatic, and Manual, I am not able to record. What happens it, I merely get a still picture upon playback, that runs as a video for 3 seconds. It turns out somewhere in "settings" there is a default which says slide length =3sec.  It looks like what I am getting recorded is a single slide, containing the very 1st scene.  What have I done wrong?
    The only thing you have done wrong is to misunderstand how Captivate is used to record screen activity. How successful you will be will depend on the version of Captivate you have installed as well as what your operating system is. For example, if you have Windows 7 64 bit and you are trying to use Captivate 4 (or earlier) you will likely encounter problems. But if you were using Windows XP you would likely be fine.
    You may also be misunderstanding exactly how Captivate records the screen.
    What I need to record are slides, some of which contain video and speech, some containing video but no speech,some are stills. In the Full Motion Mode The video is being recorded split into many bits, and these bits (slides) are unequal in length, the first slide being of longest duration,  the last slide is of shortest  duration. Should they not equal in length? Also how to convert into "normal" formats like AVI? What kind of media player would play these presentations/slide shows when each slide is a short video? Further I do not hear any audio.
    I'm not sure I've ever seen ANY software that does a flawless job of recording screen video where you are playing a video clip. You have to understand that video is usually memory and processor intensive. Not only for recording it, but also for playing it back. If you can, you will likely achieve your best result by locating the actual source file for the video and using that with Captivate. However, this somewhat depends on your Captivate version.
    Also what is panning
    Panning is a feature that allows you to record a smaller area of your screen. As you move the cursor around, the recording area is shifted to include parts of the screen that maybe weren't in the recording before. Maybe you are recording a 200x200 sized area. You are in the upper left corner of the screen performing some activity such as opening the File menu. But you move the mouse over to the right side to scroll the page. The recording would look as if you were peering through a small window and the larger area that was formerly hidden would appear in the window.
    I am shunned because I am a *woman* and no one helps me with anything because I am supposed by a tacit rule to be with women ALL THE TIME and I am failing in what I am supposed to do. I have no means of using my brain or actively pursuing  science and technology, and others in it will not speak to me because of my defiance of that rule. I hope some MAN who doesn't mind will volunteer answers and I promise not to bother you again. I won't speak to you again, I wont come ont his site again, I have women's numbers.I wil be very grateful if you help me
    Well, I sincerely wish you the best in your Captivate journeys. Hopefully it will comfort you to know that what you are experiencing isn't a universal rule. I think women and men are equals. And anyone that believes differently has a very stilted view of the world.
    Namasté... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • Having trouble with using crypto in JC 2.2.2

    Hi,
    I am using the sourceforge Eclipse plugin for my project. Eclipse version is 3.5.
    My JC version is 2.2.2. When i debug my code (Using the debug mode) the program terminates at
    keypair = new KeyPair(KeyPair.ALG_RSA_CRT, (short)1024);
    In the debug window (Variables) I get the cause and theSW as (0, 3) which i think implies CryptoException - NoSuchAlgorithm.
    I don't understand why this shows.
    It does not generate any stacktrace and shows stacktrace as null.
    My code:
    package test;
    import javacard.framework.APDU;
    import javacard.framework.Applet;
    import javacard.framework.ISO7816;
    import javacard.framework.ISOException;
    import javacard.security.*;
    //import javacardx.crypto.*;
    public class Test extends Applet {
    // Private Objects
    private static Key privateKey;
    public static Key publicKey;
    private static KeyPair keyPair;
    // Private Debug objects
    private byte flag = 0;
    //standard APDU input offset values
    public final static byte THIS_CLA = (byte)0x90;
    // This is the INS for starting to generate 1024 bit RSA keys
    public final static byte  GENERATE_RSA_KEYS = (byte)0x20;
    // INS to sign provided hash
    public final static byte  COMPLETE_TRANSACTION= (byte)0x22;
    // INS to return Status of Applet.
    public final static byte  INITIALIZE_UPDATE= (byte)0x24;
    // INS to reset keys
    public final static byte  COMPLETE_UPDATE= (byte)0x26;
    // dummy byte sequences returned by this applet
    private final static byte[] INIT_SEQUENCE = { (byte)0xff, (byte)0x2 };
    private final static byte[] COMPLETE_SEQUENCE = { (byte)0x1, (byte)0x3 };
    private final static byte[] INIT_UPDATE_SEQUENCE = { (byte)0x1, (byte)0x2, (byte)0x3 };
    private final static byte[] COMPLETE_UPDATE_SEQUENCE = { (byte)0x1, (byte)0x1 };
    * Constructor.
    * Only this class's install method can create the applet object.
    private Test() {
    //perform some initialization here
    register();//register this instance
    * Installs this applet.
    * @param byteArray the array containing installation parameters
    * @param offset the starting offset in byteArray
    * @param length the length in bytes of the parameter data in byteArray
    public static void install(byte[] byteArray, short offset, byte length) {
    new Test();
    * Implementation  of the standard method for processing an incoming APDU.
    * @param apdu the incoming APDU
    * @exception ISOException with ISO 7816-4 response bytes
    public void process(APDU apdu) {
    byte buffer[] = apdu.getBuffer();
    //@SuppressWarnings("unused")
    flag = 0;
    if (buffer[ISO7816.OFFSET_CLA] == THIS_CLA) {
    switch (buffer[ISO7816.OFFSET_INS])    {
    case GENERATE_RSA_KEYS:
    //writeBack(apdu, INIT_SEQUENCE);
    generateRSAKeys(apdu, INIT_SEQUENCE);
    flag = 1;
    break;
    case COMPLETE_TRANSACTION:
    writeBack(apdu, COMPLETE_SEQUENCE);
    break;
    case INITIALIZE_UPDATE:
    writeBack(apdu, INIT_UPDATE_SEQUENCE);
    break;
    case COMPLETE_UPDATE:
    writeBack(apdu, COMPLETE_UPDATE_SEQUENCE);
    break;
    default:
    ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
    * An example method that writes back a given byte array through the apdu.
    protected void generateRSAKeys(APDU apdu, byte[] bytes)  {
    //byte buffer[] = apdu.getBuffer();
    try {
    byte[] apduBuffer = apdu.getBuffer();
    // Debug flag
    flag = 9;
    //privateKey = KeyBuilder.buildKey(KeyBuilder.TYPE_RSA_PRIVATE,KeyBuilder.LENGTH_RSA_2048, false);
    //privateKey = KeyBuilder.buildKey(KeyBuilder.TYPE_DSA_PRIVATE,KeyBuilder.LENGTH_DES, false);
    //publicKey = KeyBuilder.buildKey(KeyBuilder.TYPE_RSA_PUBLIC,KeyBuilder.LENGTH_RSA_2048, false);
    // Debug flag
    flag = 10;   
    keyPair = new KeyPair(KeyPair.ALG_RSA_CRT, (short)1024);
    //keyPair = new KeyPair(KeyPair.ALG_RSA, (short)publicKey.getSize());
    keyPair.genKeyPair();
    publicKey = keyPair.getPublic();
    // Debug flag
    flag++;   
    ((RSAPublicKey)publicKey).getModulus(apduBuffer, (short)0);
    //    apdu.setOutgoing(); // set transmission to outgoing data
    //    apdu.setOutgoingLength((short) apduBuffer.length);
    apdu.setOutgoingAndSend((short) 0,  (short) (publicKey.getSize()/8));
    // Debug flag
    flag++;       
    } catch(Exception e) {
    flag = 0;
    * An example method that writes back a given byte array through the apdu.
    protected void writeBack(APDU apdu, byte[] bytes) {
    byte buffer[] = apdu.getBuffer();
    // copy bytes into buffer
    buffer[0] = bytes[0];
    buffer[1] = bytes[1];
    // set apdu for data output
    apdu.setOutgoing();
    apdu.setOutgoingLength( (short) (2) );
    // output header
    apdu.sendBytes( (short)0, (short) 2);
    // writes data
    //apdu.sendBytesLong( bytes, (short) 0, (short) 0 );
    } NOTE: Part of the code is from an online tutorial that i found.
    Thanks for your help.

    Hi,
    That exception generally means that the platform you are running on does not support that crypto operation. This can be an indecator that the cipher you would use this key with is not available or the key size you are using is not supported.
    I am not familiar with the Eclipse plugin you mentioned, but if you are using the Java implementation of the Java Card simulator (jcwde) provided with the JCDK, ti will not support crypto operations. There have been several posts on this topic recently that you may be able to search for that will give you more details about this.
    On a coding note, you should not be using the new keyword outside of the applet constructor. In fact you should not be allocating new memory outside of this constructor. This is because you should not rely on garbage collection in Java Card as it is not be implemented on all cards. If it is available on a card it may be rather slow.
    Cheers,
    Shane
    Edited by: safarmer on 27/10/2009 17:19

  • CS5  trouble with updating main template & pages

    Sorry I'm new at this & didn't realize I needed a full title in the subject area.  I 'put', I test & it all looks good.  But when I go on line the changes didn't work in the main template in the navigation & the side bar ads & promoos don't change on all the pages - again - even tho' when I test in Firefox & Explorer they do show up updated.

    I SENT YOU A SNIPE PHOTO OF THE TEMPLATE SHOWING ONE OF THESE FILES ON THE MAIN TEMPLATE
    THIS WAS ORIGINAL LINK:
    •Access a cached copy of www.kosherwoman.com/Menu_Items/Health/TIPS/prevention/preventDentalProblems.html
    IT WAS CHANGED TO:
    ../Menu_Items/Health/DENTAL/dentalCare.html
    On some pages, you get the correction & on others you get the old link with the line that it doesn't work
    THIS WAS ORIGINAL LINK:
    •Access a cached copy of www.kosherwoman.com/Menu_Items/Kitchen/foodContamination/preventingFoodContaminat ion.html
    IT WAS CHANGED TO:   .../Menu_Items/Kitchen/CONTAMINATION/preventingFoodContamination.html
    Ruth Goldman
    Kosher Woman Administrator
    E-mail:  [email protected]

  • Troubles with using my subscription

    Dear Adobe
    I have bought a subscription for 1 year for school on "academicdownload.com".
    I have paid and received my code.
    I entered the code, and downloaded the 'CreativeCloudSet-Up.exe'.
    I was unable to log in with my password/e-mail adress. I pressed forgot password and it said it has sent an e-mail, but I never received any.
    So I tried re-registering, I tried to re-enter the code, but the code has been claimed!
    (Somehow I was able to enter the e-mail adress again which I registered with earlier, so maybe I registered the code with the wrong e-mail adress?)
    I cannot use my code anymore, and I really need these programs as soon as possible for school.
    I can provide pictures of my purchase etc.
    Please help me!
    Meindert Stijfhals
    The proof I've bought it:
    http://prntscr.com/2qmu7m
    http://prntscr.com/2qmuly
    The e-mail I reregistered with is [email protected] (I have no subscription, and code has been used)

    This is a public forum, not direct Adobe support (so you should NEVER post personal information)
    Next link has a "Chat Now" button near the bottom
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • CS5  trouble with updating main template & pages is a dreamweaver problem

    The web site is www.KosherWoman.com which I work on with DWCS5.
    Whenever I update anything - the nav,- add a side bar ad or promo or add a new page - I test it via F12.  It shows the changes on my pages, on the nav & on the side bars.  But when I upload it to my server,the changes aren't reflected on-line.  I use the 'put' method & when that doesn't work I expand to show the local & remote site & I drag & drop with Dependent files as a yes.  Again, the changes do not occur.
    After failing to have the changes show up when I copied the dreamweaver site to a flash drive & tried it on another computer in my office, I then gave it to a co-worker who went home & tried it putting the flash drive on his computer.  He has DW CS4  & tried to update pages from there.  He, too, tested with F12 & everything was correctly changed but they also failed to take after being 'put' & after trying both from dreamweaver & from remote - the old fashioned way of dragging & dropping. The site has been up since January & only developed this problem a couple of weeks ago.
    Is this a Dreamweaver problem or possibly a problem of my hosting company earthlink.net.?

    KosherWoman wrote:
    HOW DO YOU DO THIS?
    When you have got it, you need to configure it using your FTP details.  It acts as a FTP program and it is very nice indeed.  It is like using your host's computers/servers as your own.
    Hope this helps.
    OK I am not currently on Windows 7 machine so I will tell you what I do in Windows XP.  The method is still the same in Windows 7.
    1) Open/Click on Network from your start button (the one you said you have got it)
    2) now in windows XP, I see something like this:
    3) Now can you see the first item that says Add a Network Place?  Click on it
    4) For about one or two windows you just need to click next until you come to a screen that looks like this:
    In the above box you need to enter the FTP address like ftp://yourdomain.com (whatever your host has told you about this)
    You just continue doing this - follow the on screen instructions and you are done.
    If I get time I'll see if I can post exact instructions for Windows 7 or somebody else like John Waller can do this because he has a better machine than mine!  My machine is refurbished from old systems I found on some streets discarded by some business!
    hth

  • Trouble with using curl

    hi all
    iam using curl with java as it is the requirement of the client.
    however i mange to have libcurl from curl websit it give the following error:
    Exception in thread "main" org.curl.CURLError: Critical libraries couldn't be loaded
    at org.curl.CURL.error(CURL.java:1451)
    at org.curl.CURL.error(CURL.java:1386)
    at org.curl.CURL.error(CURL.java:1377)
    at org.curl.CurlGlue.error(CurlGlue.java:70)
    at org.curl.CurlGlue.<clinit>(CurlGlue.java:171)
    at demotest1.main(CuRl1.java:15)
    Has anybody any idea about this error or howto use the curl with java

    the source code for the curl that i am using in java is
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import java.sql.*;
    import org.curl.*;
    import java.lang.*;
    class test
         public void curl_connect()
              Runtime     rt=Runtime.getRuntime();
              String ls_str="";
              try
                   String urlpath="qawww.rapidclaims.com/login.php";                    
                   String CreateProcess ="";               
                   System.out.println("inside cURL process");               
                   CreateProcess = "c:\\curl\\curl.exe https://" + urlpath;
                   Process pr = rt.exec(CreateProcess);
                   InputStream stderr = pr.getErrorStream();
                   InputStreamReader isr = new InputStreamReader(stderr);
                   BufferedReader br =new BufferedReader(isr);
                   String line = null;
                   while ((line = br.readLine())!= null )
                        System.out.println(line);
                   CurlGlue cg = new CurlGlue();
                   cg.setopt(CURL.OPT_WRITEFUNCTION, 2);
                   cg.setopt(CURL.OPT_VERBOSE, 3);
                   cg.setopt(CURL.OPT_FOLLOWLOCATION, 1);
                   cg.setopt(CURL.OPT_SSL_VERIFYPEER, 0);
                   cg.setopt(CURL.OPT_SSL_VERIFYHOST, 0);
                   cg.setopt(CURL.OPT_SSLCERTTYPE, "PEM");
                   cg.setopt(CURL.OPT_SSLVERSION, 3);
                   cg.setopt(CURL.OPT_HTTPPOST, 1);
                   int result = cg.setopt(CURL.OPT_URL,"92.168.1.102,mangesh/receiver.php" );
                   // post method
                   cg.setopt(CURL.OPT_POST, 1);
                   // IS THIS THE RIGHT WAY TO SET SIMPLE POST DATA?
                   cg.setopt(CURL.OPT_POSTFIELDS, "some post data");
                   // IS THIS THE RIGHT WAY TO SET COOKIE?
                   String cookieString= "";
                   if(cookieString != null)
                   cg.setopt(CURL.OPT_COOKIE, cookieString);
                   cg.perform();
              catch(Exception ee)
                   System.out.println("error traced");
                   ee.printStackTrace();
    class test1
         public static void main(String args[])
              try
                   test t12= new test();
                   t12.curl_connect();
              catch(Exception ee)
                   ee.printStackTrace();
    }               Message was edited by:
    centurions

Maybe you are looking for