How to put Avantgo content into SD card of Palm T3

I have a Palm T3. I have been using Mark/Space v4 to regularly sync my T3 with Avantgo. I have an 8MB Avantgo account. I am running out of internal memory.
I tried to use Internet Sharing feature of Mark/Space to sync directly from Avantgo while my TT3 sits in the cradle. It did not work.
My computer is an iMac running 10.4.6 and Internet access is via an Apple AEBS connected to a bridge ADSL modem.
Has anyone succeeded in this: using Internet Sharing feature of mark Space v4 to allow Avantgo on the Palm device to sync content into SD card?
I assume I do not need to set any proxy settings. Could that be a problem given my setup in a home environment using a regular ISP?
Any help would be appreciated!

Internet sharing works just fine for me, as does the Mark/Space Conduit for AvantGo, but there appears to be a small catch.
The AvantGo-provided Palm .prc file—currently at version 5.7 build 46—apparently will not operate properly if moved to an SD card. It, and the AG Connect file, apparently must reside in main memory to operate. This isn't a Missing Sync issue, it's a shortcoming of the AvantGo application on your Palm.
Even using an almost universally accepted method of moving these files to an SD card, using PowerRUN, didn't work. Here are the results of an AvantGo-only synchronization attempt: first with the applications on the SC card, then with them back in main memory where they have always resided on my hanheld…
Sync starting at 04/30/06 14:38 (14:38:58) on USB (5.1.0)
TimeCopy: host 2006/04/30 14:39:01, palm 2006/04/30 14:39:01, diff: 0s
OK TimeCopy
Please upgrade your AvantGo software by visiting http://avantgo.com
OK Mark/Space Conduit for AvantGo with 1 message(s)
Sync completed successfully at 04/30/06 14:39 (14:39:03)
Sync starting at 04/30/06 14:42 (14:42:37) on USB (5.1.0)
TimeCopy: host 2006/04/30 14:42:42, palm 2006/04/30 14:42:42, diff: 0s
OK TimeCopy
OK Mark/Space Conduit for AvantGo
Sync completed successfully at 04/30/06 14:42 (14:42:59)
Note the Please upgrade your AvantGo software… log entry when the applications reside on the expansion card. Simply using PowerRUN to return them to main memory resulted in a successful synchronization and allowed me to browse AvantGo content using internet sharing.

