Assigning Bandwidth to specific application

Hi all
Im sure there's technical terms for all this but basically I'm looking for a way to assign my ADSL bandwidth to individual applications...for example, if ITunes is downloading something, my safari browsing is very slow (I only have a 1MB ADSL line). So, can I get ITunes to only use, say, 50% of the available bandwidth so that the rest is more available? This is only one example and basically I'm wondering if there is a general way (or application) to tell OSX how much bandwidth it can use for whichever applications I have running.
Many thanks

Hi mhook,
have a look at this article http://www.macgeekery.com/hacks/software/trafficshaping_in_mac_osx (is for OSX Tiger but should work for Leopard as well).
But you might end using/buying an app like this http://www.intrarts.com/throttled.html
Hope it helps
Stefan

Similar Messages

  • How to get the list of batch jobs running in a specific application server

    Hi Team,
    I am trying to check in SM37 if there is any specific condition to get the list of batch jobs assigned to a specific target server but cant find any.
    Is there is way to find the list of batch jobs assigned to run in one specific application server.( Target server specified in SM36 while job creation)

    Hello,
    This is what you can do in SM37.
    Execute the list of batch jobs, when the result appears on the screen edit the ALV grid via CTRL+F7.
    Now add the following columns "TargetServ" and "Executing server".
    You will now have two extra columns in your result list.
    TargetServr contains the value of the application server where the job should run when you have explicitely filled it in.
    Often this is empty, this means that at runtime SAP will determine itself on which application server the job will run (depending of course where the BGD processes are defined).
    Executing server is filled in always for all executed jobs, this is the actual application server where the job has run.
    You can also add these two fields in your initial selection screen of SM37 by using the "Extended job selection" button.
    I hope this isusefull.
    Wim

  • Resusing Country Specific Application - GT

    Hello,
    We need to setup Guatemala for all the Personal Information iViews, and we would like to reuse Mexico for this. The steps I followed were:
    1) Assign Screen Structure to Infotype Version
    2) Define Active Subtypes and Use Case
    3) Country Specific Applications
    After this, when I changes my ID to GT PERNR and logged back in to Mexico, the Adddress & Personal Data works fine but not Family Members/Dependants. This iView does not recognize the already exisiting record son the GT emloyee's IT21  and when I click on create new record, it throws a Java Null Pointer Exception.
    Any ideas on this?
    Thanks,
    Nakul

    Deepak,
    Thanks You!! Solved issue!
    Another question I have while on this topic... The closest we could get to Guatemala (GT) was Mexico (MX). And if you think about it, MX is the only country in LAN for which SAP has provided iViews. Although MX works fine for GT for IT2 and IT6, we cant get it to work for IT21, because the screens of MX and GT are very different in IT21. Any ideas on how we can resolve this issue?
    Another thing to consider is, we do not use IT21 for GT, but we would haet for the GT employees to go in there and see an ugly error message.
    Any thoughts?
    Thanks,
    nakul

  • How can I force the use on a specific application when I am in the Downloads window?

    I have Vista and Firefox 3.6.15
    when I open an email attachment it goes to the intended application but when I click on the downloaded file in Downloads it invokes OpenOffice and then it displays:
    "Move background page assignment
    The loading of password-encrypted Microsoft Powerpoint presentationsis n ot supported"
    How can I force the use on a specific application when I am in the Downloads window?

    Hi Frank!
    you should catch your save-event and after saving put the following line:
    oMatrix.Columns.Item(4).Cells.Item(lstRowIndex + 1).Click(SAPbouiCOM.BoCellClickType.ct_Regular);
    that's it!

  • The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

    Hi,
    Im trying to create a Rest WS with a @GET method that will return me an Emp object. I need the output as a JSON string.
    I have created a dynamic web project and added javax RS jars:
    When im trying to run this, i'm getting the below mentioned error:
    FlushResultHa E org.apache.wink.server.internal.handlers.FlushResultHandler handleResponse The system could not find a javax.ws.rs.ext.MessageBodyWriter or a DataSourceProvider class for the com.rest.assignment.EmpBean type and application/json mediaType.  Ensure that a javax.ws.rs.ext.MessageBodyWriter exists in the JAX-RS application for the type and media type specified.
    RequestProces I org.apache.wink.server.internal.RequestProcessor logException The following error occurred during the invocation of the handlers chain: WebApplicationException (500 - Internal Server Error)
    Please help as im stuck with this from long.
    Thanks in advance.
    Below is the code for my service class:
    package com.rest.assignment;
    import java.io.FileInputStream;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.util.Enumeration;
    import java.util.HashSet;
    import java.util.Properties;
    import java.util.Set;
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    import javax.ws.rs.core.Application;
    import javax.ws.rs.core.MediaType;
    import javax.ws.rs.core.Response;
    @Path("/restService")
    public class RestService extends Application {   
        @GET
        @Path("/getEmpDetails")
        @Produces(MediaType.APPLICATION_JSON)
        public Response getStringResponse()
            EmpBean empBean = new EmpBean();
            String filePath = "C:/Program Files/IBM/workspace/HelloWorld/src/com/rest/resources/EmpData.properties";
            Properties properties = new Properties();
            try {
                properties.load(new FileInputStream(filePath));
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
             Enumeration e = properties.propertyNames();
             String result="";
            String[] empDetailsArr;
            while (e.hasMoreElements()) {
              String key = (String) e.nextElement();
              String empDetails = properties.getProperty(key);
              empDetailsArr=empDetails.split(",");    
              empBean.setFirstName(empDetailsArr[0]);
              empBean.setLastName(empDetailsArr[1]);
              empBean.setEmpId(empDetailsArr[2]);
              empBean.setDesignation(empDetailsArr[3]);
              empBean.setSkillSet(empDetailsArr[4]);
              result = empDetailsArr[1];
            //return empBean;
            return Response.ok(empBean).type(MediaType.APPLICATION_JSON_TYPE).build();
        @Override
        public Set<Class<?>> getClasses() {
            Set<Class<?>> classes = new HashSet<Class<?>>();
            classes.add(RestService.class);
            classes.add(EmpBean.class);
            return classes;
    and my empBean goes like this:
    package com.rest.assignment;
    public class EmpBean {
        private String firstName;
        private String lastName;
        private String empId;
        private String designation;
        private String skillSet;
        public String getFirstName() {
            return firstName;
        public void setFirstName(String firstName) {
            this.firstName = firstName;
        public String getLastName() {
            return lastName;
        public void setLastName(String lastName) {
            this.lastName = lastName;
        public String getEmpId() {
            return empId;
        public void setEmpId(String empId) {
            this.empId = empId;
        public String getDesignation() {
            return designation;
        public void setDesignation(String designation) {
            this.designation = designation;
        public String getSkillSet() {
            return skillSet;
        public void setSkillSet(String skillSet) {
            this.skillSet = skillSet;
    Web.xml goes like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <display-name>restWS</display-name>
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.htm</welcome-file>
      <welcome-file>index.jsp</welcome-file>
      <welcome-file>default.html</welcome-file>
      <welcome-file>default.htm</welcome-file>
      <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>
    <servlet>
      <servlet-name>REST</servlet-name>
      <servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
      <init-param>
       <param-name>javax.ws.rs.Application</param-name>
       <param-value>com.rest.assignment.RestService</param-value>
      </init-param>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>REST</servlet-name>
      <url-pattern>/rest/*</url-pattern>
    </servlet-mapping>
    </web-app>
    When i try to return a string from my get method, it gives me a proper response. i get this exception when im trying to return a JSON response.

  • No Data to display in Application failure report for a specific Application

    Hi ,
    For a specific application,Application failure report showing no data to display but for the same application other reports shows value.
    Application failure reports seems to work fine for some other application except few.Need to know the root cause.
    Kindly help us to sort this issue.
    Thanks & Regards,
    Preethi S

    Hi,
    Is there any error message when you run Application Failure Analysis report for the specific application?
    Does this application have any failure alerts?
    You may also look into operation manager even logs to check is there any errors or warnings.
    Regards,
    Yan Li
    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]

  • Security question - restricting access to a specific application

    Hello,
    Looking for suggestions on how I could limit connections to a database to a specific application. Here is the scenario.
    I have an application running from a desktop that has oracle accounts for each user. The user has a read only role by default that I cannot alter. This means that the user can use excel (for example) and bypass the application to look at sensitive data.
    I know I can lock down the desktop, remove excel, etc, etc. However, I'm looking for other options that could be used, be it process, additional Oracle software (the database is 10R2 enterprise edition), etc.
    Problems: The app doesn't identify itself internally. I can see the program, but that is easily faked so thus unreliable.
    Any suggestions at all?

    I'll look at VPD again, but don't think the vendor will support us if we do.
    We are unable to modify the app - third party supported
    exactly - dont want toad, excel, sql*plus, whatever accessing the db from the same host.
    thought above secure app roles as well, but need something concrete that I could validate agianst. If the app could call it and supply that, great but I cannot alter the application. I'm using secured app roles in an in house app and it does work well.
    looking with our ti staff about encapsulating the application communication through a secure vpn tunnel into the data zone. may be an option as all other connections would not make it through the firewall into the data zone. (everything is internal, just to be segmented).
    Edited by: GPC on Aug 26, 2010 12:18 PM
    Edited by: GPC on Aug 26, 2010 12:22 PM

  • Specific Application filter while desktop sharing

    I need help for the specific application filter while on desktop sharing. i.e i have to share entire Desktop with current running processe except server application window (UI).http://blogs.msdn.com/b/rds/archive/2007/03/23/writing-a-desktop-sharing-application.aspx
    I got the samples for desktop sharing using Windows Desktop Sharing References. In that I need to filter the specific application. But i didn't know How to do that.
    By using following things we can try to filter the specific Application. But I want to know, how to call Viewer side share property to fire the OnApplicationUpdate Event on server side.
    RDPSRAPI_APP_FLAGS & RDPSRAPI_WND_FLAGS enumeration - How to set the flag for specific application to give high level security process.
    IRDPSRAPIApplicationFilter
    _IRDPSessionEvents_OnApplicationUpdateEventHandler
    Please give me some examples to do this....
    Thanks
    Narmadha

    Hi Narmadha,
    Your issue seems to be out of the scope of this forum. We only focus on issue about RDS/VDI deployment, management and operations. For development and API issue it is appropriate to ask in our MSDN Forum:
    http://social.msdn.microsoft.com/Forums/en-US/categories
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Bpc 7.5 - not sending data on a specific application

    Hi I use SAP BPC 7.5 SP7 patch 1 with Microsoft Sql Server 2008.
    I moved my AppSet from a server 32bit to a server 64bit.
    On 32bit server everything works fine.
    On 64bit server (64bit configurations written in BPC installation guide applied + no error in Server Manager > DIagnostic): I can't send data on a specific application I have.
    On 64bit server: I precessed all dimensions and all applications and then I even optimize. Nothing change.
    I have to applications: A and B.
    On Application A I can send data correctly.
    On application B in my Input schedules when I send data: everything seems to work fine but afer data refresh on my sheet the value disappear and nothing is written into FactWB table. No error displayed.
    Those input scheules are the same I have and working on 32 bit server.
    No errors into Windows event viewer so... what can I check or do more? How can I fix it?
    Edited by: Francesco Andolfi on Feb 10, 2012 7:56 PM

    Hi Francesco,
    have you tried modify application on B?
    have tried if you can send data through a new simple input schedule?
    Kind regards
    Roberto
    Edited by: Roberto Vidotti on Feb 10, 2012 8:35 PM

  • Assigning Value To An Application Item via JS

    Hi guys,
    I am trying to assign a value to an application item by using javascript. But I can't do this when I try to display with alert the result is empty. Do you have any idea how can I assign value to an application item by using javascript?
    else if(action=="ASSIGN")
    var moname = $(el).children("td[headers='SOURCE']").text();
    $s('F10_SELECTED_OBJ',moname);
    alert($v('F10_SELECTED_OBJ'));
    Thanks

    Hi
    >
    I am trying to assign a value to an application item by using javascript. But I can't do this when I try to display with alert the result is empty. Do you have any idea how can I assign value to an application item by using javascript?
    >
    Scope of JavaScript is the HTML DOM in the browser. The Application Items do not exist in the HTML DOM, only in the session state.
    This explains what you observer. To set the App Items using JS you have to use an AJAX call to an OnDemand Application Process that sets the Application Item using PL/SQL. Or, call a procedure over http and set the App Item in that procedure after setting the Workspace / Security Group Id.
    Regards,

  • OBIEE 11g issue - same user assigned to the multiple application role

    Hi All,
    We are facing an issue when assigning a user to the multiple application role and applying the data level filter on the different column of the same table.
    For example, we have a table Department with three columns Department No, Department name, Department location.
    Application Role A1 and A2 are created.
    Data Level security Applied on the application role A1: Department Name='Finance'
    Data Level Security Applied on the application role A2: Department location='US'
    The user "User1" is created in LDAP and is assigned to both the Application roles A1 and A2.
    When logged in with "User1", none of the filters of Role A1 or A2 is applied in the report. If this user is assigned to only one role, either A1 or A2, then the filter is applied. It seems the filter will not be applied if a user belongs to multiple roles with data filter applied on the same table across these roles.
    Please reply if anyone has faced similar issue.

    Hi All,
    Regarding the above issue to update the analysis we came up that the user if assigned to the multiple group with the data filter applied on the same column of the table is getting an *"OR"* join.
    We had a requirement to get an "AND" in the query condition. Please let us know if any one faced the issue and the resolution of the same.
    Regards,
    Jyotshna

  • Does anyone know how to lock a specific application, such as e-mail in Ipad?

    I have my company email in my Ipad and I want to lock it in order to prevent whoever uses my Ipad to login to my email. Does anyone know how to lock a specific application or it cannot be locked?

    There is a somewhat clunky way to do it. First, go into your mail (Settings - Mail/Contacts/Calendars) and turn off (dont' disable) any accounts you don't want to be seen. Then go into Restrictions - Accounts and select "Don't Allow Changes." This will prevent anyone from turning the mail back on. When you're ready to turn it back on, go into Restrictions and either Disable Restrictions or go into Accounts and select Allow Changes.

  • Allowing a user to upgrade a specific Application

    We have a specific application that we install on all of our mobile computers. Our newest is the Microsoft 8.1 Professional with an attached keyboard. The issues that we are facing have all been resolved with the exception of one.
    The application is installed as the administrator and the user is a basic user with no real privileges. We gave the user full access to the folders that are created and would like to have the users to be able to update this application when newer versions
    are released.
    The Windows XP systems were performing this without fail but Windows 8 is telling me that the user does not have the appropriate permissions to install as All Users. I have spent a lot of time in GPO and still being denied. Can anyone offer assistance on
    this?

    Hi,
    This happens on Windows 8 not on windows XP, because there is a User Account Control setting in Windows 8 User Account Control (UAC) helps prevent malicious programs (also called malware) from damaging a computer and helps organizations deploy a better-managed
    desktop. With UAC, applications and tasks always run in the security context of a non-administrator account. So, a consent prompt will show up when you try to install an application with a standard user, the detailed information can be found at Microsoft:
    http://technet.microsoft.com/en-us/library/jj574202.aspx
    So, the suggestion is add the standard user to the administrator group, then your can check the result.
    Regards
    Wade Liu
    TechNet Community Support

  • Being able to have one sigle file open in a specific application or have a user directory

    Wonder if anyone can help  with the following request ?
    One things doesn't make sense with the WIFI  mini I Pad  Latest IOS :
    If you have several programs that can open a specific file as PDF for example why do you have to upload the same file ( PDF)  into to each specific application folder or cache. Resulting in multiple copy of the file (PDF)   copied on your I pad??? which translate to a useless waste of space.
    Wouldn't it  be easier having a single directory where the user can save all of his file/s   and each program that can manipulate that particular file have access to it.  As an example I got several program that that can run an excel file and am enjoying a multiple copy of the same workbook loaded into my WIFI MINI.. this is just blatant waste of memory/ disk space on my Ipad.....  I wonder there is a program that allows me to save all this file in a single directory and give me the opportunity to open each file with a specific application of my choice?????
    Thanks for your help

    That doesn't help.
    There's a clear distinction between temporary files, and files downloaded to the users' download folder.
    Or at least, there should be.
    I'm inclined to call this a bug, since the user (being me) didn't ask for the download.
    Downloading upon opening a site from the address bar is a different action than downloading from within a site (e.g. clicking a url shortcut or a button to download from an indirection).

  • Hotkeys or shortcut assignment in CRM PCUI application

    Forum post in Portal Content Development: CRM 5.0 PCUI - Assign HotKeys to PCUI application
    /message/2412531#2412531 [original link is broken]
    Has anyone done Assigning hotkeys or shortcuts (CTLN for New Account, CTLS for Save likewise )to CRM PCUI applicatoin. ex: CRMM_ACCOUNT ?

    Hi Ravikanth,
       In PCUI 5.0 Cookbook, there isnt this concept of hotkey.
    Regards.
    Manuel

Maybe you are looking for

  • C6150 - how to make it a black and white only printer

    I have the C6150 all-in-one printer - it keeps running out of color cartridges even though I rarely use color printing.  I want it to ignore the status of color cartridges even if they are empty.  I set my printing option to say "black cartridge only

  • ICloud Log in not working for iOS8

    I have just updated my software on an iphone 5 to iOS8. However, I have had to reset my iCloud password and now I am not able to log into iCloud. When trying to log in the validation keeps telling me that my apple id password is incorrect.

  • Any FM to provide user with a text field to enter atleast 50 cahracters?

    Hi gurus! Pelase help me asap. I need to popup a screen with textfield , so that user can enter some text. Is it possible with any existing funtion module?. As i do not prefer to go for calling subscreen and having modules. all suggestions would be r

  • Stock Market App/Widget

    Greetings, I just came from an HTC Droid Incredible and now am on the Motorola Droid Razr. Apparently (I havent searched fully yet) this doesnt come with a built in stock app so I'm having to search thru the Market for decent Stock widgets. My main i

  • Stumped: Cannot see imported images in a project...but they are there!

    I recently imported a set of images into a project in Aperture 3. The item count in the project shows as 550, but when I click on it, only 368 images are displayed. Huh? If I use the "In the Last Week" Smart Album, I see the images there. Aperture wo