Updating properties in activationAgents

Hi All,
how can we Update values of properties in activationAgents during deployment?
i want to update the values in the below entry
<property name="dispatch_incoming_file" type="LogicalDirectory">*/home/user/new*</property>
<property name="dispatch_success_file" type="LogicalArchiveDirectory">*/home/user/succcess*</property>
of the below entries
<activationAgents>
<activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="Read_File">
<property name="dispatch_incoming_file" type="LogicalDirectory"></property>
<property name="portType">Read_ptt</property>
<property name="dispatch_success_file" type="LogicalArchiveDirectory"></property>
</activationAgent>
</activationAgents>
The above code snippet is from bpel.xml of a polling process (File adapter). i want to update it during deployment such that the values are read from a configuration file.
If this cannot be done is there anyway by which i can update the file polling location at deployment time?
Thanks in advance,
Roshan

Thanks Sridhar. Your answer is helpful.
Unfortunately i am using 10g and this is how it works -
You need to have a custom 'build.xml', inside the 'bpel' folder of your process, same location as bpel.xml, in which you pass the parameters as below -
<?xml version="1.0" encoding="iso-8859-1"?>
<project name="bpel.deploy" default="compile" basedir=".">
<target name="compile">
<bpelc input="${basedir}/bpel.xml" out="${process.dir}/output" rev="${rev}" home="${bpel.home}">
<customize>
<activationAgents>
<activationAgent className="oracle.tip.adapter.fw.agent.jca.JCAActivationAgent" partnerLink="Read_File">
<property name="dispatch_incoming_file" type="LogicalDirectory">${pickup.location}</property>
<property name="dispatch_success_file" type="LogicalArchiveDirectory">${success.location}</property>
</activationAgent>
</activationAgents>.
</customize>
</bpelc>
</target>
</project>
After this you need update ant-orabpel.properties for these properties (i.e. pickup.location and success.location).
Next, the main 'build.xml' (present in your processes's folder) should be edited to run the custom 'build.xml' as below -
<target name="process-deploy" depends="validateTask, compile1, deployProcess, deployTaskForm,deployDecisionServices" />
Create a new target name section below the target name. For example, a section with a value of compile1 is specified that calls the custom build.xml script you created.
<target name="compile1">
<ant dir="${process.dir}/bpel"/>
</target>
Regards,
Roshan

Similar Messages

  • Updating properties file with values containing characters like slash (/)

    Hi,
    I am writing a java class that would create/update properties file. I am passing a string that contains colons. e.g. a path like
    http://xyz.com
    I am using the java.util.Properties.setProperty(String arg0, String arg1) method to set the key value and the java.util.Properties.store(OutputStream arg0, String arg1) to create/update the properties file.
    The resulting property file contains the value as http\://xyz.com
    A slash preappended to the colon.
    I do not want this slash to be preappended.
    How can I achieve that?

    If you don't want this escaping to happend, then you don't want to be using java.util.Properties. Those define the file format in a certain way that includes escaping those characters.
    If you don't want this, you'll have to write them using normal Writers (and read them using Readers) with your own parsing/storing logic added.

  • Updating properties of AU Sylenth1 by LennarDigital...FAILED!

    Hello everyone!
    After the osx Yosemite update some good AU plug ins have validation problem in Logic pro X. LennarDigital`s Sylenth1 and Linplug Cronox are two examples. They give the exact same error. I use 32Lives to use these 32bit plug ins and they used to work fine. I tried re installing the plug ins and re-Resurrecting them with 32Lives but it didn`t work. I haven`t updated to Yosemite but as people say(http://www.kvraudio.com/forum/viewtopic.php?f=94&t=423813) updating osx doesn`t fix the issue.
    My System specs:
    Macbook 13 inch Late 2012
    OSX Version 10.9.4
    Processor 2.5 Ghz Intel Core i5
    Memory 4 GB 1600 Mhz DDR3
    The Error:
    validating Audio Unit Sylenth1 by LennarDigital:
       AU Validation Tool
        Version: 1.6.1a1
        Copyright 2003-2013, Apple Inc. All Rights Reserved.
        Specify -h (-help) for command options
    VALIDATING AUDIO UNIT: 'aumu' - 'syl1' - 'LNDG'
    Manufacturer String: LennarDigital
    AudioUnit Name: Sylenth1
    Component Version: 2.2.0 (0x20200)
    Component's Bundle Version: 2.2.0
    * * PASS
    TESTING OPEN TIMES:
    COLD:
    FATAL ERROR: OpenAComponent: result: -1,0xFFFFFFFF
    validation result: couldn't be opened
    updating properties of AU Sylenth1 by LennarDigital...FAILED!
    FAILED!
    I appreciate any piece of help! i`m sure many people out there have the same problem.

    I'm using Mavericks now, but the problem started from when the Yosmite released.
    If you haven't updated to Yosemite then it hasn't got anything to do with Yosemite at all... There is no correlation as neither Sylenth nor 32Lives were updated...
    So.. there is something wrong with your setup because I am running Sylenth under 32Lives in Mavericks without issue....
    Therefore, unwrap all your 32lives Plugins.. and then uninstall, re-install 32lives (v1.5) and re-wrap
    This plug in validation sensitivity really hurts while DAWs like Ableton live support 32bit plug ins and there is no validation process.
    Its nothing to do with plugin validation.... Its really because Sylenth's Dev just hasn't got around to writing a 64bit AU version despite his many assurances that he is doing so... so you are having to use a workaround by means of 32lives to continue being able to use it with modern DAWs.
    The next major version of Ableton Live is likely to be 64bit only (as is the latest version of PT...) and so you will have the same issue with Sylenth as you are having with LPX..  and will have to use 32Lives with Live too... if you want to keep on using Sylenth..

  • Updating properties on Tooltips / FX Application Thread

    Hi all. First post, novice JavaFX developer.
    Long story short, I have some nodes on which I've installed tooltips, like so:
    tooltip = new Tooltip()
    Tooltip.install(node, tooltip)
    The node here could be any of a set of graphical elements. Each element then receives the specific tooltip installed on it, like so:
    element.setTooltip(tooltip)
    The idea is to be able reference this tooltip via the graphical element later and set JavaFX properties on it directly.
    So far everything works. However, I'm now trying to update the tooltip text property based on the status received from another, non JavaFX-related part of the application. For updating JavaFX properties in general I have created an updater class that basically reruns its update()-function at a certain frequency. This has been working well for all JavaFX properties I've used so far, but for the tooltip I get the "Not on FX Application Thread" runtime error.
    The update()-function is simply initiates a Platform.runLater and loops through my elements, changes JavaFX properties by referencing them directly via the graphical element class they "belong" to. For the tooltip then I would basically do this:
    currentTooltip = element.getTooltip()
    currentTooltip.setText(text)
    This gives "Not on FX Application thread" runtime error. Curiously, the same approach seems to work for all other JavaFX properties I've tried. Say I'm changing the text on a Label instead, I can do this just fine:
    currentLabel = element.getLabel()
    currentLabel.setText(text)
    Or even just element.setLabelText(text) just to "outsource" the actual setting-code to the element itself.
    I have two requests.
    1. Documentation and examples which can help me better understand the JavaFX Application thread and the boundaries of what I can and can't do to ensure the application runs stable with regards to updating properties "on the fly".
    2. Any insight as to why this approach "suddenly" fails for a Tooltip, but works for all other properties I have implemented so far.

    I'm not convinced I could reproduce this issue easily in a self-contained class because, well, it is a little more complicated than this.
    Because the JavaFX part has to live within a Swing-based application, the panel which contains the JavaFX GUI is a TopComponent. The updater in question is at it's core a simple extension of SwingWorker (http://docs.oracle.com/javase/6/docs/api/javax/swing/SwingWorker.html). A separate class implements overrides to the doInBackground() and process() methods, passing through the updater, which is in turn basically just a Platform.runLater block containing all the specific code that checks for application state and sets properties. It should be fairly straightforward, and has been well tested with other JavaFX properties and shown to work.
    The updater code itself is simply this.
    Platform.runLater {
    updateSomething
    updateSomethingElse
    andSoOn
    The trace is as follows.
    java.lang.IllegalStateException: Not on FX application thread; currentThread = AWT-EventQueue-0
         at com.sun.javafx.tk.Toolkit.checkFxUserThread(Toolkit.java:239)
         at com.sun.javafx.tk.quantum.QuantumToolkit.checkFxUserThread(QuantumToolkit.java:392)
         at javafx.scene.Scene.<init>(Scene.java:286)
         at javafx.scene.Scene.<init>(Scene.java:194)
         at javafx.stage.PopupWindow.<init>(PopupWindow.java:102)
         at javafx.scene.control.PopupControl.<init>(PopupControl.java:98)
         at javafx.scene.control.Tooltip.<init>(Tooltip.java:133)
    As you can see, the thread that tries to update the Tooltip is actually the AWT EventQueue, which puzzles me to no end. Probably something to do with the symbiosis between the SwingWorker thread and the JavaFX Application thread, but these things are a nightmare to debug at the best of times ...

  • Update properties in BP Master Data with DTW

    Hi all,
    I've a problem using DTW in SAP BO 2005 A:
    I'm trying to update groups in properties, related to BP's in BP Master Data.
    I'm using the template oBusinessPartners/BusinessPartners.txt with fields:
    RecordKey, CardCode, Property8 (that is the one I want to update).
    I populated Property8 with Y but DTW gives me back following error:
    Invalid Item Name 'Y' in Enum 'BoYesNoEnum'65171
    Is it a type of field problem?
    Thanks in advance
    Rgds

    Hi Federico,
    To update a property via DTW the value you need to enter in the spreadsheet is tYES or tNO.
    Regards,
    Adrian

  • How to Get and Update properties values from XML tag Using Xquery or PL Sql

    Hi
    I have this tag
    <Solicitud Pais = "1">
    How i can get Pais value?
    How i can update Pais Value?
    Y can use Xquery funtions or PL SQL for this?
    Thak's
    Angel

    How i can get Pais value? ExtractValue
    How i can update Pais Value?UpdateXML
    Y can use Xquery funtions or PL SQL for this?Yes
    Without knowing more about your requirements, where information resides, or even a version of Oracle, that is the best I'll do.

  • Updating properties by name

    I have a need to update the property of a class given its
    name.
    I have found that if I used the notation :
    obj["name"] = "hello world!"
    that this does not update the property 'name' of sealed class
    instance 'obj'.
    To be more explicit, suppose I have the following class
    definition:
    public class Foo
    private var _name : String = "";
    public function get name() : String
    return _name;
    public function set name(name : String) : void
    if (name == null) // protect from setting it as null, for
    some reason...
    name = "";
    _name = name;
    and then I have some code that knows that an object it has a
    reference to has a property called 'name', but that this is generic
    code and the object reference it has is not explicit. So, I was
    hoping to be able to do this:
    public function setProperty(instance : Object, propertyName :
    String, propertyValue : Object) : void
    instance[propertyName] = propertyValue;
    However, this doesn't work, as it tries to create a new
    dynamic property and can't.
    Is there another way to set the property value, similar to
    the way you can set a property on a JavaBean?
    Thanks!
    Rhys
    PS Apologies for the code not being formatted properly. I
    can't find the 'attach code' feature that I keep reading
    about.

    This was idiocy on my part.
    The example does work!

  • Trouble binding updated properties to view

    Hi Guys, 
    I have the following code which i want to to populate a combobox based upon the selected item of a treeview.
    as depending on what node is chosen will populate the combobox with a different list of report levels.
    the combobox is within a user control and i am trying to bind to a dependency property ReportLevel i have in my MainViewModel. if i set the value of the combobox its fine but i want to be able to update it whenever a user choses a different node on the tree.
    this is my xaml
    <UserControl x:Class="RTHM.ComboboxControl1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup- compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    mc:Ignorable="d"
    xmlns:local ="clr-namespace:RTHM.ViewModels"
    d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    ItemsSource="{Binding Path=Levels}"
    IsSynchronizedWithCurrentItem="True"
    DisplayMemberPath="Name"
    SelectedItem="{Binding Path=SelectedLevel, Mode=TwoWay}"
    IsEnabled="{Binding IsEnabled}"/>
    my code behind:
    public partial class ComboboxControl1 : UserControl
    public ComboboxControl1()
    InitializeComponent();
    DataContext = new MainViewModel();and in my viewmodelprivate ObservableCollection<ReportLevel> _levels;
    public ObservableCollection<ReportLevel> Levels
    get
    return _levels;
    set
    _levels = value;
    NotifyPropertyChanged("Levels");
    }my MainViewModel inherits from a base class which has INotifyProperty changed and an implementationpublic class ViewModelBase : INotifyPropertyChanged
    public event PropertyChangedEventHandler PropertyChanged;
    protected void NotifyPropertyChanged(string propertyName)
    if (PropertyChanged != null)
    PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }any Ideas on how to update the Comboboxs ItemSource dynamically?Thanks in advance

    They are presumably in the same datacontext?
    Hmmmm
    I wonder if you should really have that combo in a separate usercontrol.
    Anyhow.
    You've Bound the treeview to a collection of whatever that is bound to.
    ( You haven't explained a bunch of relevant stuff here mate )
    Call that a collection of trees.
    A tree presumably has a collection of reportlevels in it.
    Vaguely like
    public class tree()
    public observablecollection<reportlevel> reportlevels [get;set;}
    But maybe with some propertychange stuff.
    Bind selecteditem of the treeview to selectedtree in your viewmodel.
    Bind itemssource of the combo to selectedtree.reportlevels.
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • Firefox does not update propertly. It tells me there maybe another version running on my computer, but there is not. I can no longer click links on my outlook

    How do you fix this problem?

    Hi shethmeister,
    I'm sorry to hear that you are having problems with your Firefox. Please try these steps to [[troubleshoot and diagnose Firefox problems]].
    Please write back to let us know if this solves your problem.
    Thanks!!
    - Ralph

  • Updating CMS Node properties not working

    I have a pageflow controller that is fetching a node from the content
    management server, and updating a property on it. However, this value change
    is not being persisted... the next time I load the node the old value is
    still there and the modified time has not been changed.
    Does the proper way to modify node metadata differ from the following????
    NodeOps nodeOps = repManager.getNodeOps();
    ID nodeID = new ID(repName,nodeUID);
    Node node = nodeOps.getNode(nodeID);
    Property currentProperty = currentProperty =
    currentNode.getProperty("mymetadatatitle");
    currentProperty.setValue(new Value("newStringValue"));
    I have also tried using:
    nodeOps.renameNode(nodeID,newName);
    ... which is also not persisting any changes. I have verified that the
    incoming values reflect the changed values I would like to persist.
    Is there some kind of transaction boundary that I'm not aware of, and a
    transaction possibly rolling back? I don't see any errors or exception being
    thrown and am stumped....
    thanks!
    Markus

    Ahhhhhhh... I'm sure that'll solve it... thanks!
    Markus
    "Gregory Smith" <[email protected]> wrote in message
    news:[email protected]...
    The Property object is just a value object, so updating it does not
    trigger a save.
    Try this after your code:
    node = nodeOps.updateProperties(node.getId(),
    node.getProperties());
    The returning Node should have the updated properties, as well, plus
    anyother side effects from the save.
    I'm not sure why renameNode() isn't persisting anything in the database
    tables, without more information. Node is also a value object, so just
    calling renameNode() won't modify the node instance you have unless you
    reassign from the return value (e.g. node =
    nodeOps.renameNode(node.getId(), newName)). However, just the call
    should update the database once the transaction is finished. And, if
    you're not creating an outer transaction somewhere (i.e. in the
    jsp/servlet/jpf, or at an EJB boundary), then a transaction gets created
    and comitted entirely within the call to renameNode().
    Greg
    Markus Blumrich wrote:
    I have a pageflow controller that is fetching a node from the content
    management server, and updating a property on it. However, this value
    change
    is not being persisted... the next time I load the node the old value is
    still there and the modified time has not been changed.
    Does the proper way to modify node metadata differ from thefollowing????
    >>
    NodeOps nodeOps = repManager.getNodeOps();
    ID nodeID = new ID(repName,nodeUID);
    Node node = nodeOps.getNode(nodeID);
    Property currentProperty = currentProperty =
    currentNode.getProperty("mymetadatatitle");
    currentProperty.setValue(new Value("newStringValue"));
    I have also tried using:
    nodeOps.renameNode(nodeID,newName);
    ... which is also not persisting any changes. I have verified that the
    incoming values reflect the changed values I would like to persist.
    Is there some kind of transaction boundary that I'm not aware of, and a
    transaction possibly rolling back? I don't see any errors or exceptionbeing
    thrown and am stumped....
    thanks!
    Markus

  • Update printer properties with powerhsell error

    Hello, dear Colleagues.
    I'm trying to updates properties with powershell.
    Here is a script:
    $erroractionpreference = "continue"
    $colPrinters = Get-Wmiobject -Class win32_printer -computername print_server -Filter "Name like 'printer1' or Name like 'printer2' or Name like 'printer3' or Name like 'printer4' or Name like 'printer5' or Name like 'printer6'" # get printers on server and filter with names
    ForEach ($objPrinter in $colPrinters) { # get printer details from WMI
    If ($objPrinter.RawOnly -ne "True") { # check that Advanced printing fetaures is turned on
    Write-host $objPrinter.Name
    Write-Host $objPrinter.RawOnly
    $objPrinter.RawOnly = "True" # Untick and update the object in WMI
    $objPrinter.Put()
    It works on Windows 7 workstation, but does not on print server Windows Server 2012 R2 with error:
    Exception calling "Put" with "0" argument(s): "Generic failure "
    At \\print_server\c$\DisableAdvancedPrintingFeatures.ps1:8 char:17
    + $objPrinter.Put()
    + ~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException
    Can you help me with that?
    Thanks you.

    Hi Fapw,
    I tested This script and it works on Server 2012 R2, so I recommend you can troublehsoot the Printer issue, why current user can't change the RawOnly property.
    For the printer issue, I recommend you can post in Printer Forum for more efficient support:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverprint
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang
    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 Support, contact [email protected]

  • How to update metadata (e.g. keywords, author) for pdf created from spool

    Hi Experts,
    My requirement is that smart-form spool will be converted into PDF and will be saved on to application server. Now, a third party tool will read the data and print it. I want to update properties of this PDF like author, keywords. These properties can be seen when we save PDF on desktop and right-click on it.
    Please provide pointers to address this issue. Any input will be highly appriciated.
    Regards,
    Gouri.

    Hi,
    Its good that u pasted the complete log file. In your environment you have to run this upgrade tool only once from any of the middle tier.
    And with respect to your error that u got in precheck is quite simple. All u have to do is just run this script from by connecting to portal schema using sqlplus.
    Run dropupg.sql
    Location-------- /raid/product/OraHome_1/upgrade/temp/portal/prechktmp/dropupg.sql
    Later you re-run the upgrade tool and let me know the status.
    Good luck
    Tanmai

  • Changing properties in a portfolio

    I created a form in Adobe Acrobat Pro 9 with a read only field. I distributed the form and received about 100 responses. In my portfolio I was able to change the read only setting so that I could enter the data I needed in the form. I did this by going to 
    The feature under forms "add edit fields" is not accessible and I can not right click on the text field to see a properties option.
    Any help would be appreciated

    A ResourceBundle is a read-only object. It doesn't provide any methods for updating. If you want to allow your users to update the data, the code will have to update the underlying properties file. This also is impossible if your application server doesn't expand the application but runs it from a WAR or EAR archive.
    [Edit] And even at that, allowing users to update properties files in a multi-user environment is risky -- if two users update the file at the same time, it's easy to lose one of the updates.

  • Changing Weblogic Server properties without restarting Weblogic Server

    I have an application that requires a few things to be set at the start of the
    Weblogic server (email addresses,criteria settings, etc.). These are contained
    in a properties file that is referenced in the Weblogic properties file. The
    problem is when I want to make a change in the application property file (change
    an email address, increment a criteria) I have to "reboot" the Weblogic server.
    These defeats the whole purpose of property files. Is there anyway to get Weblogic
    to "recache" the properties files without a Weblogic server "reboot"?
    Thanks,
    Bryan

    I very much doubt that you would be able to refresh the WebLogic properties
    file at run-time (is this WebLogic 5.1 or 6.0 you are talking a about?).
    If you want to be able to update properties run-time (as opposed to
    boot-time) then don't use WebLogic's property file - use either your own
    properties file or store the properties elsewhere such as in the database or
    in JNDI. You will of course have to implement your own refresh algorithm.
    If you are using EJBs then a simple READ-ONLY entity bean with a refresh
    period of a few seconds may suffice.
    Myles
    "Bryan Freed" <[email protected]> wrote in message
    news:3b1e5986$[email protected]..
    >
    I have an application that requires a few things to be set at the start ofthe
    Weblogic server (email addresses,criteria settings, etc.). These arecontained
    in a properties file that is referenced in the Weblogic properties file.The
    problem is when I want to make a change in the application property file(change
    an email address, increment a criteria) I have to "reboot" the Weblogicserver.
    These defeats the whole purpose of property files. Is there anyway toget Weblogic
    to "recache" the properties files without a Weblogic server "reboot"?
    Thanks,
    Bryan

  • Change properties of a cluster element withing an array of clusters

    Hello all,
    I have an array of cluster that is shaped as a line with different display elements.
    A list or a tree wouldn't have made it, so I had to use a cluster and make a table.
    The problem is that I want to change not only the text but also the text color.
    Individually.
    I found this :
    http://www.ni.com/example/30904/en/
    But it change the property in all the clusters in the array, not just the one I need.
    Some people have the same problem :
    http://forums.ni.com/t5/LabVIEW/Reference-to-Array-of-Clusters-with-an-array-element/td-p/1006427
    http://forums.ni.com/t5/LabVIEW/Different-set-of-values-for-two-rings-in-an-array-of-clusters/m-p/10...
    http://forums.ni.com/t5/LabVIEW/array-of-clusters-get-references-to-all-the-clusters/td-p/1079456
    http://forums.ni.com/t5/LabVIEW/How-can-I-reference-the-properties-of-a-control-in-a-cluster-in/m-p/...
    http://forums.ni.com/t5/LabVIEW/Writing-only-to-certain-cluster-elements-in-an-array-by/m-p/2200728
    http://forums.ni.com/t5/LabVIEW/Update-Properties-Of-One-Control-In-An-Array/m-p/3015501
    http://forums.ni.com/t5/LabVIEW/Array-of-clusters-and-in-the-cluster-is-a-bar-meter-how-can-I/m-p/15...
    http://forums.ni.com/t5/LabVIEW/Property-node-of-a-control-inside-of-cluster-inside-an-array/m-p/946...
    Obviously, while in a list/table or tree you can change the property of an individual
    cell (font, color) you cannot do it within an array of cluster, by some sort of magic,
    the property of a cluster element (font, color) are all linked together, hence rendering
    the use of an array worthless.
    A possible hack is proprosed by using control masking, setting one visible and the
    other invisble, swapping their position, whatever. It's a hack you have to perform,
    hence add another code to maintain.
    Is that still the case or is there now a more official way to handle individual cluster
    properties, not just its data ? After all that's a common real-life example that should
    be handled by Labview. In my opinion.
    David Koch
    Solved!
    Go to Solution.

    altenbach wrote:
    One of the elements could be a 2D picture indicator of about the same size. You can write text in any color using picture functions.
    Here's what I had in mind. Seems to work just fine (I would fine-tune the font, picture border, etc. but this should get you started).
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    ColorText.png ‏13 KB
    ColorText.vi ‏9 KB

Maybe you are looking for

  • Phishing email from Apple???

    I received this today, below. As I don't have an iMac, and have never heard of a 'do it yourself' repair, much less making a claim on one, I have to say - this is disturbing. Another red flag is the 'we'll charge your card if you don't reply' bum's r

  • Guest Network in Bridged Mode?

    I'm wondering if you can use the Guest wifi network feature on an Airport Extreme that is in bridged mode. When I say bridged mode, I do NOT mean "extending" a wireless network (like many threads with a smiliar title seem to mean). What I mean is tha

  • HOW TO USE R/3 AS AN RETAIL SYSTEM?

    HI FRIENDS I HAVE INSTALLED SAP 4.7 IDES. I WANT TO USE IT SA AN RETAIL SYSTEM. WHAT ARE THE SETTINGS NEED TO UTILISE AS A RETAIL SYSTEM. THANKS IN ADVANCE

  • NB505 question

    hi folks i have a netbook nb505...a few questions if i may....is ther any scan that i can do that would tell me what drivers are out fo date and how to update them?..on my sreen i have a faint gray line going from top to bottom about a half inch wide

  • TS1453 Home sharing isn't working and I can't seem to get it fixed.

    When I try to go under computers on my Apple TV (2nd Gen), it says "Loading Jennifer's Library" for several minutes before I get an error telling me "Could not connect to Jennifer's Library. Make sure the computer is on the same network as your Apple