Another controversy: Where to store common application parameters?

For higher flexibility, application parameters are usually set. For intranet applications, I used to store these parameters with my Oracle database. Now I'm developing a web-based internet applications, would you please advise for the following questions:
1) The place to store common application parameters (How to set and how to retrieve?)
(Currently, I have put such application parameters into a class file. Although it should be faster than retrieval from database, it means that I need to re-compile in case of any changes are made for those parameters. Can I set up some global constant for my application with my JDeveloper? How to set and how to retrieve?).
2) The place to store the application configuration and application package string
(As you see, if you have many Jsp page, it's not convenient to change the <jbo:ApplicationModule ... Configuration="MyConfig"... /> all the time. It may be better if it could be generalized by a variable. I have found the configuration in the "web.xml" file, but i don't know how to retrieve the value from it. Currently, I have made use of my old approach mentioned in Question 1 - place the configuration string in a common class ... the drawback has already been mentioned as above ... any better solutions?)
Thanks for replying!

Curt,
To create an AM using the definition in the cpx file:
   JUApplication app = JUMetaObjectManager.createApplicationObject("Project2.am");
   ApplicationModule am = app.getApplicationModule();.
This is the same call used by JClient application.
Here is the story with BC4J runtime params:
jbo.default.language
This parameter is used in localization.
jbo.default.country
This parameter is used in localization.
DeployPlatform
The platform on which the business components are deployed:
LOCAL - The web module of Oracle 9iAS
EJB_IAS - The EJB module or Oracle 9iAS
VB - A VisiBroker CORBA server
WLS - a WebLogic application server
Connection Mode
For business components deployed to VisiBroker, the connection
mode used:
1 - colocate mode
2 - remote mode
3 - IOR mode
4 - bind mode
For more information, see the VisiBroker documentation.
HostName
For all deployment platforms except LOCAL, the name of the
application server hosting the business components.
ConnectionPort
For all deployment platforms except LOCAL, the port of the
application server hosting the business components.
ApplicationPath
For all deployment platforms except LOCAL, the JNDI path to the
business components.
java.naming.security.principal
For all deployment platforms except LOCAL, the username for the
IIOP connection to the business components.
jbo.use.pers.coll
Setting this to true enables view row spillover. If you are working
with large rowsets and memory is a problem, this property should be
true. For more information, see the Oracle JDeveloper documentation.
jbo.pers.max.rows.per.node
The maximum size of a node for view row spillover.
jbo.pers.max.active.nodes
The maximum number of nodes that will be cached in memory for view
row spillover.
jbo.fetch.mode
AS.NEEDED causes view objects to only fetch rows when they are
requested. ALL causes them to fetch the entire results of their
queries.
MetaObjectContextFactory
The default value uses the business components framework's
MetaObjectContext Factory, which stores business components metadata
in XML. If you want to use a different format for business components
metadata, you can implement your own MetaObjectContext Factory.
IsLazyLoadingTrue
For all deployment platofrms except LOCAL, setting this property to
true will cause business componetns metadata to be loaded into memory
only as needed, whereas setting it to false will cause all metadata
to be loaded into memory immediately. Lazy loading is mandatory in
LOCAL mode.
Factory-Substitution-List
The list of business components to substitute out. See the Oracle
JDeveloper documentation for more information on substituting
business components.
jbo.project
The project containing business components to be substituted for old
ones, if Factory-Substitution-List is not empty.
jbo.max.cursors
The maximum number of cursors the business components may have open.
The framework will clean up free JDBC statements as the number of
cursors approaches this number.
do.failover
This property is true if application module failover is enabled.
Setting this property to false provides better performance at the
expense of reliability.
jbo.doconnectionpooling
This property is true if application modules are allowed to share
connections. For more information about connection pooling, see the
Oracle JDeveloper documentation.
jbo.recyclethreshold
The recycle threshold for application module pooling. When the number
of application modules in the pool reaches this level, the pool
begins to recycle application modules in stateful mode. Monitoring
the application module pool statistics may help you decide on a good
value for this field.
jbo.ampool.highwatermark
The maximum number of application modules allowed in the pool. If
this high-water mark is reached, clients must wait for the next
available application module.
jbo.ampool.resetnontransactionalstate
If this property is false, application modules will preserve their
non-transactional state (properties and dynamically added view
object, view link, and nested application module members) even when
they are checked in in stateless mode. If the property is true,
non-transactional state will be reset.
jbo.ampool.sessioncookiefactoryclass
This class creates the session cookies that allow clients to retrieve
application modules in stateful mode. Change this value only if you
need to implement your own custom session cookie factory. See the
Oracle JDeveloper documentation for more information.
jbo.ampool.connectionstrategyclass
This class manages the connection strategy for the application module
pool. Change this value only if you need to implement your own custom
connection strategy. See the Oracle JDeveloper documentation for
more information.
jbo.passivationstore
When an application module is released in stateful mode, its state is
saved when the application module is recycled (or immediately if
failover is enabled). If this property is 'null' or 'database', the
state is saved to the database. If the property is 'file', the state
is saved to a local file.
RELEASE_MODE
The release mode--Stateless, Stateful, or Reserved--used by data web
beans. Other clients specify their own release mode.
jbo.maxpoolcookieage
The maximum age of the browser cookies used to help clients retrieve
stateful application modules. If these cookies do not time out, the
value is -1.
PoolClassName
The class that implements the application module pool. Do not change
this value unless you are using a custom application module pool
implementation. For more information, see the Oracle JDeveloper
documentation.
jbo.maxpoolsize
The maximum size of the JDBC connection pool. If this number is
exceeded, an application module will have to wait for a connection if
none is available.
jbo.initpoolsize
The number of JDBC connections automatically created in the
connection pool, before any requests.
jbo.poolrequesttimeout
The amount of time, in milliseconds, an application module will wait
for an available connection before failing.
jbo.assoc.consistent
If this property is true, the entity rowsets retrieved through
association accessors will include rows that have been added, even if
these changes have not been posted to the database. This property can
reduce performance and so should be turned off if not needed.
jbo.viewlink.consistent
If this property is true, the view object rowsets retrieved through
view link accessors will include rows that have been added, even if
these changes have not been posted to the database. This property can
reduce performance and so should be turned off if not needed.
jbo.SQLBuilder
The SQL flavor generated by view objects:
Oracle - for the Oracle8i or Oracle9i database
OLite - for the Oracle Lite database
SQL92 - for any SQL92-compliant database
DB2 - IBM DB2 Universal Database
jbo.ConnectionPoolManager
The class that manges the connection pool. Do not change this value
unless you are using a custom application module pool manager
implementation. For more information, see the Oracle JDeveloper
documentation.
jbo.TypeMapEntries
The type mappings used by business components:
Oracle - for the Oracle8i or Oracle9i database
OLite - for the Oracle Lite database
SQL92 - for any SQL92-compliant database
oracle.jbo.defineColumnLength
If this is false, business components will not by default define
column length for CHAR and VARCHAR2 columns. In general, this should
only be set to false for NLS applications.
jbo.tmpdir
You can use this parameter to specify a directory for temporary files.
jbo.server.internal-connection
Specifies a connection to use when application module state is saved
to the database. By default, the application module pool will use the
application module's JDBC connection.
SessionClass
The class which implements the oracle.jbo.Session interface, used to
load and store session context throughout a client's lifetime. By
default, the framework uses oracle.jbo.server.SessionImpl. Do not
change this value unless you have implemented a custom session
implementation class.
TransactionFactory
The class responsible for creating database transactions. By default,
the framework uses oracle.jbo.server.DatabaseTransactionFactory. Do
not change this value unless you have implemented a custom
transaction factory class.
jbo.debugoutput
If this property is set to 'console', debug information is displayed
on the console. If the property is set to 'silent', debug information
is not displayed.
jbo.logging.show.timing
Whether to show the time elapsed between debug calls.
jbo.logging.show.function
Whether to show the name of the method that triggered a debugger
call. Setting this property to true will degrade performance.
jbo.logging.show.level
Show the trace level of debugger messages. The lower the trace level,
the more important the message.
jbo.logging.show.linecount
Number the lines of debugger output.
jbo.logging.trace.threshold
Lower this number to display only the most important debugger
messages; raise it to display a larger portion of debugger messages.
jbo.jdbc.driver.verbose
If this property is true, the JDBC driver will run in verbose mode.
For more information, see the JDBC documentation.
jbo.ejb.txn.timeout
For EJB deployment configurations, the number of seconds after the
last database access before the EJB transaction expires.
jbo.ejb.txntype
For EJB deployment configurations, the transaction type:
global - use the JTA UserTransaction interface
local - use straight JDBC
jbo.xml.validation
If true, the XML parser uses strict XML validation.
Charles.

