Question about j2me bluetooth lack of documentation!

I don't know if I am searching in the wrong places. I am coding a simple (at least for now) java application that communicates through bluetooth.
I have been using the j2me api available at http://java.sun.com/javame/reference/apis/jsr082/
But it lacks all sort of information! The API is there... the class and methods are there but nothing is explained....
For example, if you follow the link above to the api, then click in the DiscoveryAgent, then go to the definition of the method searchServices, this is what it tells you:
public int searchServices(int[] attrSet, UUID[] uuidSet, RemoteDevice btDev, DiscoveryListener discListener) throws BluetoothStateException
I can see the declaration, I even deduce what each argument is supposed to be, but..... attrSet???? what is this.... there is a complete lack of information on everything, I find myself googling for everything and finding magic numbers that sometimes make things work. Is there any online resources for bluetooth j2me programming?
By the way... this thing about the attrSet is my latest doubt... if you know what values can be used in there please let me know:)
But my problem is not about this particular method... is about all of the documentation.
If anyone can point me into some place where a good specification can be found i would much appreciate it

http://www.jcp.org/aboutJava/communityprocess/final/jsr082/
found this :) I think it's the answer to my problems.

Similar Messages

  • Question about Toshiba Bluetooth stack V.4

    Hi
    We have a Fujitsu Siemens P7120 Laptop which requires the Toshiba Bluetooth stack located at http://aps.toshiba-tro.de/Bluetooth/pages/download.php
    When we install this in silent mode, the installation takes place however the Bluetooth does not initialise until the Toshiba Bluetooth information exchanger is launched!
    Is there anyway to make the whole installation complete without this other step?

    You should use the BT-stack of FSC. I also tried to install an OEM version of the Toshiba BT-stack, but in this case it was time limited. So check the "About" menu item to get get more details.

  • Strategic question about J2ME program

    I'm quite new to J2ME and am just working through trying to get a small program working between two phones - they communicate fine but I seem to be stuck more on a conceptual overview of some things I don't quite understand yet. Mainly because event driven seems to not sit well with me yet I don't think.
    I have 2 phones and I have them basically enter an insult to each other in challenge before they move into a series of rounds (small game). They do this part fine. What does happen though is the moment the insult is sent from phone A then it goes directly to the next display on phone A- and the same with phone B. The messages are sent but they both need to be able to view each other's insult / challenge before moving to the next displayable.
    I'm really just wondering in general terms how I go about creating stages where each phone has to complete something - a round in a game for example. I know it sounds kind of dumb but I'm just looking for some advice.

    http://www.jcp.org/aboutJava/communityprocess/final/jsr082/
    found this :) I think it's the answer to my problems.

  • Question about internal Bluetooth connector on Tecra 8100?

    Hello all.
    I have a pt810e-13c52-sp notebook. Upgraded to 512MB by using 2 toshiba 256mb pc100 modules bought in ebay, upgraded to a PIII 850 also got in ebay, and upgraded to a bigger 40GB wdc wd400e hard disk, with much less noise than 12GB original one.
    Messing with my computer i have found an internal "bluetooth" connector next to the internal one that belongs to the keyboard.
    Why is this?? Is there any unreleased Bluetooth module for Toshiba Tecra 8100??

    Hi Toka
    Maybe I am wrong but I have found info that Tecra 8100 has no BT and this model can not be upgraded with BT module. Usually BT will be used just sometimes and if you need BT you can use USB BT stick. It is pretty easy to configure it and this small part can be used whenever you need it.

  • A question about j2me game

    I want to make a programme with this function:
    a small dot in the middle, if I click one button "draw",it will draw the line, if I click the "move", it will move without the line
    but now , what I can do is the dot just can move , I don't know how it can draw the line...
    Can anyone help me?
    Ps: here is the code
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    public class main extends MIDlet implements CommandListener
         Display display;
         MyCanvas myCanvas;
         public main(){
              display = Display.getDisplay(this);
              myCanvas = new MyCanvas();
         public void startApp(){
              myCanvas = new MyCanvas();
              display.setCurrent(myCanvas);
              myCanvas.start();
              myCanvas.setCommandListener(this);
         public void pauseApp(){}
         public void destroyApp(boolean unconditional){}
         public void commandAction(Command c, Displayable d){
              if (c == myCanvas.exitCmd)
                   destroyApp(true);
                   notifyDestroyed();
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import com.nokia.mid.ui.*;
    import java.util.Random;
    class MyCanvas extends Canvas implements Runnable
         int gameAction;
         Command exitCmd;
         int status = release;
         int k;
         int getKeyCode;
         final static int press = 1;
         final static int release = 2;
         private CommandListener listener;
         int Width = getWidth();
         int Height = getHeight();
         public int x = getWidth()/2;
         public int y = 0;
         public int x_auto;
         public int y_auto;
         int ok;
         int r;
         Random rnd = new Random();
         Image image;
         public MyCanvas(){
              exitCmd = new Command("Exit",Command.EXIT,1);
              addCommand(exitCmd);
              ok = Math.abs(rnd.nextInt()) % 10;
              r = Math.abs(rnd.nextInt()) % 6;
         public void paint(Graphics g){
              g.setColor(0xff8080);
              g.drawRect(2,2,Width-4,Height-4);
              g.setColor(0x000000);
              g.fillArc(x,y+4,2,2,0,360);
              g.fillArc(x+x_auto,Height-4+y_auto,3,3,0,360);
         public void keyPressed(int keyCode){
              getKeyCode = keyCode;
              status=press;
         public void keyReleased(int keyCode){
              status=release;
         public void run(){
              while (true)
                   try{
                        Thread.sleep(30);
                        if (getKeyCode == -1 && status == press && y > 2)
                             y--;
                        if (getKeyCode == -2 && status == press && y < Height - 4)
                             y++;
                        if (getKeyCode == -3 && status == press && x >2)
                             x--;
                        if (getKeyCode == -4 && status == press && x < Width - 4)
                             x++;
                        repaint();
                   }catch(Exception ex){}
         public void start(){
              Thread runner = new Thread(this);
              runner.start();
         public void setCommandListener(CommandListener l) {
              super.setCommandListener(l);
              listener = l;

    Try making the main loop change x_auto and y_auto rather than x and y. At the moment x_auto and y_auto are never initialised, so they're always 0.

  • A question about j2me Canvas?

    I want to draw a n-point ploygon, and fill some color in this ploygon, please help me, I cannot get a way to solve this problem?

    Hi , I hava download jmicropolygon_midp2-1.0.jar.
    and use
    private int[] xpoint = { 10, 100, 100, 50, 50, 30, 30, 10,10 };
    private int[] ypoint = { 10, 10, 70, 70, 40, 40, 100, 100,10 };
    g.setColor(255, 255, 255);
         g.fillRect(0, 0, getWidth(), getHeight());
         g.setColor(255,0,0);
         PolygonGraphics.drawPolygon(g,xpoint,ypoint);
    but it doesn't work.
    can you tell me how to use it?
    Thanks!!

  • HT5463 Questions about the "Do Not Disturb" feature not addressed in documentation

    Hello,
    I have some questions about the "Do Not Disturb" feature which are not quite addressed by the documentation.
    When DND is enabled, will badge app icons still be displayed?
    When DND is turned off, either manually or automatically, will Notification Center banners be available for alerts which occurred while DND was on, or are they lost forever? 
    I guess the main questions is, is DND like an answering machine, which stores up your notifications until you are ready to deal with them?  Or is it a return of the "turn off all notifications" feature that existed in iOS 4, albeit in a more evolved form?
    Thanks,
    - Steve

    If you have a schedule set, but activate it manually, it will de-activate at the scheduled time anyway. It behaves perfectly on my 4S, my wife's 4, and both of our iPads.
    If you have an iPhone 5, it could be tied to the known issue with automatic time set going Wonky on LTE networks. If that's the case, try disabling the automatic time set and see if it behaves itself.

  • General Question about SAP Documentation. Where to find?

    Hello,
    I am relatively new in the SAP business and so I have some general questions about the SAP Documentation.
    Often internet-links like
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/FIBP/FI-AP-AP-PT.pdf
    are posted here by group members.
    But where do these group members find these documents?
    All I can see at help.sap.com is IDES (the model company created by SAP)and the WWW-version of the SAP-Bibliothek.
    Were can I find these PDF-Files?
    I would appreciate any hint and tip!
    Thank you!
    Kakue

    thats true! i dont know how to find either. Everytime i need something i ask on the forum.
    Here's a good link
    http://www.easymarketplace.de/online-pdfs.php
    Plz reward points if helpfull

  • Question about the custom panel language

    I have a question about the custom panel language...
    The document you provide seems to lack details on some features. Namely the icon and picture widgets. I see from looking at the examples and other vendor's web pages that these features exist, but I don't find any detailed descriptions of them in the documentation. Is there a more complete document describing these and other features...
    http://www.adobe.com/products/xmp/custompanel.html
    Alternatively, can someone fill me in on the syntax and options for at least the icon and picture widget. For instance, how do you load external icons or pictures...
    Tom

    Gunar,
    It could be interesting to have something like
    icon(url: 'http://www.adobe.com/Images/logo.gif', width: 20, height: 20);
    or better
    picture(url: 'http://www.adobe.com/Images/logo.gif', width: 20, height: 20);
    for the pictures and
    include(url: 'http://www.adobe.com/xml/custompanel/camera1.txt');
    for include the cusmtom panel's dynamic portions
    Juan Pablo

  • General questions about JClient

    1. We are having problems with a business application we have developed using BC4J and a JClient client. The performance is horrible. On one update form we have 7 comboboxes, two tabels, some labels and one textfield. It takes 12 - 15 seconds to load, first time, and 4 - 7 seconds second time. Isn't it possible to get better performance on complexe GUI's using JClient?
    2. We have found out that the navigation binding on the comboboxes are about 10 - 15 times as slow as a LOV binding, but we are having problems using the LOV binding. The comboboxes work in a master - detail relationship, and we have that working with a view link and navigation binding. But we would like to use the faster LOV binding. Is it possible to use a LOV binding in a master - detail relationship?
    3. Why are navigation bindings so slow compared to LOV bindings?
    4. What are you general plans with JClient?
    5. Could you possible refer to another project or currently running program that is build using JClient. We feel that we are a little alone on this issue. Is JClient only running on samples, or has it shown it's effeciency in real life.
    6. It is running whitout problems in the samples and when we use the wizards to generate simple forms. But when we construct a complex GUI-structure we quickly run into performance problems. But also unexpected problems that we have difficulty solving, due to lack of documentation and knowledge.
    We would really appreciate, if you would take the time to answer our questions.
    A frustated development team.

    1. We are having problems with a business application we have developed using BC4J and a JClient client. The performance is horrible. On one update form we have 7 comboboxes, two tabels, some labels and one textfield. It takes 12 - 15 seconds to load, first time, and 4 - 7 seconds second time. Isn't it possible to get better performance on complexe GUI's using JClient?Depends on how the application is setup. There are a number of options for deployment that affects how the client app will perform. Are you running JClient app in client-server mode?
    Also in JDev 903, JClient designtime and runtime has fixed a number of issues that led to poor performance by default on a JClient wizard generated app by generating code that performs lazy load of controls and lazy bind of controls. This definitely affects the startup time of forms with tab windows such that only the required controls/bindings on the display is created to begin with.
    Further more if you have a certain example situation that you want us to look at, we'd definitely give that a test to see where the performance bottle-necks are? From our work with other customers, we've seen examples where application assumptions have led to "performance degradation" and when you remove those assumptions, the performance improvements are "noticable" - like how many queries get executed when you startup? Are all those needed? Could the queries be optimized? How many controls come up? Are they all visible and bound? Could they be lazily rendered/bound? etc.
    Yes, we do not have a suggested document yet, as JClient is still pretty new and customers are working on real-life apps which we've studied over time and are gathering "inputs" for best - practices kind of an article/example.
    2. We have found out that the navigation binding on the comboboxes are about 10 - 15 times as slow as a LOV binding, but we are having problems using the LOV binding. The comboboxes work in a master - detail relationship, and we have that working with a view link and navigation binding. But we would like to use the faster LOV binding. Is it possible to use a LOV binding in a master - detail relationship? In JDev 902, LOV Binding was "fetching" all the data for LOV Bindings upfront, so if your data set is small it'd perform well, however in most realtime customer apps that we saw, we found this to be a problem as LOVs would take time to come up the first time. That's been fixed in 903. Now Lovs and Navigation bindings both respect the fetch sizes and other tuning parameters set on the Bc4J ViewObject. So you can tune the fetchsize/rangesize on the VO in the Bc4J object to control how much data is fetched upfront for a given binding. that will definitely affect performance and memory usage as based on a case by case basis, apps would determine what/how many rows should be fetched upfront vs. how many to fetch on scroll/navigation etc.
    3. Why are navigation bindings so slow compared to LOV bindings?see 2 above.
    4. What are you general plans with JClient?See the JClient docs on OTN (jdeveloper page) for general information.
    If you have specific needs/questions we could sure get you answers for those.
    5. Could you possible refer to another project or currently running program that is build using JClient. We feel that we are a little alone on this issue. Is JClient only running on samples, or has it shown it's effeciency in real life.Again JDeveloper home page has referenceslinks that indicate which customers have used what kind of applications. Note that JClient was released for the first time in JDev 9.0.2 so it's still going thru the first round of performance and usability improvements.
    6. It is running whitout problems in the samples and when we use the wizards to generate simple forms. But when we construct a complex GUI-structure we quickly run into performance problems. But also unexpected problems that we have difficulty solving, due to lack of documentation and knowledge.This forum on OTN has a great amount of discussion on JClient issues and how to resolve various performance and other bugs in Jdev 902.
    I agree on lack of complete documentation and examples and we're working towards that. Note that we did put up a Jclient Bindings demo which is a good example of how to "architect" a medium complexity application, how to layout controls, bind them, show/hide etc. An improved version of this example will be placed on OTN alongwith a version of JDev 903 when it is made available on OTN.
    We would really appreciate, if you would take the time to answer our questions.
    A frustated development team. And your critique/bugs/feature ideas are always welcome.

  • A question about the impact of SQL*PLUS SERVEROUTPUT option on v$sql

    Hello everybody,
    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0  Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL>
    OS : Fedora Core 17 (X86_64) Kernel 3.6.6-1.fc17.x86_64I would like to ask a question about the SQL*Plus SET SERVEROUTPUT ON/OFF option and its impact on queries on views such as v$sql and v$session. Here is the problem
    Actually I define three variables in SQL*Plus in order to store sid, serial# and prev_sql_id columns from v$session in order to be able to use them later, several times in different other queries, while I'm still working in the current session.
    So, here is how I proceed
    SET SERVEROUTPUT ON;  -- I often activate this option as the first line of almost all of my SQL-PL/SQL script files
    SET SQLBLANKLINES ON;
    VARIABLE mysid NUMBER
    VARIABLE myserial# NUMBER;
    VARIABLE saved_sql_id VARCHAR2(13);
    -- So first I store sid and serial# for the current session
    BEGIN
        SELECT sid, serial# INTO :mysid, :myserial#
        FROM v$session
        WHERE audsid = SYS_CONTEXT('UserEnv', 'SessionId');
    END;
    PL/SQL procedure successfully completed.
    -- Just check to see the result
    SQL> SELECT :mysid, :myserial# FROM DUAL;
        :MYSID :MYSERIAL#
           129   1067
    SQL> Now, let's say that I want to run the following query as the last SQL statement run within my current session
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;According to Oracle® Database Reference 11g Release 2 (11.2) description for v$session
    http://docs.oracle.com/cd/E11882_01/server.112/e25513/dynviews_3016.htm#REFRN30223]
    the column prev_sql_id includes the sql_id of the last sql statement executed for the given sid and serial# which in the case of my example, it will be the above mentioned SELECT query on the employees table. As a result, right after the SELECT statement on the employees table I run the following
    BEGIN
        SELECT prev_sql_id INTO :saved_sql_id
        FROM v$session
        WHERE sid = :mysid AND serial# = :myserial#;
    END;
    PL/SQL procedure successfully completed.
    SQL> SELECT :saved_sql_id FROM DUAL;
    :SAVED_SQL_ID
    9babjv8yq8ru3
    SQL> Having the value of sql_id, I'm supposed to find all information about cursor(s) for my SELECT statement and also its sql_text value in v$sql. Yet here is what I get when I query v$sql upon the stored sql_id
    SELECT child_number, sql_id, sql_text
    FROM v$sql
    WHERE sql_id = :saved_sql_id;
    CHILD_NUMBER   SQL_ID          SQL_TEXT
    0              9babjv8yq8ru3    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;Therefore instead of
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;for the value of sql_text I get the following value
    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES);Which is not of course what I was expecting to find in v$sql for the given sql_id.
    After a bit googling I found the following thread on the OTN forum where it had been suggested (well I think maybe not exactly for the same problem) to turn off SERVEROUTPUT.
    Problem with dbms_xplan.display_cursor
    This was precisely what I did
    SET SERVEROUTPUT OFFafter that I repeated the whole procedure and this time everything worked pretty well as expected. I checked SQL*Plus documentation for SERVEROUTPUT
    and also v$session page, yet I didn't find anything indicating that SERVEROUTPUT should be switched off whenever views such as v$sql, v$session
    are queired. I don't really understand the link in terms of impact that one can have on the other or better to say rather, why there is an impact
    Could anyone kindly make some clarification?
    thanks in advance,
    Regards,
    Dariyoosh

    >
    and also v$session page, yet I didn't find anything indicating that SERVEROUTPUT should be switched off whenever views such as v$sql, v$session
    are queired. I don't really understand the link in terms of impact that one can have on the other or better to say rather, why there is an impact
    Hi Dariyoosh,
    SET SERVEROUTPUT ON has the effect of executing dbms_output.get_lines after each and every statement. Not only related to system view.
    Here below what Tom Kyte is explaining in this page:
    Now, sqlplus sees this functionality and says "hey, would not it be nice for me to dump this buffer to screen for the user?". So, they added the SQLPlus command "set serveroutput on" which does two things
    1) it tells SQLPLUS you would like it <b>to execute dbms_output.get_lines after each and every statement</b>. You would like it to do this network rounding after each call. You would like this extra overhead to take place (think of an install script with hundreds/thousands of statements to be executed -- perhaps, just perhaps you don't want this extra call after every call)
    2) SQLPLUS automatically calls the dbms_output API "enable" to turn on the buffering that happens in the package.Regards.
    Al

  • Questions about 3702i and WSM (WSSI)

    I have several questions about the 3702i AP and the WSM that do not seem to be answered in the data sheets/documentation.
    Any insight would be appreciated.
    1. Is the WSM officially supported on the 3702 AP? The documentation seems to conflict on this.
    For example, at the top of the WSM data sheet: "Flexible add-on third radio module for the Cisco Aironet 3600i or Cisco Aironet 3600e Series Access Points". Then later on in the page graphic shows the 3700 series radios too. I have found multiple pages that have similar conflicting information.
    2. Can the WSM be used WITHOUT MSE and Cisco Prime? If so, are there any limitations?
    3. How does the licensing work? Where is the license installed -- WLC, MSE, Prime? Do ANY of the features work without the license?
    3a. How do you order the license? The SKU listed on the data sheet (L-WIPS-MM-1AP) is not a valid part number in CCW.
    4. Is it possible to do sniffing with a WSM? (the idea being not having to dedicate an AP to sniffing, or taking down a client-serving AP to sniff)
    Thank you.

    Ok, so you are talking about off-channel scanning, which is actually a very short duration 50ms, that the AP is actually off-channel to scan.
    http://mrncciew.com/2013/03/16/configuring-rrm/
    Are you thinking of this bullet point?
     Access points with wireless security module: The Cisco Aironet® Access Point Module for Wireless Security aggressively scans all channels without affecting the data-serving radios in the 2.4- and 5-GHz bands.
    To me, that's just saying that the WSM is scanning and not interferring with the AP's normal radios.
    HTH,
    Steve

  • Re: Questions about Plan structure

    Reply-To: "Duncan Kinnear" <[email protected]>
    Q. if you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    A It is better to have them in the same plan.It depends on the design
    you have
    Q Why should the Managers be separated from their business classes?
    A Managers are usually service objects which might require different
    resources.
    These managers when deployed might be required by several other
    applications.
    Seperating them as a different plan will help in just using one
    installed partition to be
    Used by different applications (refer about Reference Partition)
    Q If you have the Database managers separate, what scope does each DB
    manager cover?
    A It is better to have the DB managers in user scope.
    It depends on the numbers of users, u have for the system.
    Since u are talking about 100 tables. It's a huge system.
    It also depends on the user licenses u have for the backend.
    Take care that u use proper load balancing of DB Managers for the
    system.
    Krishna CVSR
    GoldStone Softech Inc
    >
    Hi there,
    We are in the middle of designing the structure of a new system.
    I have read/heard that it is best to break down the plans into the
    following categories:
    Business Classes
    Managers/Services
    Clients
    I have a few questions about this structure:
    Should related business classes be grouped together in Plans? E.g. if
    you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    Why should the Managers be separated from their business classes?
    E.g. if there is an EmployeeMgr service which deals with anything to do
    with the Employee business class, why separate them in different
    plans? If you need the manager to access the class, you will always
    need both.
    Some of the Forte documentation talks about "Policy" managers and
    "Database" managers. How do the functions of these managers differ
    for a simple CRUD (Create Read Update Delete) class?
    If you have the Database managers separate, what scope does each
    DB manager cover? I.e. do you have one for the entire database (over
    100 tables in our case), or do you break it down by sub-system?
    Thanks in advance for any answers.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email: [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834 3369
    Providing Integrated Software to the Meat Processing Industry for over 10 years
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Reply-To: "Duncan Kinnear" <[email protected]>
    Q. if you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    A It is better to have them in the same plan.It depends on the design
    you have
    Q Why should the Managers be separated from their business classes?
    A Managers are usually service objects which might require different
    resources.
    These managers when deployed might be required by several other
    applications.
    Seperating them as a different plan will help in just using one
    installed partition to be
    Used by different applications (refer about Reference Partition)
    Q If you have the Database managers separate, what scope does each DB
    manager cover?
    A It is better to have the DB managers in user scope.
    It depends on the numbers of users, u have for the system.
    Since u are talking about 100 tables. It's a huge system.
    It also depends on the user licenses u have for the backend.
    Take care that u use proper load balancing of DB Managers for the
    system.
    Krishna CVSR
    GoldStone Softech Inc
    >
    Hi there,
    We are in the middle of designing the structure of a new system.
    I have read/heard that it is best to break down the plans into the
    following categories:
    Business Classes
    Managers/Services
    Clients
    I have a few questions about this structure:
    Should related business classes be grouped together in Plans? E.g. if
    you have an Employee class with related EmployeeSubordinate and
    EmployeeSalaryHistory classes, should these all be in the same plan?
    Why should the Managers be separated from their business classes?
    E.g. if there is an EmployeeMgr service which deals with anything to do
    with the Employee business class, why separate them in different
    plans? If you need the manager to access the class, you will always
    need both.
    Some of the Forte documentation talks about "Policy" managers and
    "Database" managers. How do the functions of these managers differ
    for a simple CRUD (Create Read Update Delete) class?
    If you have the Database managers separate, what scope does each
    DB manager cover? I.e. do you have one for the entire database (over
    100 tables in our case), or do you break it down by sub-system?
    Thanks in advance for any answers.
    Cheers,
    Duncan Kinnear,
    McCarthy and Associates, Email: [email protected]
    PO Box 764, McLean Towers, Phone: +64 6 834 3360
    Shakespeare Road, Napier, New Zealand. Fax: +64 6 834 3369
    Providing Integrated Software to the Meat Processing Industry for over 10 years
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    Get Your Private, Free Email at http://www.hotmail.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Question about personal hotspot. I know I can share GSM / 3G but I would like to know if my iPhone is connected to a wifi can I also share that wifi collection, through personal hotspot?

    Question about personal hotspot. I know I can share GSM / 3G but I would like to know if my iPhone is connected to a wifi can I also share that wifi collection, through personal hotspot? And if so can it be through wifi or does it have to be Bluetooth or USB?
    Sounds like an odd question but my phone will connect to BT Openzone so I want to share that with my iPad via personal hotspot. I could use 3G but then it comes off my data allowance and I don't want to have to buy a separate SIM for my iPad if I can avoid it. I can swap my sim from my phone, but that's a pain!
    Thanks
    Luke

    No, unfortunately Personal Hotspot will only use your 3G plan.

  • Question about VPN on RV082

    Question about VPN on RV082
    i connect like diagram
    when i use shrewsoft for vpn ipsec i can not connect across rv082 to next hop on wan 1
    but when i use PPTP on windows 7 for vpn PPTP i can connect across rv082 but high latency on this connection
    please advice me for this issue
    many thank i hope someone help me on this

    ChicagoGuy72 wrote:
    Hello,
    I am working with vpn setups for the first time, so I have some questions I would really appriciate some help with. I would like to be able to connect to a computer on a home network through a linksys E2500 router. I have found alot of documentation on connecting to an external vpn from a computer on the lan side of the router, but nothing on connecting from the outside in. The router does have a static ip address with my internet provider, so I can contact the router from the outside. But makeing the connection to the computer on the other side of the router is where I am missing something or I dont realize that it is not possible. On the lan side I am using DHCP to assign the address to the computer I want to connect to. Perhaps I need to make it have a static address also? I realize that when I configure the connection from the outside that I need to direct the connection to the remote computer in some way, unless vpn connections are fully passed through the router and the connection issue I am haveing is with the "inside" computer.
    Other info:
    I am using windows 7 for the vpn access
    Thank you in advance for your help.
    Kindly check these links:
    http://www.cisco.com/en/US/tech/tk827/tk369/technologies_configuration_example09186a00801e51e2.shtml
    http://www.cisco.com/en/US/products/sw/secursw/ps2086/products_configuration_example09186a008009436a...

Maybe you are looking for

  • Help with installing Flash Player 10.1 in IE7

    Hello All - I have been having issues installing Flash Player 10.1 in IE7.  I have pretty much tried everything to install this into IE7.  I was able to install Flash Player 10.1 in Firefox with no issues at all.   I have tried to install it through

  • Enable / Disable a Step in GAF

    I have an application with 4 steps. In the step 1 I want to disable the step 3 and 4. How do I do that? I use GAF in FPM for the web dynpro application. Thanks!

  • How can you set the ctxsvr time interval ?

    I would like to know how can i set the time inteval between each update of the Intermadia indexes. Thanks.

  • After Effects cs4 in Production Prem. fails to install

    I have Production Premium CS4 running on Windows 7.  I went back the other day to install the After Effects application.  Each time I try to install it, It does through the install process.  After it goes through disk #3, it stops and I get a message

  • Update Qualification Catalog

    Hi All Is there any simple way to enter multiple data in Qualification Catalog Regards