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;

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.

  • 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

  • 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!
    >
    >

  • 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

  • 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

  • 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

  • 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 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

  • HT1175 Trouble with using Time Machine for the first time.

    I do not see the "Change Disk" option. Once I switch it to on, a window pops up that only has one option which is "set up another time capsule." I click that and it searches for something using airport utility with no results. What am I doing wrong/anyone know what the problem is?

    Very fortunately I don't use Lion.. and I know it displays things differently... are you sure you are looking in the right place.. Have you opened the section for network.. or do it manually..
    In finder (hopefully lion is similar) in top menu, go, go to server.. and type in AFP://TCIPADDRESS.
    Obviously put in the actual IP address for my TCIPADDRESS.. or use the TCNAME.
    Connecting by both ethernet and wireless is not helping btw.. use one or the other. Although for discovery it is fine actual file transfer gets messed up.. stick to wired for files..
    If you still have issues.. press and hold reset for 10sec.. if the TC does not come alive.. I am not sure.. open the network preferences and check that you are getting IP address from it.. and then open a terminal and ping it..
    Thus..
    $ ping tcgen3
    PING tcgen3.bigpond (192.168.2.65): 56 data bytes
    64 bytes from 192.168.2.65: icmp_seq=0 ttl=255 time=2.678 ms
    64 bytes from 192.168.2.65: icmp_seq=1 ttl=255 time=0.810 ms
    64 bytes from 192.168.2.65: icmp_seq=2 ttl=255 time=7.193 ms
    64 bytes from 192.168.2.65: icmp_seq=3 ttl=255 time=0.943 ms
    64 bytes from 192.168.2.65: icmp_seq=4 ttl=255 time=0.931 ms
    ^C
    --- tcgen3.bigpond ping statistics ---
    5 packets transmitted, 5 packets received, 0.0% packet loss
    round-trip min/avg/max/stddev = 0.810/2.511/7.193/2.441 ms
    Notice I use a short, no spaces pure alphanumeric name.. this is a big help.. and easier to type!!
    You can also disconnect every other network connection.. make sure nothing is connected to the TC or computer.. they are all alone in the world. Restart both.

  • Trouble with using WoW on Mutable User Accounts with new MacBook Pro

    My son just got a new MacBook Pro*. I installed WoW on his account and created an account for me; both are admin accounts. He can startup WoW just fine, but when I start the Launcher, I get a message that the launcher can't download information about the next patch, and to check my network. If I launch the game directly, the icon just bounces on the dock and then quits.
    I have checked the permissions and they look good.
    The console log reads:
    11/18/10 12:48:40 PM Firewall[58] Launcher is listening from 0.0.0.0:9112 proto=6
    11/18/10 12:48:43 PM Launcher[490] nRet = 1
    OR without the firewall
    11/18/10 12:55:58 PM Launcher[544] nRet = 1
    * Model Name: MacBook Pro
    Model Identifier: MacBookPro6,2
    Processor Name: Intel Core i7
    Processor Speed: 2.66 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2

    I have posted to the Mac Tech support forum, and heads are being scratched. I was wondering if 10.6 was different from 10.5 with regard to mutable users. NOTE that WoW will only work on intel based macs now. so this poor tired old box is done for.
    Besides, as I hear it, it is a legacy machine now.

  • Big trouble with using Find/Move/Rename Actions multiple times

    Hi~
    I have a folder with a lot of JPGs in it.
    For simplification, let's say this folder contains exactly 1000 JPGs. The JPGs have been renamed numerically 1 through 1000 while still preserving the original order the JPGs came in straight out of Camera.
    I want to separate the JPGs by putting them into different folders (i.e. "untitled folder 1", "untitled folder 2", "untitled folder 3", etc.). I want to put 20 JPGs in each folder. The first folder will contain original JPGs 1-20, the second folder will contain original JPGs 21-40, the third will have original JPGs 41-60, ...and the last folder (untitled folder 50) will have original JPGs 981-1000.
    I also want to rename all of the JPGs in each folder numerically, 1 through 20. For example, untitled folder 3 will contain original JPGs 41-60, but I want to rename them to 1 through 20. This is very important - the original order must be preserved. As an example, let's look at untitled folder 3 with JPGs 41-60. "41.JPG" must be renamed as "1.JPG", "42.JPG" must be renamed as "2.JPG" ... "60.JPG" must be renamed as "20.JPG".
    I want this to continue until I have 50 separate folders, with each containing 20 JPGs, all of which are sequentially numbered 1 through 20 while still preserving the original order.
    I gave this a try on Automator with no solid results. The sequence of actions I put together were as follows:
    1. Get Specified Finder Items (JPGs 1-20 from the folder containing the 1000 original JPGs)
    2. Move Finder Items (to the new folder: untitled folder 1)
    3. Get Specified Finder Items (original JPGs 1-20 that are now in untitled folder 1)
    4. Rename Finder Items (The settings for rename are as follows: Make Sequential, Add number to = "new name", "item name" is deleted and then I press return, Place number = "before name", Start numbers at = "1", separated by = "nothing", and the rename Example looks like "1.xxx"
    These setups are repeated again for JPGs 21-40, and again for 41-60. Importantly, I modify each action to make sure it gets the correct JPGs from the correct folder.
    I wrote the action to last for the first 60 JPGs (I wanted to test it before writing the rest of it, which would take a long time!)
    The results I got are as follows:
    -Original JPGs 1 through 60 have been removed from the originals folder containing the 1000 Original JPGs. (so far so good)
    -Original JPGs 1-20 from the originals folder have been moved to "untitled folder 1" and renamed 21-40 (not good... I wanted them to stay the same: 1-20)
    -Original JPGs 21-40 were moved to "untitled folder 2" and were correctly renamed 1-20. Then, these were unexpectedly moved a second time to "untitled folder 3" (not good).
    -Original JPGs 41-60 were moved to "untitled folder 3" and were renamed as 21-40.
    Summary:
    The final result was that Untitled folder 1 contained original JPGS 1-20, incorrectly renamed to 21-40. Untitled folder 2 is empty. Untitled folder 3 contains original JPGs 21-60. Original JPGs 21-40 were correctly renamed 1-20, whereas JPGs 41-60 were incorrectly renamed 21-40.
    I feel like I have reached the limit of my knowledge with Automator, so I need your help!
    Thank you very much for at least reading this!
    ~Michael

    First, be careful of the forum you post in - there are Automator forums for both Tiger and Leopard. Your profile shows you running Leopard, but this reply would apply to Tiger as well.
    Most actions return the results from whatever it is that they do - in the case of Move Finder Items, the action returns the items that it moved. In your example workflow, when you follow the move action with the Get Specified Finder Items, you double up the list of items to rename, so there is some extra renaming going on. Most actions have an option to ignore the input from the previous action, but getting rid of the Get Specified Finder Items action from your workflow should clear things up.
    Automator will work for your workflow if there aren't too many items, but if you really have thousands of files you might have better luck with an AppleScript.

Maybe you are looking for

  • Has anyone solved the Outlook .dll not staying checked for sync?

    I have tried reinstalling everything and updating everything I know to update. When I start outlook 2003 that second .dll still gives me a runtime error. So I have to manually check it every time I want to sync. Thanks for any tips out there.

  • Dynamic Template Selection (for Button)

    Hello all I've got a few buttons on the top of a page. Each button submits the page, and the page displays different things based on the :REQUEST value that these buttons have. eg.. (Options) (Report) (Chart) (Other) I would like it so that the curre

  • WS14000133- Parallel Approval

    Hi, In SRM 5.0 workflow WS14000133- n level approval of SC at header level, Is there a feature by which we can have parallel approval, but ensure that SC goes to next level only when all the parallel approvers have approved the cart? Currently in our

  • Easy DMS ECC 6.0 SP05

    Hello, There are a lot of functions in the registry ( rfccache ). Which mechanisme fills this values.  There are 2 different entries: Complete and FunctionExists. I had some users where p.ex. the FunctionExists - Value of Z_EASYDMS_FUNCT_GET_LIST cha

  • How to set working-dir for precompiled jsp pages to some where under tmp

    If my weblogic application gets exploded into this tmp directory: D:\bea_domains\my_wl_domain\servers\SERVER001\tmp\_WL_user\mywebapp\wxyzzz\war where "wxyzzz" is a random directory name generated by weblogic 9.2, how would I set my working-dir in we