Similar Messages

  • Another bug in Flex? (Application.parameters and query strings)

    I'm passing in two query string parameters in the source of SWFLoader and both of them are clumped together in the first parameter by application.parameters.
    But I switch the order of the parameters in the query string and both parameters are returned correctly:
    Case #1:
    Query String:  ?cfg=zzzzzzz54B&embed_div=x
    parameters.cfg: zzzzzzz54B&embed_div=x
    parameters.embed_div:  [nothing]
    Case #2:
    Query String:  ?embed_div=x&cfg=zzzzzzz54B
    parameters.cfg: zzzzzzz54B
    parameters.embed_div: x
    Here is the actual debug commands:
    Dumper.info(this.url);
    Dumper.info(this.parameters.cfg)
    Dumper.info(this.parameters.embed_div);
    And output:
    (Case #1)
    [INFO]: file:///C:/Program%20Files/WordRad234/chm/wordrad_kt/web%20pages/zzzzzzz5/rad_3xf.swf?cfg =zzzzzzz54B%26embed_div%3Dx (String)
    [INFO]: zzzzzzz54B&embed_div=x (String)
    [INFO]: (Object)
    (Case #2)
    [INFO]: file:///C:/Program%20Files/WordRad234/chm/wordrad_kt/web%20pages/zzzzzzz5/rad_3xf.swf?emb ed_div=x&cfg=zzzzzzz54B (String)
    [INFO]: zzzzzzz54B (String)
    [INFO]: x (String)
    Something I just noticed: the equal sign after embed_div is replaced by %3D but only if embed_div comes last.

    NEVERMIND:
    It was something I was doing  to the source of SWFLoader beforehand (involving encodeURIComponent).
    I have to say, I have many, many times thought something was a bug in Flex and it was in fact my code.  In general, I think Flex/AS3 is an elegant and useful product.  The sort of ad hoc  tweaks that have to be done to avoid memory leaks though is ridiculous (though I do have that figured out pretty much as well.)

  • AppIntegrator - Issue with Passing Application parameters

    Hi,
    I've created a WebApplication system using 'HowTos' (com.sap.portal.howtos.webapp.par) file and set the system parameters.
    I've created a generic iView with AppIntegrator par file (com.sap.portal.appintegrator.sap.par). Where I've passing the parameters as 'ApplicationParameter'. Following are the parameters that I'm passing in the AplicationParameter..
    redirectTo=/test/ourenv/myfile.ext/($Limited)&Login
    but when I see the result through HTTP WATCH, iView passing  them as redirectTo=%2Ftest%2Fourenv%2Fmyfile.ext%2F%28%24Limited%29
    so the other application is not taking this redirectTo parameter.
    Is there any way to stop Decode/Encode the application parameters?
    Thanks in Advance,
    Satya

    hI,
    Yeah it would not.
    The url specification is very clear there are certain symbols which should not be passed in any url. The reason you see encoded url is to ensure that the symbols are preserved in your request.
    Your external program can easily decode %2f already in your url , to '/' and get the correct parameters or choose another symbol instead of '/'
    There is no other solution. As I just checked up, url specification which applies to any url across the world is very clear on this count.
    So encoding has been done to ensure your parameters are coded correctly. The client program should be able o decode it.
    The '/' is a reserved character with a specific meaning and cannot be used for anything apart from its specified purpose. You have to encode it if you need to pass it for other purpose.
    Refer to this link.
    http://www.w3.org/Addressing/URL/uri-spec.html
    This is clear on this count.
    Regards,
    Harish

  • How/Where to store current page details in ADF?

    Hi All,
    What is the best way to populate the managedBean while loading the page?
    In my application, I have an page fragment which display the user details from Webservice DataControl. I drag and drop the webservice data control in to the pageFragment. This fragment has mapped in the taskFlow and the taskFlow as attached in to main JSPX page as a region. I need to store this user information to any place (ManagedBean / or anyother best place to store) which I can use throughout my application, since I dont want to reexecute the webservice each time to get the same user information. Also I want to collect and store this info while I render the main page, not after any user action.
    Please advice how & where to store the information in ADF? Can I create an managedBean? If so how to trigger that class method at page load?
    Thanks
    kln

    Hi,
    in this case you configure the managed bean to be in session scope. Then, on the first page, you define a phase listener for the after restore phase (its a tag on the f:view element). This phaselistener references the managed bean using EL (important). It can do so using a method expression in JSF. For example, if the managed bean had a method populateUserInfo then yu could reference #{beanname.populateUserInfo} and execute the method expression using Java. In the managed bean, the method would access the binding layer Using the BindingContext class
    http://download.oracle.com/docs/cd/E15051_01/apirefs.1111/e10653/oracle/adf/model/BindingContext.html
    Call
    BindingContext .getCurrent().getCurrentBindingsEntry() to obtain a handle to the active instance of BindingContainer.
    BindingContainer bindings = BindingContext .getCurrent().getCurrentBindingsEntry();
    Then on the binding container, you invoke the method to query the Web Service for the user info
    //before you can call a method on the ADF binding layer, make sure the ADF binding is created for the method
    OperationBinding opws = (OperationBinding) bindings.get("name of the method exposed on WS");
    //if you need to pass parameters
    opws.getParamsMap().put("argument name",value);
    opws.execute();
    You can use similar code to access the user information from the method iterator in ADF to populate the managed bean fields. You can then access user information from the managed bean through getter and setter methods
    Frank
    Ps.: I know the description is a bit rough. I'll see if I can come up with a blog sample to a later time
    Edited by: Frank Nimphius on Jan 26, 2010 5:43 PM

  • Where to store DBCP and what to do next?

    Dear All,
    I would like to use the DBCP(Apache DB pool). I have download (commons-dbcp-1.4-bin.tar.gz) from http://commons.apache.org/dbcp/download_dbcp.cgi. I am using fedora linux and have unzip it too. What should be my next step is where I am stuck because I dont know where to store and how make it applicable for my application? Thank you.

    newbie14 wrote:
    Dear Masijade,
    I dont quite get you. You mean run the command -cp followed by my folder path is it? Then this will be permantently set or I must still go n change somethings inside the .bash profile ? I am not running the java file as project but just as a single java file so any settings for it? Thank you sorry I am very new to all this.Then you should skip DBCP. You should skip JDBC as well. You need to learn the basics of java before you learn JDBC.
    And after you learn both of those then you can look at DBCP.

  • The Secure Store Service application Secure Store Service Proxy is not accessible

    I am working on setting up a new SharePoint 2013 Farm for our external web site which is currently running on 2010 SharePoint. Because this is an External Website for our organization we have an internally available Publishing Site and there is an Web App
    Extension to provide Anon Access to users using the www address. Currently I am doing everything on a single server for testing with HOSTS entries to loop back so I can test with real host headers and not impact the 2010 prod environment. We will be setting
    up 2 more WFEs with a NLB before moving this into prod but it isn't there yet. We brought the Site Collection Databases over but are still running in 2010 mode for now.
    I migrated a copy of the Secure Store Database over from 2010 and had it put on the 2013 Farm's Database Server. Set up Secure Store and the Secure Store Proxy. I went into the Secure Store Proxy in CA and refreshed the Key with the proper Pass Phrase. After
    doing that I could see the Target Application IDs listed. Everything was looking good so I went off to test. If I am on the publishing site I can go to a page that has the solution on it and it operates as expected. It does a query to a non SharePoint database
    and returns information filtered based on the search parameters. The only odd thing I see is if I click on the "Site Actions" I get a message "An error has occurred with the data fetch. Please refresh page and retry." Need to look into
    that more but it only happens on pages that have these solutions. Maybe a clue. If I go to the Anonymous Access page (www......) and try and use the solution, it immediately (way too quick to appear like it is doing anything) comes back with "The security
    token request cannot be completed."
    If I dig through the usage logs I am finding the following.
    The Secure Store Service application Secure Store Service Proxy is not accessible. The full exception text is: The security token request cannot be completed.
    Unexpected exception from endpoint address : https://[Servername]:32844/4e87fd3aabb640fb8cc3ed52188cf5c0/SecureStoreService.svc/https
    Logging unknown/unexpected client side exception: InvalidOperationException. This will cause this application server to be removed from the load balancer queue. Exception: System.InvalidOperationException: The security token request cannot be completed.
        at Microsoft.SharePoint.SPSecurityContext.SecurityTokenForServiceContext(Uri contextUri)     at Microsoft.SharePoint.SPChannelFactoryOperations.InternalCreateChannelActingAsLoggedOnUser[TChannel](ChannelFactory`1 factory, EndpointAddress
    address, Uri via)     at Microsoft.Office.SecureStoreService.Server.SecureStoreServiceApplicationProxy.GetChannel(Uri address)     at Microsoft.Office.SecureStoreService.Server.SecureStoreServiceApplicationProxy.Execute[T](String operationName,
    Boolean validateCanary, ExecuteDelegate`1 operation).
    Initially I was fighting a firewall issue because it wasn't working (different errors) on both sides. Had Network Engineers open firewall ports needed and now it works on the publishing side. Still the same error on the Anon side. I suspect I have missed
    something when it comes to configuring the Secure Store to allow access to anonymous connections.
    Let me know if you need any more information but that should paint a pretty good picture as to how things are set up.
    Thanks for any help on this one. Searches haven't found much that has helped so far.

    Hi Sennister,
    I recommend to verify the things below:
    Did this issue occur with all the pages in the anonymous side?
    Check if the Claims to Windows Token Service is started.
    Change the <identity impersonate="true" /> in the web.config to see if the issue still occurs.
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • One application with Multiple schemas- common application frame work

    Hi All,
    I am trying setup a common application frame work in apex. Please help me.
    How to achieve this.
    Creation of one application attached to different schemas at run time. So that my application maintaince is going to be easy instated of creating copies of same application.
    More details:
    1. I have one application with 100 pages pointing to a schema dev_common in one workspace APP_COMMON. I have 50 schemas with same structure of dev_common schema with different set of data ( because of large amount of data).
    So I want to create one application attached to different schemas.
    2. And another thing is I have 100 users, the user can work on 1 or multiple schemas ( I mean same application with different schemas attached)
    Any help much appreciated.
    Thanks,

    Thank you for the reply.
    >> b) I think you have to give access rights for the dev_common and app_common to all users.
    Dev_common schema is a kind of placeholder. I have 50 schemas same as dev_common because of different business requirements but the front end is same for all 50 schemas. How can we create one application used for 50 schemas instead of creating 50 applications and 50 workspaces.
    Please help me.

  • Creating a project in Flex Builder for the Hybrid Store sample Application

    Hi all,
    How to create a project in Flexbuilder for the hybrid store
    sample application.
    I downloaded the source code of hybridstore application,
    Now i have to create a project for it to run that application
    in my system,
    will you please tell me how to create a project for this
    sample.
    I have also read the readme.html file. but i could not follow
    exactly what they are saying.
    what i did is, I unzipped the source code into a folder
    hybridstore.
    I opened the flexbuilder : File -- new -- flexproject ( i
    have selected) then i have given name to my file (hybridstore) ,
    and set the path to the hybridstore folder where the source code
    exists.
    but it as created hybridstore.mxml file also.
    it is not working.
    will you please till me how to create project for this
    application.
    I have created project for other samples like restaurent
    finder, dashboard. they are working fine.
    I got problem with this sample only.
    Thanks in advance
    Regards
    Avanthika

    Hi,
    thanks for your reply,
    I have tried to open using file import, but still it is not
    working.
    in the readme file for this application , contains how to
    Creating a project in Flex Builder for the Hybrid Store
    application:
    Name your default application catalog.mxml.
    Prevent Flex Builder from generating an HTML wrapper: select
    Project > Properties. Select the Flex Compiler page, deselect
    the Generate HTML wrapper file option .
    Create a Run configuration for your project but deselect the
    Use defaults option and instead assign the Run setting to the
    hybridstore.html in your project's bin directory.
    To enable debugging of the Hybrid Store application you must
    create a copy of hybridstore.html. Open it in an editor (you can
    right-click on the file and select Open With > Text Editor).
    Find the line that says "src", "catalog" and change it to "src",
    "catalog-debug". Assign the Debug setting to this new HTML file.
    As i am new to flex , i could not know how to do this.
    please help me how to do this.
    regards
    Avanthika

  • Where we store in sap r/3

    Dear sir  we can uploaded old data in sap r/3. by lsmw and bdc. but where we store.
    thanks regards
    jitendra

    Hi,
    LSMW - Helps to transfer data from legacy system to SAP either one time or periodically.
    Steps -
    1. Import data (legacy data in spreadsheet tables and/or sequential files)
    2. Convert data (from source format to target format)
    3. Import data (into the database of the SAP application)
    a. Maintain Structure relations, field mapping and conversion rules.
    b. Data from legacy system is read
    c. Based on step a, the data gets converted
    d. The converted data is imported to R/3 system based onBatch input processing or Direct Input or through IDOC Inbound processing
    Regards,
    R.Brahmankar

  • We have a situation where in an existing application after go live we need

    We have a situation where in an existing application after go live we need to add a new dimention. The fact is after adding the dimension the existing data will not have any value against this dimension(will have only null values). If so will it create a problem in loading or reporting?. How to resolve it?.

    My experience (on BPC 5.1 MS, and earlier versions) has been as follows:
    1.) create a new dimension, with at least 1 member. Pay particular attention to which member is the first base member in the hierarchy. (If you're planning to have multiple hierarchies in this dimension, wait for now on the ParentH2 etc. Start with just 1 hierarchy until you've completed these steps.) Process the dimension.
    2.) add that dimension to an existing application. When the application is processed, all of the existing data is assigned to that first base member of the new dimension.
    3.) If that's not sufficient, and you want to assign some data to another member of this new dimension, either use the "Move" package, or write custom SQL script logic, to get the data assigned to the correct members.

  • Where to store javabeans

    Hi,
    I am new to jsp and javabeans. I just want to use a java bean in a JSP file. I don't know where to store my javabean file. Could you please help?

    javabeans are Java programs and classes. So, in order for your application to run in a browser, the web server container needs to look for those bean classes. Where to look for ? WEB-INF/classes is place that web server will go and look for and execute those classes. But, I think you can reconfigure your web server directories. There are many web servers out there, and they all have different setups. You need to read your server setup docs.
    Philip

  • Where to store bean program ?

    Hi... Am trying to create an Application using JspDynPage Component. am using java bean in this. Can any one tell me where to store this javabean program?

    Hi
    When you create your Portal component and you select JSP DynPage, 2 steps ahead in the wizard, you get the option: Use a Bean for Information Exchange.
    Click generate bean statements and enter the name of your bean and the scope.
    P.S. If this answer helped you do consider rewarding points.

  • Where to store Reports on Unix

    Hello,
    where to store Reports in HPUX system, means in which directory....
    regards,
    JAK

    Hi Jak,
    You can define your own reports_path variable.
    If you know unix a little make a search for the REPORTS_PATH in your <oracle_home>/bin directory.
    I think it is in reports.sh
    put there the directory you want. eg /applications/reports:$REPORTS_PATH
    or you can add a named environment in your reports server engine
    this is the <reports>.conf file in your <oracle_home>/reports/conf/ directory
    eg
    <environment id="Dev">
    <envVariable name="REPORTS_PATH" value="/applications/reports"/>
    </environment>
    hope it helps

  • Where to store data (queued message handler)

    Hello,
    i'm developing an image processing application. As a template i'm using the 'queued message handler'. In my app I need to store some images, arrays, and so on in RAM. Now the question is  if i should store that data in the message loop's shift register (in a cluster) or somewhere else.
    At the moment i have hidden front panel indicators where i store all my data. This isn't good practise, is it?
    thanks alot
    MN

    nollMarvin wrote:
    Hello,
    i'm developing an image processing application. As a template i'm using the 'queued message handler'. In my app I need to store some images, arrays, and so on in RAM. Now the question is  if i should store that data in the message loop's shift register (in a cluster) or somewhere else.
    At the moment i have hidden front panel indicators where i store all my data. This isn't good practise, is it?
    thanks alot
    MN
    No that is not good practice.
    A Shift register is a much better place to store data in memory it does that without creating copies the OS must interperate for display.  (Yeah the displaying of data to a user is a different concept than having data in memory) Ben's famous Action Engine Nugget is always a good read. http://forums.ni.com/t5/LabVIEW/Community-Nugget-4-08-2007-Action-Engines/m-p/503801
    And a basic concept to LabVIEW that attending a training session (or asking questions on these forums) will help you master
    Jeff

  • Where to "store" phone when using sportstracker?

    Hi all,
    I'm interested as to where people "store" their phones when running sportstracker? When I'm in my car, I have a holder so that's no problem, but I feel a tad foolish when I'm out walking and holding the phone out in front of me recording my track Interested as to where others keep their phones...
    Cheers

    Hi Guys,
    I am from the team that has worked with Nokia and developed a site to track James Cracknell’s Sports Relief Challenge from Dover to Morocco.
    James has been using the N82 GPS function linked up to an application called ‘Sports Tracker’ that has been sending us a signal showing exactly where he has been going on his bike through France and Spain. For the last six days, James’ supporters have been able to follow his progress via www.challengecracknell.com
    This function can be used on Nokia N series and is particularly useful to cyclists, walkers, runners etc to allow them to track their routes and collect their stats – i.e. distance run, time taken etc. The stats can also be uploaded and compared on http://sportstracker.nokia.com/nts/main/index.do.
    Check out James’ site at www.challengecracknell.com to see exactly how the function works.
    If anyone has any feedback or suggestions on both the site and the sport tracker application, I’d really appreciate it.
    Cheers,
    Natalie.