Similar Messages

  • How to put jsp content in to string butter?

    Hello Friends,
    I'm new to J2EE. please tell me how can I put jsp content into string buffer. following is a part of code I wrote. I'm also reading data from database on some part of code.
    <html>
         <head>
              <title>JSP for AdminForm form</title>
         </head>
         <body style="font-family:verdana;font-size:10pt;"><=<br>
         <%@ include file="header.html" %>
              <html:form action="/admin">
                   <table border="1" width="700" height="500">
                   <tr>
                   <td border="1" width="100" height="5"> Check <br></td>
                   <td border="1" width="100" height="5"> SNo. <br></td>
    </tr>
    <tr>
                   <td border="1" width="150" height="5"> userId <br></td>
                   <td border="1" width="150" height="5"> Role <br></td>
                   <td border="1" width="150" height="5"> Dept. <br></td>
                   <td border="1" width="150" height="5"> Edit <br></td>
                   </tr>
    </table>
    </body>
    </html>
    please help me out.
    Thanks.

    You have to generate a replacement for the default ServletOuputStream so that every time the data is sent to the browser (via the output stream) it is also sent to a tool that can generate a String or StringBuffer (a StringWriter does this nicely). One way to do this is to generate a ServletOutputStream implementation that wraps a ServletOutputStream and StringWriter. You would implement each method in ServletOutputStream and pass the parameters to both wrapped streams, i.e.:
    public class ServletOutputStreamAndStringWriter extends ServletOutputStream {
      private ServletOutputStream sos;
      private StringWriter sw;
      pubic ServletOutputStreamAndStringWriter (ServletOutputStream sos, StringWriter sw) {
        this.sos = sos;
        this.sw = sw;
      public void print(String s) {
        sos.print(s);
        sw.write(s);
      public void println(String s) {
        sos.println(s);
        sw.swrite(s+System.getProperty("line.separator"));
      //etc... for all methods including flushes and closes...
    }Next you have to insert the ServletOutputStream implementation above into the application in a manner that doesn't require a re-write of the rest of your code. The best way to do this is to generate a ServletResponseWrapper implementation that returns your new implementation of the ServletOutputStream in the getOutputStream() method:
    public class SplitOutputServletResponse extends ServletResponseWrapper {
      private ServletOutputStreamAndStringWriter sosasw;
      public SplitOutputServletResponse(ServletResponse sr, ServletOutputStreamAndStringWriter sosasw) {
        super(sr);
        this.sosasw = sosasw;
      public ServletOutputStream getOutputStream() { return sosasw; }
    }Now all you have to do is replace the response you use in your application with this wrapper. The best way to do it is through a Filter:
    public class SplitOutputFilter implements javax.servlet.Filter {
      private FilterConfig fc;
      public void init(FilterConfig fc) { this.fc = fc; }
      public void destroy() { }
      /* This is where the filtering work gets done.  You get a request and a response, you pass the request,
          replace the response, and let the rest of the filter chain do its work (the JSP page gets generated and the
          response to the client is generated).  Then after the rest of the filter chain you get the text out of the
          StringWriter you generated for the ServletOutputStream
      public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) {
        // After the JSP does its work, the StringBuffer will be generated from this StringWriter
        StringWriter stringBufferFromHere = new StringWriter();
        // This is the tool used to deliver the JSP output to the above StringWriter
        ServletOutputStreamAndStringWriter output = new ServletOutputStreamAndStringWriter (response.getOutputStream(), stringBufferFromHere);
        // And this is the tool used to deliver the above output stream to the JSP pages
        SplitOutputServletResponse sosr = new SplitOutputServletResponse(response, output);
        // Now we replace the incoming ServletResponse with the wrapper generate above for the rest of the FilterChain
        // which includes the actual execution of the JSP
        chain.doFilter(request, sosr);
        // By the time we get to this point, the JSP has already generated the page.  We need to extract the text as
        // a StringBuffer, which we should have access to via the StringWriter
        StringBuffer jspOutput = stringBufferFromHere.getBuffer();
        // Then do whatever you need to do with the buffer...  Note that the FilterContext provides a reference to the
        // ServletContext which could help you store the buffer, put it in DB, or whatever you wanted to do with it...
    }Filters start at the beginning of a request cycle, can be mapped to particular URLs or groups of URLs. To see how to use them see: http://java.sun.com/products/servlet/Filters.html which also has some similar examples.

  • How to put html file into a canevas?

    How to put html file into a canevas?

    Hi,
    would require you to write a JavaBean that interprets the HTML (there are commercial versions of this available)
    Frank

  • How to put selected videos into one place (File)

    How to put selected videos into a File so I can only show on TV the videos in that file

    YYou have to describe your issue in more detail. Are you using iTunes? Trying to see it in Apple TV, etc, etc.

  • How to put Variable value into Labeltext of a subcomponent WIB

    Hello
    In our Web Based Planning tool we uses Tabstrib_control component and the Label-Text is filled like 'Plan 2008'. (Our BPS = 3.5 and Web interface builder)
    I am looking for a way,how to put a variable into the Label field of the component.  I am not sure if there is a possibility to enhance the labelfield with variable values.
    Thanks a lof for any good idea.
    Best regards
    Christian
    Our BPS = 3.5 and Web interface builder

    Hello Christian,
    Maybe I have a solution for your problem.
    1. Create subcomponent "Selector variable" with your variable.
    2. Hide this new subcomponent
    3. Write in the Label-Text: <%=descr("Name of new subcomponent"/value)%>
    If the variable will be selected by the user in the web interface, put the name of this selector in the field "Update upon Change of" in the properties of the new created subcomponent.
    Hope this helps.
    Friedrich

  • How to put my podcasts into playlist folders? Can't drag'em.

    How to put my podcasts into playlist folders? Can't drag'em.
    I've subscribed to a number of podcasts & they appear in my iTunes window under the Podcasts section.
    There i have
    2 problems:
    1st: I can't rearrange or group them so can listen consecutively to different topics.
    I must listen to one, then come to the keyboard and select the next to start playing. Now, I know that I can get them to play consecutively once I've placed them into Playlist folders,
    but that brings me to my second problem:
    2) I can't drag and drop them into separate iTunes FOLDERS (by topics).
    (Though I have been able to drag&drop separate items from my 'Music' section into iTunes playlist folders.)
    But can't drag from Podcasts section into Playlists,
    as everytime I try they just refuse to go in and scurry back to their starting position under Podcasts.
    Zupwidiss? This can't be.
    I would be grateful for your solution.
    And also grateful if I could have easily found the solution explained
    before I had to resort to bothering this forum with this question.
    Just using my MacMini, Snow Lep.

    Thanks very much.
    You have reminded of the
    difference between
    Playlists and Playlist Folders:
    One can only drag things from the Master list into PLAYLISTS.
    And can only drag Playlists into Playlist Folders.
    I'm an older man, and easily confused by these things.
    Many thanks to my friend in Germany.
    P.S. Your English is excellent.

  • How to put measures correctly into spreadsheet

    Hi expert,
         I loaded data into a planning model, and I can see data in BW and BEX, but when I put 'ACCOUNT' into row, and 'TIME' into column, I can't see 'measures' in spreadsheet, eventhough I drag 'measures' into spreadsheet from EPM pane, then update, getting blank for 'measures', it is gone. please tell me how to put measures correctly into spreadsheet.

    P.S If you are creating report by drag n drop on EPM pan, then same way need to add measure dimension in desired axis.
    Share the screen shot.
    Shrikant

  • How to put 2nd column into 1st column in excel

    Hello,
    I have a question how to put 2nd column into 1st column in excel. Thank you.
    Solved!
    Go to Solution.

    Why the 1 iteration for loops?
    Why the two Index Arrays?  It is just trying to fix the problem created by the For Loops on the original 1-D arrays.
    Both of those things are creating 2-D arrays that are complicating things and can be eliminated.
    You can take your 2 1-D arrays, use Build Array and right click to set "Concatenate Inputs".
    If you do have a 2-D array, you can use Reshape Array to make it a 1 column by N row 2-D array.

  • How to put a dvd into ipod touch

    i have no idea how to put my DVDs into my ipod touch! can someone help? i have the new touch, 3g i think? it's a 32GB. i really don't feel like having to buy the movie on itunes when i already own it as a dvd. can someone please help me?

    Sorry, but the Apple Forum Terms of Use don't permit us to discuss ripping commercial DVDs. Try Googling for such information.

  • Put PHP Content into Dynamic Text Field

    How do I put the contents of a php document into a dynamic
    text field in a Flash document? Thanks.
    G

    Do you mean an html document generated from a PHP script?
    Do you mean the source of a PHP script?
    Probably you mean you want to format a page such as a PHP
    script would do.
    That is done either manually inside a Flash movie or
    dynamically via
    Actionscripting. Then you only send data back and forth
    between PHP and
    Flash using either the LoadVars or the XML Actionscript
    classes. You can use
    HTML inside of Flash TextField objects but again that will be
    data sent from
    the PHP server script.
    Here are some basic examples I use in Flash seminars you can
    look at:
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/LoadVars/LoadVarsEx01.php
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/LoadVars/Ex02/LoadVarsEx02.p hp
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/GenerateFlashObjectsFromPHP/ Ex01/GenerateFlashObjectsFromPHPEx01_Doc.php
    http://www.hosfordusa.com/ClickSystems/courses/flash/examples/XMLPHP/EX01/XMLPHPEchoEx01_D oc.php
    You also want to look at the docs for LoadVars and XML
    sendAndLoad methods:
    XML
    http://livedocs.macromedia.com/flash/8/main/00002879.html
    LoadVars
    http://livedocs.macromedia.com/flash/8/main/00002336.html
    Lon Hosford
    www.lonhosford.com
    May many happy bits flow your way!
    "gena.wenli" <[email protected]> wrote in
    message
    news:e5g6av$lpv$[email protected]..
    How do I put the contents of a php document into a dynamic
    text field in a
    Flash document? Thanks.
    G

  • How to Put BW Workbook into Portal(Step by Step)

    Hi All expert
    How to put BW Workbook(or T-cd:RRMXP) into portal , if any one knows configuration steps, please reply to me step by step

    Dear Lemine,
    Check this link..
    http://help.sap.com/saphelp_nw04/helpdata/en/4d/f3fa40badbf36fe10000000a1550b0/content.htm
    An iView with a workbook can be generated using the Portal Content Studio or Role Upload.
    The iViews are of type SAP Transaction iView and have the code link com.sap.portal.appintegrator.sap.Transaction.
    The most important properties are System, Transaction (TCODE) and ApplicationParameter.
    ·        The System property contains the alias on the BW system (see Creating BW Systems in the  Portal).
    ·        The transaction code for every workbook is RRMXP.
    ·        The value WBID= is in the ApplicationParameter property.
    You can determine the workbook ID with the BEx Analyzer:
                                a.      Open the desired workbook.
                                b.      In the BEx toolbar, choose ® OLAP Functions for Active Cells ® Properties. The Information tab page contains the Workbook ID (Server).
    Note that with BW workbooks as an iView, the AutoStart property contains the value True (process first screen) and the GuiType property contains the value WinGui.
    Hope this helps u..
    Best Regards,
    VVenkat...
    Edited by: Venkata Narayana Jakkampudi on Dec 30, 2008 12:34 PM

  • How to put a String into a byte array

    How can i put a String into a byte array byte[]. So that i can send it to the serial port for output to an LCD display. Cheers David

    javadocs for String
    getBytes
    public byte[] getBytes()
    Encodes this String into a sequence of bytes using the platform's default charset, storing the result into a new byte array.
    Returns:
    The resultant byte arraySince:
    JDK1.1

  • How to put a collection into a Ref Cursor?

    Hi,
    I am trying to create a procedure (inside a package) which fills a collection and I need to fill a ref cursor (out parameter) with this collection. I can fill the collection but I how can I fill the ref cursor? I am receiving the message "PL/SQL: ORA-00902: invalid datatype" (Highlighted below as comments)
    I have a limitation: I am not allowed to create any kind of objects at the database schema level, so I have to create them inside the package. I'm writting it with SQL Tools 1.4, I'm also not allowed to do this in SQL+.
    This is the code of the package. The cursors' selects were simplified just because they are not the problem, but their structure is like follows below.
    CREATE OR REPLACE PACKAGE U3.PKG_TESTE AS
    TYPE REC_TYPE IS RECORD(
    COL1 VARCHAR2(50) ,
    COL2 VARCHAR2(100) ,
    COL3 VARCHAR2(20) ,
    COL4 VARCHAR2(30) ,
    COL5 VARCHAR2(100) ,
    COL6 VARCHAR2(50) ,
    COL7 NUMBER(3) ,
    COL8 VARCHAR2(30) ,
    COL9 VARCHAR2(16) ,
    COL10 VARCHAR2(50) ,
    COL11 NUMBER(4) ,
    COL12 VARCHAR2(40)
    TYPE REC_TYPE_LIST IS TABLE OF REC_TYPE
    INDEX BY BINARY_INTEGER;
    TYPE C_RESULTSET IS REF CURSOR;
    VAR_TAB_TESTE     REC_TYPE_LIST;
    PROCEDURE     Z_REC_INSTANCE
    pUSER_SYS_CODE VARCHAR2,
    pSYS_SEG_CODE VARCHAR2,
    pComplFiltro VARCHAR2,
    pCodInter NUMBER,
    cResultset out C_RESULTSET
    END PKG_TESTE ;
    CREATE OR REPLACE PACKAGE BODY U3.PKG_TESTE
    AS
    PROCEDURE Z_REC_INSTANCE
    pUSER_SYS_CODE varchar2,
    pSYS_SEG_CODE varchar2,
    pComplFiltro varchar2,
    pCodInter number
    AS
    cursor cur1 is
    select 'A' COL1, 'B' COL2, 'C' COL3, 'D' COL4, 'E' COL5,
    'F' COL6, 'G' COL7, 'H' COL8
    FROM DUAL;
    regCur1 cur1%rowtype;
    cursor cur2 is
    SELECT 'I' C1, 'J' C2, 'K' C3, 'L' C4
    FROM DUAL;
    regCur2 cur2%rowtype;
    varSQL varchar2(4000);
    varCOL10s varchar2(100);
    varFiltroAtrib varchar2(100);
    varCount number(10);
    BEGIN
    varCount := 1;
    open cur1;
    Loop
    fetch cur1 into regCur1;
    exit when cur1%notfound;
    open cur2;
    Loop
    fetch cur2 into regCur2;
    exit when cur2%notfound;
    VAR_TAB_TESTE(varCount).COL1 := regCur1.COL1;
    VAR_TAB_TESTE(varCount).COL2 := regCur1.COL2;
    VAR_TAB_TESTE(varCount).COL3 := regCur1.COL3;
    VAR_TAB_TESTE(varCount).COL4 := regCur1.COL4;
    VAR_TAB_TESTE(varCount).COL5 := regCur1.COL5;
    VAR_TAB_TESTE(varCount).COL6 := regCur1.COL6;
    VAR_TAB_TESTE(varCount).COL7 := regCur1.COL7;
    VAR_TAB_TESTE(varCount).COL8 := regCur1.COL8;
    VAR_TAB_TESTE(varCount).COL9 := regCur2.C1;
    VAR_TAB_TESTE(varCount).COL10 := regCur2.C2;
    VAR_TAB_TESTE(varCount).COL11 := regCur2.C3;
    VAR_TAB_TESTE(varCount).COL12 := regCur2.C4;
    varCount := varCount + 1;
    end Loop;
    end Loop;
    -- I'd like to do something like this:
    -- c_resultset := select * from var_tab_teste;
    -- but i don't know how to put the records of the type on the ref cursor,
    -- probably because I don't know how to select them
    -- pl/sql: ora-00902: invalid datatype
    for varCount in (select COL1 from table( CAST ( VAR_TAB_TESTE AS REC_TYPE_LIST ) ))
    loop
    dbms_output.put('WORKS');
    end loop;
    END Z_REC_INSTANCE;
    END PKG_TESTE;
    SHOW     ERR     PACKAGE          PKG_TESTE;
    SHOW     ERR     PACKAGE BODY     PKG_TESTE;
    SHOW     ERR     PROCEDURE     PKG_TESTE.Z_REC_INSTANCE;
    I'm using:
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Thanks in advance.

    I don't have the exact version but in 9iOK I lied, I found a 9i instance ;-)
    Oracle9i Enterprise Edition Release 9.2.0.7.0 - 64bit Production
    JServer Release 9.2.0.7.0 - Production
    SQL> CREATE TABLE table_name (column_name VARCHAR2 (30));
    Table created.
    SQL> INSERT INTO table_name VALUES ('value one');
    1 row created.
    SQL> INSERT INTO table_name VALUES ('value two');
    1 row created.
    SQL> COMMIT;
    Commit complete.
    SQL> CREATE OR REPLACE PACKAGE package_name
      2  AS
      3     TYPE collection_type_name IS TABLE OF table_name%ROWTYPE;
      4
      5     FUNCTION function_name
      6        RETURN collection_type_name PIPELINED;
      7  END package_name;
      8  /
    Package created.
    SQL> CREATE OR REPLACE PACKAGE BODY package_name
      2  AS
      3     FUNCTION function_name
      4        RETURN collection_type_name PIPELINED
      5     IS
      6     BEGIN
      7        FOR record_name IN (SELECT column_name
      8                            FROM   table_name) LOOP
      9           PIPE ROW (record_name);
    10        END LOOP;
    11
    12        RETURN;
    13     END function_name;
    14  END package_name;
    15  /
    Package body created.
    SQL> VARIABLE variable_name REFCURSOR;
    SQL> BEGIN
      2     OPEN :variable_name FOR
      3        SELECT column_name
      4        FROM   TABLE (package_name.function_name);
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SQL> PRINT variable_name;
    COLUMN_NAME
    value one
    value two
    SQL>I recommend though that you test this thoroughly. There were bugs with this approach when it was newly introduced that prevented you from dropping the package.

  • How to put iPod 5G into retail mode

    How can I put iPod 5G INTO RETAIL MODE AS I RUN A PHONE SHOP

    What do you mean by retail mode?
    Apple uses their own custom iOS mods to have iOS devices for demonstration in their stores.
    You can do some restrictions of use of the iOS device by using Guided Access. See:
    http://support.apple.com/kb/ht5509

  • How to put DVD directly into iPod?

    As above.
    Thanks

    I havent found a good freeware program yet. I used DVD shrink and it worked fine but it put the file into seval parts.
    I have heard DVD decryptor is a good one but the project was shut down so you can only download it through a file sharing network suchas limewire.
    I havent gotten around to doing it yet so I dont know how good it is

Maybe you are looking for