CSS for MI Custom Occasionally connected with handheld perspective

Hi Guys,
Currently, I am developing and enhancing Custom Development of MI Occasionally connected using handheld perspective. I have some doubts.
1.  can we do the changes of font attributes such as bold, italic? Is there any CSS file to be edited?
     May I know how to change it if this feature is available?
2.  The mobile title is always show the package name + application name. as example
     sap.demo.com.orderapp.    Can we change this?  May I know how to change it if this feature is available?
Thanks in advance.
Regards,
L.Mochisuki

Hi Lina
In Netweaver Mobile 7.1 you can try the following
1. To change the font, color etc., you need to create a configuration.properties file inside MI -> Settings folder and restart the client.
The contents of the file can be for example:
stylesheet.textview.backgroundcolor=#FFFF00
stylesheet.textview.font=Serif
2. In the UI component, double click on the application. In the editor, go to Application Properties tab.
Create a user defined property with name as "title" and value as "<Sample text>". Build and deploy it. Now the title should get changed.
Thanks and Regards
Vidyadhar

Similar Messages

  • How can I Create a Client Configuration File for RemoteApp and Desktop Connection with Server 2012?

    I have a working RDS RemoteApp site and looking to test out the feature in Windows 7 Control Panel\All Control Panel Items\RemoteApp and Desktop Connections
    I came across this link: Create a Client Configuration File for RemoteApp and Desktop Connection and I believe this is what I need to do first, but these instructions are for
    Server 2008, and I'm running 2012.
    Any suggestions or tips on how I can begin testing this with Server 2012?

    Hi,
    You can manually enter the path to the 2012 feed and it will connect and download the RemoteApps and Desktop connections.
    If you need a sample .wcx file I have posted one here a couple of times.  If you want I will look for it and post a link.
    -TP
    I tried adding my URL's below, these are sample links that work for me right now for when I log into the web page, but neither of these work.  And I'm not sure what I would need to do with or how to create a .wcx file.
    When I type in my URL of: https://connect.mydomain.org/RDWeb, I get redirected to: 
    https://connect.mydomain.org/RDWeb/Pages/en-US/login.aspx?ReturnUrl=/RDWeb/Pages/en-US/Default.aspx

  • Microsoft Rights Management Sharing Application for Windows and the connection with AD RMS

    Hi,
    I have installed AD RMS and now installed on end users Microsoft Rights Management Sharing Application for Windows.
    When I choose protect a document in any end user machine, does it connect with AD RMS server to get a certificate and encrypt the content, or does not use at all AD RMS services? What about when choosing to protect  with an AD RMS template distributed
    to end users?
    Thanks 

    Hi Ardi -
    The first time a user creates or consumes protected content, they must contact the RMS server to "bootstrap".  In this process, the user obtains certificates to identity them within the context of RMS.
    Once a user has bootstrapped, he or she can create protected protected content without access to the RMS server.
    To open protected content, a user must connect to the AD RMS server to obtain a "use license".
    Does that help?
    Micah LaNasa
    Synergy Advisors
    synergyadvisors.biz

  • Best practice for handling custom apps tracks with regards to EP upgrade?

    Hi,
    We've are currently in the progress of upgrading from EP 6 to EP 7.0, and in that context we need to "move" our tracks containg development of custom J2EE components.
    What we've done so far is :
    1.Create a new version 7.00 of each software component we have developed with correct EP 7 dependencies
    2. Create a new version 7.00 of our product in the SLD: Bouvet_EP
    3. Attached the new versions of the SCs to the new product version
    4. Create a new track with the SC of version 7.00 along with relevant dependencies
    My question now is how do we get the EP 6 component source code into the new track, so that we can change dependecies of the DCs and build it again for EP 7.0?
    Should we somehow export the code from the old track, check in and transport ? (how do we then export the code from the track)
    Regards
    Dagfinn

    Hi Dagfinn,
    This is a really interesting thread. I have not encountered this scenario till now. However i can only guess.
    1. Copy the latest sca files generated for all the SC's in your track from one of the subdirectories of JTrans and place those sca files in the inbox directory of target CMS. Check if these sca are available in the Check-in tab. I think this will not work because the SC verion you have defined in SLD for WAS 7.0 is different than the one in SLD for WAS 6.40.
    2. Second and crude method may be you create a SC in the source SLD similar to ones created in target SLD. Create a track for these SC's in the source system. Then create a track connection between the newly created track and existing tracks. Forward all the sources to the target track. Then assemble this SC and copy the sca file and repeat the process above.
    I dont know. Possibly this may click. Notes 877029 & 790922 also give some hints on migration of JDI server.
    Please do keep this thread updated with your progress.
    Regards
    Sidharth

  • Am i on the right track for establishing my client connection with BC4J?

    I am developing web-application with BC4J JSP project now. However, I find the auto-generated page not that useful as they are not flexible enough. Then, I decided to write coding by myself. But the first problem is - how to write the coding for client connection? To make maintenance easy, I would like to place those connection code in a class file instead of hard-coding each connection details in my JSP or Servlet page.
    Question 1: Through the examples I search in my JDeveloper (Candidate 2) directory, found a file TestClient.java in the \BC4J\samples\Caching\src\demo directory with the following codes:
    // Create an instance of the application module by name, using local mode
    String _am  = "demo.DemoModule"; // Fully-qualified application module name
    String _cf  = "DemoModuleLocal"; // Configuration name for connection info
    ApplicationModule am = Configuration.createRootApplicationModule(_am,_cf);
    // Find the Managers view object by name in the application module
    ViewObject mgrVO = am.findViewObject("Managers");
    // We're done with the AM instance, so release it
    Configuration.releaseRootApplicationModule(am,true);
    Is it for testing only or really useful for the production environment? Am I doing the right thing if i use such method to establish my web client connection? What's the pros and cons for using this method? Any other better alternatives?
    Question 2: As I know BC4J automatically takes care of connection pooling as a default manner since version 3.2. Can I still use the following statement
    session.setAttribute("user_name", user_name); //Set session attribute
    String user_name = (String) session.getAttribute(user_name); // Get session attribute
    to capture and assign client session correctly for individual clients?
    Question 3: What codes should I use to achieve 'Transaction' update, which assembles the coding as follows:
    Connection.setAutoCommit(false); //disable auto commit
    connection.commit();
    connection.rollback();
    connection.close();
    Thanks for answering!!!

    Question 1: Through the examples I search in my JDeveloper (Candidate 2) directory, found a file TestClient.java in the \BC4J\samples\Caching\src\demo directory with the following codes:
    // Create an instance of the application module by name, using local mode
    String _am  = "demo.DemoModule"; // Fully-qualified application module name
    String _cf  = "DemoModuleLocal"; // Configuration name for connection info
    ApplicationModule am = Configuration.createRootApplicationModule(_am,_cf);
    // Find the Managers view object by name in the application module
    ViewObject mgrVO = am.findViewObject("Managers");
    // We're done with the AM instance, so release it
    Configuration.releaseRootApplicationModule(am,true);
    Is it for testing only or really useful for the production environment? Am I doing the right thing if i use such method to establish my web client connection? What's the pros and cons for using this method? Any other better alternatives?The Configuration API (createRootApplicationModule, releaseRootApplicationModule) will work. However, please note
    that it is intended for java clients that will hold an ApplicationModule reference for a long duration. The BC4J web
    frameworks (represented, for example, by the ApplicationModule and ReleasePageResources tags) all use the
    SessionCookie interface to acquire/release ApplicationModule instances on a per request basis. This will allow
    better scalability. Please see the pooling sample / documentation / javadoc for more information about using these
    APIs. The pooling sample servlet is located in \BC4J\samples\Pooling\src\demo\TestPoolServlet.
    Question 2: As I know BC4J automatically takes care of connection pooling as a default manner since version 3.2. Can I still use the following statement
    session.setAttribute("user_name", user_name); //Set session attribute
    String user_name = (String) session.getAttribute(user_name); // Get session attribute
    to capture and assign client session correctly for individual clients?BC4J will not interfere with your use of the HttpSession context. How do you intend the "user_name" to be used? Do
    you intend it to represent the DB user, JAAS user, etc. If you intend it to be used as the DB user you will need to declare
    the "user_name" to BC4J. Please see:
    http://technet.oracle.com/products/jdev/howtos/bc4j/howto_dynamic_jdbc.html
    Question 3: What codes should I use to achieve 'Transaction' update, which assembles the coding as follows:
    Connection.setAutoCommit(false); //disable auto commit
    connection.commit();
    connection.rollback();
    connection.close();ApplicationModule.getTransaction().commit();
    ApplicationModule.getTransaction().rollback();
    If you are using the Configuration or SessionCookie APIs, as mentioned above, then the connection lifecycle will be
    managed for you. So, you should not need to invoke connection.close().
    Thanks for answering!!!
    Hope this helps.
    JR

  • Help req for check customer table maintenance with XD02 if not throw error

    hello ABAP GURUS,
    check customer of the table maintenance with XD02 if not throw error i have given the codition for passing the values in the table but before that it has to check whether the customer i am passing in to the table is a customer from xd02.Here whatever no i am passing it is accepting it should not happen, but when i give the customer which is not a customer it should not accept but it has to throw the message as 'customer does not exist.Its urgent please help me
    TYPES: BEGIN OF TY_KNVI,
    KUNNR TYPE KUNNR,
    TATYP TYPE TATYP,
    TAXKD TYPE TAKLD,
    END OF TY_KNVI.
    DATA : VALIDFROM TYPE GUEBG,
    VALIDTO TYPE GUEEN.
    DATA : IT_KNVI TYPE STANDARD TABLE OF TY_KNVI,
    WA_KNVI TYPE TY_KNVI OCCURS 0 WITH HEADER LINE.
    DATA : V_NAME TYPE SYUNAME.
    SELECT KUNNR
    TATYP
    TAXKD
    FROM KNVI
    INTO TABLE WA_KNVI
    WHERE KUNNR = YYV_CFORM-KUNNR
    AND TATYP = 'ZCST'
    AND TAXKD = '1'.
    V_NAME = SY-UNAME.
    YYV_CFORM-ENTEREDBY = V_NAME.
    IF SY-SUBRC NE 0.
    MESSAGE E000(E4) WITH 'Please change the tax classification of ZCST as' '1' ', in Sales Area Data'.
    ENDIF.
    I have used the following code to enter the data into the table maintenance it is working fine and throwing the error when the tax type is not the one which i have given in the select statements but the problem is when i have given the customer no which is not there in the XD02 tcode, it is accepting and showing the error message as MESSAGE E000(E4) WITH 'Please change the tax classification of ZCST as' '1' ', in Sales Area Data'. now i have to check the customer no from XD02 and if it is existing in that tcode it should allow to save in the table maintenance otherwise throw a message as the 'Customer no does not exist, this I am unable to write so how can i check please help me .
    thankx in advance.
    Edited by: soni khadary on Apr 22, 2008 7:55 AM

    Hi Kelly,
    I guess <wa_tab>-handle_style is of type lvc_t_styl therefore you can do the following:
    ls_edit-style = cl_gui_alv_grid=>mc_style_enabled.
    "I assume you know your non-key fields' names so you can use subrotuine to perform update on each of them
    ls_edit-fieldname =  'First field name' .
    PERFORM update ls_edit.
    ls_edit-fieldname =  'Second field name'.
    PERFORM update ls_edit.
    ls_edit-fieldname = 'Third field name'.
    PERFORM update ls_edit
    FORM update USING fs_edit type lvc_s_styl.
    field-symbols: <style_tab> type lvc_t_styl,
                         <style_wa> type lvc_s_styl.
    LOOP AT <tab> ASSIGNING <wa_tab>.
       if e_row = sy-tabix .
         "get you style table
         assign component 'HANDLE_STYLE' of structure <wa_tab> to <style_tab>.
         "as <style_tab> is typed fully you can read the row you are interested in
         read table <style_tab> assigning <style_wa> with key fieldname = fs_edit-fieldname
         if sy-subrc = 0.
           "update this entry
            <style_wa> = fs_edit.
    *        modify table <style_tab> from <style_wa>. 
         endif.
       endif.
    endloop.
    endform.
    Note!
    Though, this should work, the use of RTTI as Uwe suggested would be best practise approach as far as dynamic programming is concerned. Anyhow it is still up to you which one you pick.
    Regards
    Marcin
    I noticed now that this line is not necessary
    modify table <style_tab> from <style_wa>. 
    as we simply are working with field symbols, so changes made to <style_wa> are already visible in that table <style_tab>.
    Edited by: Marcin Pciak on Mar 15, 2009 12:44 PM

  • How to create an alias for a custom command line with paramters

    Is it possible to create an icon that runs a terminal command line ?
    What i want to do is start firefox with a specific profile. In terminal this is done by using Firefox -P [profileName]
    How can I put this in an alias (or something else) ?
    I tried creating an alias that changing the original but it won't let me insert a command line.
    Any help ?

    In my .profile this works: alias f="/Applications/Firefox.app/Contents/MacOS/firefox -P doug"
    for starting under my profile. Make sure you run source ~/.profile if you add an alias to .profile
    Starting default FFox profile is /Applications/Firefox.app/Contents/MacOS/firefox -P swxazqvy.default
    And for Desktop icon to start whichever profile, open Script Editor and paste with proper changes(and save as an app(maybe to Desktop again?) :
    do shell script "/Applications/Firefox.app/Contents/MacOS/firefox -P doug"
    And you can make an executable with icon in a bash script with above and chmod u+x it and save to Desktop too.
    Message was edited by: doug pennington

  • One solution for Apple TV losing connection to its iTunes Library

    In 2012 I bought an Apple TV3 to let me use the AirPlay features of my New iPad with my HD TV. All worked fine and still does. Later in 2012 I subscribed to Netflix and enjoyed streaming movies to my HD TV via the Apple TV. Having had such a good experience with it so far I bought another for our bedroom TV and another for a relative, hoping they would have the same great experience with it.
    Both of my Apple TV units at my house have worked flawlessly since installing them. We can start watching a Netflix movie downstairs then go upstairs and carry on where the movie left off.
    At my relative's house the experience was not so flawless and has resulted in about 2 months of frustration but happily their AppleTV3 is now also working as expected. It has been quite a journey to get to this point and had a surprising solution.
    I am the 'go-to' person in my family for these things so I installed the Apple TV for my relative.
    My relative has a Windows XP (SP3) PC running the latest iTunes (11.0.2), a BTHomeHub 2 router, connected by WiFi to the Apple TV. The PC was connected by ethernet cable to the router. I installed the Apple TV, set up the hdmi connection to the HD TV, connected it to the WiFi network, upgraded to the latest iTunes on the PC, added the Apple ID for Home Sharing to iTunes and the Apple TV and could connect to the iTunes library on the PC, all good so far. I could play video or music or podcast or view photos from the iTunes library on the PC but after a short time (a few minutes or so), if I tried to play a different video or music track the I would get the familiar spinning icon and the Apple TV would not play the media file. Often the Apple TV would still show the contents of the iTunes library but would not play anything from it. When it was in this state it was still possible to play iTunes Trailers or Purchased content or a Youtube video or display photos from my library. This proved it was still connected to the internet and to some extent my library on the PC because it could display photos.
    Initially I thought it was a WiFi problem as that was how the Apple TV was connected to the router. So as I already had a Powerline ethernet link running from the router to the TV for the Humax Freeview box for the BBC iPlayer, I ordered a small network switch to share the Powerline ethernet cable with the Apple TV. However the same drooping connection problems were apparent. I tried changing the QoS settings on the Powerline link, tried to prioritise TCP or UDP or both , but no improvement. I decided to abandon the Powerline link in case it was 'too slow', perhaps that was the issue.
    I tried one of the Apple TV units from my house, where they were working fine and I got the same problem, at my relative's house it behaved like their unit, it would connect play a movie (all the way through if we let it) but after a few minutes if trying to play something else it would not play anything further. I tried their Apple TV at my house and it worked there, so the unit was not at fault.
    At various times while troubleshooting these problems I have unistalled iTunes, reinstalled it, uninstalled Bonjour, reinstalled it (it comes with iTunes), searched the registry and cleaned it (Warning: do this at your own risk as you risk destabilising Windows), I have tried disabling my firewall on the PC and/or on the router, uninstalled the Antivirus / Firewall software (Norton) on the PC, I have added the Ports required for the Apple TV to my router and firewall software, I have read many, many forum posts about what has worked for other people and I tried them all in various combinations.
    I decided having tried the above that the problem must be the Windows PC, so I swapped it for a few days with a laptop, connected wirelessly to the router. I had an iTunes library on the laptop so I shared it with the Apple TV and stopped iTunes running on my relative's PC.  For a few days it actually worked, the Apple TV would play one movie/music track and I could select another and play it after a few minutes, a partial solution had been found except the laptop was needed elsewhere and I wanted the Windows PC to be the source for the iTunes library. I briefly considered suggesting they should buy a modern PC or Mac as their Windows PC was around 9 years old, may be that was the problem? This would have cost around £400+ and was out of the question. Fortunately I had a spare PC and I decided to swap it with the Windows PC, it was only a couple of years old and as such it must be 'better' I thought. Swapping one PC with another and transferring e-mails and documents etc. took quite a few hours but it was done. I uninstalled iTunes, reinstalled it and set up the home sharing again. This second Windows PC was running XP (SP3) and Norton 360 Firewall/Anitvirus software. I checked that after installing iTunes the Program rules in Norton were allowing the TCP and UDP communications expected by the Apple TV, I noted these were not specific ports but all TCP and all UDP communications were allowed. All of this met the recommendations that other posts had suggested. I tried it with the Apple TV but no, exactly the same problem, the iTunes library could not be found after a few minutes.
    I found that if I restarted the Apple TV it would connect and play a file (movie/music etc) but if I played an iTunes trailer or just waited a minute or so then it would lose the connection. Another symptom would be when I landed on the 'Compters' icon it would tell me to 'enable home sharing on the PC with this Apple ID' , which I had already done.
    If I tried playing via the Apple TV while selecting tracks from within iTunes on the PC, then sometimes the AirPlay icon was present or not present, sometimes worked and would then always not work until I restarted at least iTunes and the Apple TV, if not also the router or PC, whatever I tried it would not result in a connection between the Apple TV and the PC that would survive more than a few moniutes at a time.
    Having swapped the Windows PC hosting the iTunes library with another I swapped the Apple TV again with one from my house, again same behaviour. So this suggested the problem was the BTHomeHub router as that was the only bit of hardware not exchanged. I compared its settings with the same unit at my house, I tried forwarding ports, I tried chaging the security from the default 'WPA & WPA2' to WPA or WPA2, still no solution. I tried reducing the default WiFi connection protocol from 802b/g/n to 802/b/g. I tried variations of all the other possible settings that could be changed but in the end set them to match the ones at my house. Still no solution. I considered buying an Airport Extreme or similar to link that via an ethernet cable to the router and enable it to be the WiFi access point for the Apple TV. This would have cost around £80 similar to the cost of the Apple TV itself, so was also dismissed as an idea.
    I decided to restore the router to factory settings, this was done and I set up the WiFi connection again to the Apple TV, still no solution, same behaviour on the Apple TV. I decided it must be  a problem with the WiFi so I tried a direct ethernet cable trailed through the house from the router to the Apple TV to eliminate the WiFi involvement, that would have to be the answer, wouldn't it? No, same problem.
    I discovered some useful diagnostics along the way that are somewhat techie but worth persevering with as they could be useful for diagnosing what the problem could be. Find out on your router what the IP Address is for your computer that is hosting your iTunes library and the IP Address for your Apple TV. The IP address is essential for either device to connect with each other or the internet. The Apple TV IP address can be seen via Settings/General/Network, it has the form like '192.168.1.69'  and for the PC it was '192.168.1.80', the values don't have a particular significance but the last digits after the 3rd dot will be different for each device.
    On the PC (or Mac), open a Command (PC) or Terminal(Mac) prompt and try to 'ping' the Apple TV to see if you get a response
    e.g.
    c:\ping 192.168.1.69
    or
    c:\ping apple-tv
    You should get a response indicating the number of milliseconds it takes for the 'ping' to be returned to the PC from the Apple TV , this will show that the PC can connect to the Apple TV, if it does not get a response then you should check that the PC and Apple TV are connected to the same network (either wired or wifi). You must be able to get a successful ping for the connection between the PC and the Apple TV to work at all.
    Another diagnostic is to check the network status on the PC (or Mac)
    e.g.
    c:\netstat -an
    This will show all the current TCP/UDP connections and also the local and remote IP addresses and ports. Look for the IP address of the Apple TV in the third column, there will be many rows returned so just concentrate on the rows with the IP addressses of the PC and the Apple TV
    e.g.  look for rows like the following:
    TCP 192.169.1.80:3689  192.168.1.69:49123 ESTABLISHED
    UDP 192.168.1.80:5353  *.*
    UDP *.123                     *.*
    TCP Port 3689 is used by the Apple TV to communicate with iTunes for playing content. This connection is essential, there may be more than one 'established' connection to the remote Apple TV from the local PC.
    UDP Port 5353 is used by the Apple Bonjour service to send multicast communications between iTunes and any iOS devices on the same network, such as the Apple TV, again it is essential.
    Port 123 is used by Apple products to obtain the date and time, the UDP row above shows that any local IP Address can communicate with any remote IP address on the router's network and provide it with date and time information. 
    If your firewall software on the PC is blocking any of these ports then the 'netstat' command is useful to see if you need to unblock any. In my experience, this port unblocking was not necessary as when I installed iTunes, the Norton software automatically set up appropriate rules for the iTunes program, and opened the required TCP and UDP communications as iTunes needed.
    Likewise, on the router itself, I have the UPnP setting enabled and this allows software like iTunes and Bonjour to traverse the router's firewall without it being necesssary to explicitly set the ports to be forwarded.
    If I started the Apple TV, and ran the 'netstat -an' command over the next few minutes I could see the number of rows for the Apple TV diminish, and this was a symptom of the dropping connection problem.
    Ultimately having replaced the Apple TV with another 'working' one , swapped the PC, restored the router to factory defaults, disabled the Windows or Norton firewall, tried ethernet and WiFi connection between the router and Apple TV it struck me that the only component I had not  considered was the insignificant ethernet cable linking the PC to the router. This has been present since the router was installed for the original PC around 4 years ago. But surely this was how the original PC and the swapped in PC were getting to the internet quite normally and successfully? Also this was how the Apple TV was accessing the PC via WiFi then via the router through this ethernet cable, there was no way it could be the cable, cables don't allow a connection for a short time and then cause a timeout can they?. Thus, confused, and with all other avenues explored, I removed the cable between the PC and the router and enabled a WiFi connection from the PC to the router. After restarting the PC, Router and Apple TV, just to be sure, I tried the Apple TV again.
    I could play some music on the Apple TV from the iTunes library, I could play it for a minute or so and then go to movies and play a movie from the iTunes library. I tried to play an iTunes trailer, some YouTube videos, these worked as usual. I then went back to the library and yes, I could play another music track or another movie. I forced the Apple TV to 'sleep' via Settings/General/Sleep Now and tried again, I woke it up and could play any music or movie from the library. Elated, I went out for meal with the family, nervously hoping throughout the meal that the solution had been found. After a couple of hours we returned, woke up the Apple TV and yes, oh yes!, it would connect with the library and play a succession of music or videos without seeing any dropped connections. Several hours later I could wake up the Apple TV again and select any content from the iTunes library on the PC and play it, finally the unit is behaving as I would expect.
    This solution may not apply for all, but it worth following all of the components in the path between the Apple TV, router, computer (either PC or Mac) and the iTunes library and checking that each is able to commmunicate successfully and over a period of time reliably so that the Apple TV can perform as flawlessly as it is capable of. 
    Don't, as I did expect the solution to involve a complicated series of special settings of ports or communications protocol changes. Do perform a clean install of iTunes and keep it updated, do keep Firewall settings simple and let the settings be default settings, do rely on UPnP (Universal Plug and Play) on the router. Let the router select which channel it wants to use, it will select the channel with least interference...and check out that insignificant ethernet cable if you have one. It might work fine for general communications from the computer to router to the internet but it can be a source of connections dropping on the Apple TV!
    My relative is now a happy Apple TV user too.

    Useful to watch what is happening to the TCP/UDP connections when the Apple TV is connected to iTunes and when it is actually playing some media from iTunes and when it stops playing.
    To see this, use the Network Statistics command 'netstat' from a Command prompt (Windows PC) / Terminal Window (Mac):
    e.g. for Windows:
    c:\netstat -an 5
    This repeats the netstat command every 5 seconds, use Ctrl-C to quit the command. (Use 'netstat -h' for help with this command)
    While iTunes is running there will be a number of TCP records displayed for the computer's IP address using port 3689, showing at least 3 ports in use for the Apple TV's IP address.
    i.e.
    TCP host_ip:3689 apple_tv_ip:49187 ESTABLISHED
    TCP host_ip:3689 apple_tv_ip:49196 ESTABLISHED
    TCP host_ip:3689 apple_tv_ip:49255 ESTABLISHED
    When it is playing content there are more connections established, some of these rows will gradually disappear when the media file stops playing. These addional TCP records show iTunes using different ports from 3689, but only while media files are being played.
    When a video file is played, (on this Windows PC at least) the iTunes host is using ports 4463 and 4464, with the Apple TV using port 7000. When playing a music track or podcast, the iTunes host is using port 4472 or 4489 and the Apple TV is using port 5000.  
    When the media is playing, the fourth column returned by the 'netstat -an 5' command : 'State' shows as 'ESTABLISHED' and shortly after the media file is stopped playing it shows as 'TIME_WAIT' until the record disappears after a minute or so.

  • Extend of BW connection  with R/3

    Hi,
    I am looking the way for finding the BW connection with R/3.
    This is for exploring an existing BW<-> R/3 system and making a report of the extend at which BW is connected to R/3 in varoius modules FI/SD/MM. How do I explore this and what all details (Technical term is CIs [configurable Items]) - need to be collected
    Thank you very much
    Sani

    Hi,
    I am working on ABAP-XI and now I want to move in to BW stream.
    I am looking for Certification in NetWevaet2004s-BI7.0. through SAP / Seimens.
    Can any body tell the approximate Cost of Certification on BI7.0 in India as well as in USA also.
    Bye
    Satish Kumar Reddy

  • HT201210 no connection with itunes,app store, i cloud

    i have update my ipad to ios 6 and after this i can't get any connection anymore with any app where i need my apple id for.
    it says nog connection with itunes store.
    what can i do about this?
    btw wi-fi is working

    I am having the same issue.  Are you having problems accessing webpages?  Did you get to communities from you ipad or another device? 

  • Looking for the Toshiba bluetooth SDK (with the HDP profile)

    Hi,
    I have requested the bluetooth SDK 2 months ago, and I have not answer.
    I would like to develop an application (for academic purposes) to connect with a A&D blood pressure monitor using the Thosiba bluetooth stack and the HDP profile. Has someone developed any similar application? Is there any person with the Bluetooth SDK that I can contact ???
    Thank you,
    Santiago

    Hi sperez15,
    I agree with MasterG. You have to contact Toshiba directly to obtain the Toshiba Bluetooth stack SDK. Just write an email and follow the link posted by the previous user then you will get it. :)
    Also check some similar threads here about Bluetooth maybe they are useful for you.

  • Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE).

    I have a 3 node cluster that has replica setup to replicate to another cluster off-site.
    Suddenly one of the servers is not replicating with the error:
    Hyper-V could not replicate changes for virtual machine 'machinename': The connection with the server was terminated abnormally (0x00002EFE). (Virtual Machine ID CC0FD4CC-F9B7-4C68-ABE8-B7D52A87899F)
    All other servers are replicating fine so there cannot be a permissions or connectivity issue between the 2 clusters.
    This server has 2TB of data so I'd rather not have to start the replication again.
    Does anyone have any pointers?
    Thanks.

    Hi drensta,
    Based on my knowledge , "hyper-v replica broker " is needed for failover cluster replica .
    Here is a link for "Why is the "Hyper-V Replica Broker" required?"
    http://blogs.technet.com/b/virtualization/archive/2012/03/27/why-is-the-quot-hyper-v-replica-broker-quot-required.aspx
    Hope this hleps
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • ACS loses connection with AD occasionally after upgrade from 5.2 to 5.3.0.40

    ACS had been integrated with Active Directory before ACS upgrade to 5.3. After the ACS 5.3 upgrade users aren’t able to login to AAA devices occasionally. Error message is:
    {AuthenticationResult=Error; Type=Authentication; Authen-Reply-Status=Error; }
    24429 Could not establish connection with Active Directory
    At the same time, when this issue occurs, ACS connection to AD works fine (checked with Users and Identity Stores> External Identity Stores > Active Directory “Test Connection”)

    I had the same problem, I opened a Cisco TAC case and my issue was resolved.
    Sent: Tuesday, 14 August 2012 9:58 AM
    Subject: RE: 622739355 HelpDesk#SVR328332-2 : Troubleshoot Cisco ACS 1121 v5.3 With Windows Active Directory
    Hi Ramraj,
    Thanks for the link to the article, but from what I’ve seen in the logs I’m not sure that we’ve got the same root cause to the issue.
    From the ACSADAgent.log files I can see log messages like:
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG network.state NST: SniffList: postfailsort=mykulad11p.cssc.dksh.net
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.kerberos.adhelpers Encryption (id 1) is not supported by KDC. Try next in the list
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.osutil Module=Kerberos : KDC refused skey: KDC has no support for encryption type (reference base/adhelpers.cpp:216 rc: -1765328370)
    Aug 11 11:10:56 CSSC-TPM-DC-ACS-1 adclient[5524]: DEBUG base.adagent Unable to refresh computer credentials: KDC refused skey: KDC has no support for encryption type
    This lines up with the error message that we see in the TACACS+ Authentication logs:
    24493 ACS has problems communicating with Active Directory using its machine credentials.
    I have come across a NETBIOS limitation (it’s not an ACS bug, but a bug has been filed for tracking and documentation purposes) that prevents two ACSs from being connected to Active Directory at the same time if the first 15 characters of their hostnames are the same. The bug ID is CSCtj62342 and its externally visible details are available here: http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtj62342
    The hostname of the primary ACS is : MYMY-TPM-DC-ACS-1
    The hostname of the secondary ACS is: MYMY-TPM-DC-ACS-2
    From the hostnames, we can see that the first 16 characters of the hostnames are the same. What this means is that once the primary is connected to AD, after some time passes (this will depend on when the secondary goes an talks to AD) the secondary will lose its connection to AD and any authentications hitting the secondary will fail with the same error: 24493 ACS has problems communicating with Active Directory using its machine credentials.
    To resolve this issue, the hostnames of the ACSs will need to be changed so that the first 15 characters of their respective hostnames are not the same. Please keep in mind that this is a NETBIOS limitation and not a software bug.

  • How Do I Use a SINGLE Custom CSS for My Project?

    How do I set a single CSS for a project?
    Currently, I have linked (I checked, they are actually linked) FM files. The project is Responsive HTML 5 Single Source Layout. It is set up this way:
    Project Files
    Each FM file has a folder that contains a CSS, an FPJ, any baggage (PNG, for example) and an HTM.
    So, for my project, I have 31 such folders.
    Above them is RHStyleMapping.css.
    That's it
    To map my project to a custom CSS, I did this:
    1) Created the custom CSS (let's call it TheSingleCSS-sb01.css) and put it in the same location as RHStyleMapping.css.
    2) Right-clicked Responsive HTML5 (Primary Layout) in the Single Source Layouts pane.
    3) Selected Properties. The Responsive HTML5 Properties dialog box opens.
    4) Click Content, select  the Apply to all Topics check box, select CSS, and choose my CSS, TheSingleCSS-sb01.css.
    5) Click Save and Generate. Generating happens.
    6) When prompted, click View Result.
    7) Double-click one of the resulting topics, and choose the HTML tab.
    8) Notice the following CSS files are referenced, NOT the one I want:
    <link rel="stylesheet" href="Configuration_ChangeWorkflow.css" type="text/css" />
    <link rel="stylesheet" href="..\..\RHStyleMapping.css" type="text/css" />
    <image>
    So:
    1) How can I replace 32 individual CSSes with one single custom CSS?
    2) Also note that Project Manager does not display my custom CSS, even though it is in the same location as RHStyleMapping.css and referenced in the Properties dialog box.
    Thanks all,
    Sean

    Hi, so as I mentioned before, I have used Apply to all and this doesn't work. The resulting HTML still uses a specific CSS for that one HTML file.
    1) I put the CSS I want to use, Sean01.css, in the top level of my project using Windows Explorer.
    2) I Save and Generate.
    3) But, my settings for styles in the CSS are not used. For example, FM_GlossaryDefinition is defined with a 0 left indent but actually uses a 144pt indent (that mirrors the print FM document and that I do not want).
    4) And, you can see from the actual HTML, that the Sean01.css file that I applied to all topics (see the first image) is not referenced. What am I doing wrong?
    What am I doing wrong? Again, these are imported FM files; this is not linked.
    Thanks,
    Sean

  • How do you connect with a freaking person?  I have paid all of this money for Photoshop and Illustrator since July 2014 and can't access the programs.  This is a rip off?  Who can help me?

    How can I connect with an Adobe representative to assist me with this Creative Cloud and the software that I paid for since July 2014 and can't use it on my computer? 

    You will likely need to wait until the weekend passes but your options are chat or phone...
    800-833-6687 (US daytime only 5AM-7PM PST, Monday-Friday)
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )

Maybe you are looking for