Maybe you are looking for

  • Can't view tables in rs window?

    I am trying to work on a page/site that someone else began outside of DW. The code currently includes a file with it's own connection string: CONN = "PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=[path]; and the page works fine up on the site. This or

  • ErrorAccount 'Acc.dep. accnt.for ordinary depreciation' could not be found.

    Hi,   When I am trying to retire an asset by scrapping using TCODE ABAVN I am getting the following error.Ho do I resolve this. Thanks. Account 'Acc.dep. accnt.for ordinary depreciation' could not be found. Message no. AU133 Diagnosis When creating t

  • How to call GOS(Generic Object service) attachment ( BMP file ) into SAP

    How to call GOS(Generic Object service) attachment ( BMP file ) into SAP script Example: MM02 Service object there attaching the bmp file the same file i need to call script based on the material number Please provide the procedure and  coding. Thank

  • Directory Admin server fail to start

    Hello, When trying to start the directory admin server I get this error: SunONE-WebServer-Enterprise/6.0SP3 B05/14/2003 17:58 failure: server initialization failed (Interrupted system call)The admin error logs this: [08/Aug/2005:13:55:42] info (28523

  • How to insert Javascript within Javascript ?

    I have a simple problem. I want to insert Javascript within Javascript ??? Seems weird !!! Here's the scenario : I have created a JSP in which I have a function that Submits the main form in the main window. Here's the function : function SubmitConte