Display problem from different domain

Hi
I am not able to make my display(DISPLAY variable). When I m exporting the display variable from the same domain as the linux box is present. It is working fine but when I trying to export the DISPLAY variable from different domain and use the GUI. it is throwing error. Please help. Also I am able to ping from my window machine to Sun Solaris
operating system: sun solaris 9 (5.9).
Error Message:
(gnome-calculator:5511): Gtk-WARNING **: cannot open display:
Can anybody tell me how and what all we need to check to configure DISPLAY.
I mean the software required and firewall configuration.

I trying to export the DISPLAY variable from different domain and use the GUI.Different domain or different network?
I am able to ping from my window machine to Sun SolarisPing means nothing in this case because:
1. ICMP =! TCP
2. You need to have allowed connection from Solaris to your local machine (port 6000) and ping is not capable to check that.
3. You need to check this on/from server (Solaris)
Or you can use X11Forwarding so you don't need to allow connection as mentioned above.
I mean the software requiredDo you mean client SW or what?

Similar Messages

  • Displaying image from different domain in an applet

    can anybody tell how to load & display an image from a different domain. the image is being generated dynamically on that server so that i cannot save it.

    You should sign your applet to be able to do it.Isn't that normally only necessary for Security
    relevant procedures, like locally reading and writing
    (saving) files? ( -> So, is that also true (sec.
    rel.) for "donwloading" from "different domain"
    (URL)? )Yes, it is a security violation. Maybe arguably not as bad as local file system access, but it could still be a problem. The main problem would be turning an unsigned applet (therefore from an unknown source) into a DOS application which starts pounding on all sorts of other servers, including the local host.
    As to the problem, you could have a servlet on your host which gets the image from the other host for you. The servlet could be very generic with the applet passing all the info needed to get the file for it.

  • Mapping users coming from different domain in AD

    HI,
    We have configured vintela SSO which is working.Now we are trying  to add another domain but it has been unsuccessful.
    We have imported the users coming from other domain in CMC->AD, and UseFDQNDirectoryForServers parameter in registry.
    The issue is our complex krb5.ini errors as "cannot find kdc for realm" for the user account coming from the other domain.The existing domain kinit is successful.
    Please help in resolving this issue!!! We need to have users coming from different domain to use vintela SSO.
    Thank you.

    well you're mixing things up a bit.
    The usefqdnfordirectoryservers is used to map in groups. If the groups show up as well as the users that piece should be complete.
    the krb5.ini is for logging in users manually, it must conatin the KDC for every domain that may contain users that need to log into BO. It also must have a KDC or capath entry to define all the parent domains as well (even if they do not have members that need to login. This is how the krb5 is used to verify transitive trusts. Then all users that are not in the default domain must logon as username@ DNSDOMAIN.COM where the DNS domain is entered in all caps aqnd represents the FQDN of theidomain the users bewlong to. Now if not logging in manually this should be a big problem.
    So for SSO (vintela anyway) this process is automatic, although you may want to configure vintela with site information so it doesn't randomly use all your DC's Site can be set following the steps at the end of business objects note 1261835 (complete and vintela only editions).
    In order for vintela to work properly the value entered in CMC > Authentication > Windows AD > service principal name must = an SPN thet was created on the account that is running the SIA/CMS
    Regards,
    Tim

  • How to grant access to sharepoint for the user from different Domain

    Hi All
        I need to grant access to user from different domain. 
        Where I can able to view the users in people picker (different domain).
    Thanks in Advance.
    Raj

     Hi
    Trevor Seward
    Sorry to disturb
    you again.
      I am trying to restrict user from search from other domain, say we have domain A and Domain B, where I am trying to restrict all the user from domain B (Search users)for a site collection. I have found couple of stsadmin command to do so. but none
    of them works. Below are the commands I have tried
    STSADM.exe -o setproperty -pn peoplepicker-searchadforests -pv "domain:<Name>.domain" -url "http://Site URL"
    stsadm -o setproperty -pn peoplepicker-searchadcustomquery -pv “(canonicalName=<Name>.domain*)” -url "Site URL"
    we have two way trust.
    Can you suggest any solution.
    Thanks 
    Raj

  • Unable to load swf from different domain through html wrapper in Chrom

    Hi All,
           I am trying a embed a swf from different domain. My html wrapper was in one domain and swf was in another domain. I have embedded the swf into the html wrapper. When i run the html file it is loading the swf in firefox and working fine. But when i try to run the same html in chrom or IE the swf is aborted. I have crossdomain.xml file in both the servers which is also allowing both the domains. I was not able to figure out the issue. Can anybody help on this.
    regards,
    Jayagopal.

    Are you getting any errors or warnings?

  • Loading modules from different domain

    when I load modules from the same location where is main application, everything is fine. But when modules are loaded from different adrress i got following error:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at mx.utils::LoaderUtil$/isRSLLoaded()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\uti ls\LoaderUtil.as:525]
              at mx.utils::LoaderUtil$/http://www.adobe.com/2006/flex/mx/internal::processRequiredRSLs()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\utils\LoaderUtil.as:259]
              at mx.core::FlexModuleFactory/getRSLInfo()[E:\dev\4.5.1\frameworks\projects\framework\src\mx \core\FlexModuleFactory.as:582]
              at mx.core::FlexModuleFactory/update()[E:\dev\4.5.1\frameworks\projects\framework\src\mx\cor e\FlexModuleFactory.as:470]
              at mx.core::FlexModuleFactory/moduleInitHandler()[E:\dev\4.5.1\frameworks\projects\framework \src\mx\core\FlexModuleFactory.as:819]
    any ideas what might be wrong?
    thanks for any help in advance

    This is a link to testing application:
    http://michalnpe.homeip.net:55001/bin-release/LoadModuleApp.html
    you can see source code of this app.
    Let's say we want to run module from different domain.
    so insert following address for crossdomain.xml and module (into TextInput in the applicataion above) .
    http://a2s.pl/crossdomain.xml
    http://www.a2s.pl/npe/softmgr/Michal/wymiana/TestModule.swf
    here is the code that loads the module:
    protected function loadModule(event:MouseEvent):void
                                            testloader.url = moduleAddress.text;
                                            //testloader.loadModule();
                                  public function setup():void { // run before loading modules
                                            Security.allowDomain("*");
                                            Security.loadPolicyFile(crossdomain.text);
                                            var request:URLRequest = new URLRequest(crossdomain.text);
                                            var loader:URLLoader = new URLLoader();
                                            loader.load(request);

  • Calling a BSP from different domain

    Hi.
    I have a problem calling a bsp application. I am using bsp app. system for a logon screen(this is what’s causing the problem.) SAP is in the domain company<b>as</b>.com and the calling application is in the domain company.com.
    The logon screen is displayed but when users try to logon the logon screen just gets displayed again. I have found out this is because of the different domains and the cookie mysapsso2.
    When calling the same url from my machine everything works fine. Also if I try to bypass the system and logon directly to the bsp application (default.do) it works. The reason I’m using the system app. is to enable the users to change their passwords according to the rules in R/3.
    Does this make sense and does anyone have some ideas how to fix my problem?
    Regards
    Jon

    There is a pretty simple answer here - it just doesn't work.  This has to do with how the browser stores and sends cookies.  Cookies are only allowed to be passed within the same domain. This a protection that keeps a bad website from reading the content of cookies from other websites (potentially gaining sensitive information).
    There isn't too much that SAP can do about this since this is a mechanism enforced directly by the browser.

  • Grant access to users from different Domains

    Hi,
    Recently my company was merged with another. All users from my company are setup in our Domain (DomainA). Sharepoint is able to see the users in this domain and grant access to the users as well. When the merger happened, we created a Group (Test - Sharepoint)
    in our AD to add groups from other companie's domain:DomainB, totally different Forest. There is a two way trust setup between these domains. The group Test-Sharepoint is "domain local" and it is able to see the groups/users from other domain: DomainB.
    The other users are now able to access our sharepoint environment once access is granted to DomainA\Test-Sharepoint.
    Problem came when we applied Audience targetting around few web parts. The users from DomainB who are added as object in DomainA\Test-Sharepoint (group in DomainA) are not able to see the web parts that have audience targeting for this group. Someone
    suggested that AD groups should be Global or Universal but that is not our case. Most of the groups in our AD are domain local and SP is able to see the users within it.
    Please suggest how we can resolve audience targeting issue?
    Regards, Kapil ***Please mark answer as Helpful or Answered after consideration***

    My apologies, yes that is correct you'll have to use Domain Local in this case. http://technet.microsoft.com/en-us/library/cc755692(v=WS.10).aspx
    Actually what you'll need to do is not use Groups in your domain at all, as the users are Foreign Security Principals. Instead, use a group in the trusted domain, or attributes of the users you intend to target directly.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Can I use mp3 files from different domain as the feed?

    Hi..
    I have just created a new podcast here:
    http://artistsofliving.com/?feed=podcast
    I would like to submit the podcast to iTunes sometime soon...
    However, I'm wondering if they will reject it because the feed lives on 'artistsofliving.com', whereas I keep the media mp3 files on 'livinginthepresent.com'... a different domain.
    I own the mp3 content and both domains- I'm splitting the media from the website for bandwidth reasons.
    Is this ok? If this causes a rejection straight out is there a way to indicate that I own the material fairly?
    Thanks!
    -rich

    There's no problem about using media files from any source: the feed just has to reference them (the URLs have to be 'absolute' - i.e. including the http:// and the server name - even if the file is on the same server as the feed anyway). I don't see the fact that some files have different URLs leading to accusations of copyright breach.

  • I am not able receive emails from different domain, but i am able to get my self in same domain.

    HI ,
    I am not able receive email from different or external domain. But i am able send the emails to other domain, i can see that i receive. here is the problem if  i reply to that email . i am not able receive .
    I have checked the Receive connectors In the Default forntend  connector ,  Anonymous user was checked in permission groups.
    Can any one help me to get this issue resolve.
    Thanks,
    Kumar.

    Hi,
    Did you try the suggestions which mentioned above? What about the result?
    Niko Cheng
    TechNet Community Support

  • Line item display problem from table

    Hi experts......
    I am strucked up in my report  with a problem ,
    document no.(BELNR)  for corresponding bkpf has four line item  in BSEG table,
    BUZEI                      GJAHR  BUZEI   KOART  DMBTR           HKONT                                            
    9000000078     2006     1     S    200,600.00        0000500100     
    9000000078     2006     2     S    24,072.00          0000301500     
    9000000078     2006     3     S    481.00               0000300450     
    9000000078     2006     4     D    225,153.00        0000209800     
    My requiremet is that
    ========================
    when it goes inside the loop
    i want to display the belnr where Hkont  = '000500100'
    and koart = 'D', that will be 001 line item (buzei) and  0004 Buzei in this case.
    ie my output should be like
    ============================
    GROSS        NET
    200,600.00  225,153.00
    If i specify  and hkont = '000500100'and koart = 'D'. its not getting inside the select itself
    if i select without the where condition and hkont = '000500100'and koart = 'D' its going inside...
    Can you please help me out....
    My codings
    elect bukrs belnr  gjahr xref1 xref2  kunnr  buzei dmbtr hkont koart from bseg into corresponding fields of table it_bseg
                                              for all entries in it_bkpf
                                               where  bukrs = it_bkpf-bukrs
                                                      and belnr = it_bkpf-belnr
                                                      and gjahr = it_bkpf-gjahr
                                                      and hkont = '000500100'
                                                      and koart = 'D'.
    loop at it_bseg into wa_bseg .
       wa_final-kunnr = wa_bseg-kunnr.
       wa_final-xref1 = wa_bseg-xref1.
       wa_final-xref2 = wa_bseg-xref2.
        wa_final-DMbtr = wa_bseg-dmbtr.

    hi ...
    thanx a lot fo your reply,....
    thats wat i thought and was trying to do so.....
    and modified...can you please look in to the code....
    but wa_final-gross = wa_amount-dmbtr.
         wa_final-net = wa_amount-dmbtr.
    value is not getting populated ....i dont know the reason
    IF it_bseg[] is not initial.
    select  bukrs belnr gjahr dmbtr from bseg into corresponding fields of table it_amount
                                    for all entries in it_bseg
                                     where bukrs = it_bseg-bukrs
                                     and belnr = it_bseg-belnr.
    endif.
    if it_amount[] is not initial.
    select  kunnr  name1 LOCCO from kna1 into corresponding fields of table it_kna1
                                          for all entries in it_bseg
                                            where  kunnr = it_bseg-kunnr and
                                                   locco = pr_locco.
    endif.
    sort it_bseg by belnr.
    loop at it_bseg into wa_bseg .
       wa_final-kunnr = wa_bseg-kunnr.
       wa_final-xref1 = wa_bseg-xref1.
       wa_final-xref2 = wa_bseg-xref2.
    read table it_amount into wa_amount  with key belnr = bseg-belnr.
    if sy-subrc = 0.
    if wa_bseg-hkont = '000500100'.
    wa_final-gross = wa_amount-dmbtr.
    endif.
    if wa_bseg-koart = 'D'.
    wa_final-net = wa_amount-dmbtr.
    Endif.
    at end of belnr.
    Endat.
    Endif.

  • Planning for global service from different domain

    Hi....
    This is JEWEL from Bangladesh. I am very new in TechNet forum, so my advance apology if I have any improper language representation.
    I am working in a telecommunication company which on of the operating companies of largest Asian telco. company. Under this Asian telco. group there other telecom operators around Asia region with having different-isolated domain and Microsoft services (AD,
    Exchange, SharePoint, Lync, ADRMS etc.) in each. Now the group wants enrich the communication beyond the barrier of separated architecture while considering small scale change in solution. For example, we want to have global address book in each operator around
    Asia and also want have the office communication among each other telco. of the group (MS Lync), want to have document/library management through SharePoint service etc.
    I need help how to plan and move ahead for seamless and successful roll-out/deployment of the above requirement.
    Thanks with regards,
    Jewel   

    Following are some of the general suggestions which should give you some clues
    > we want to have global address book in each operator around Asia
    http://forums.msexchange.org/m_1800433276/mpage_1/key_/tm.htm
    > also want have the office communication among each other telco. of the group (MS Lync)
    http://social.technet.microsoft.com/Forums/lync/en-US/c2df50fa-6d96-4ef7-be29-ba259d7e301a/2domains2forests-2seperate-lync-servers-federation-and-edge-switch-question
    > want to have document/library management through SharePoint service etc.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/20ab9c73-ab38-47d0-a791-8f9004fbe1a4/move-sharepoint-farm-servers-to-another-ad-domain
    For Exchange, Lync and Sharepoint, there are dedicated forums... please post your application specific question there
    Lync 2010 and OCS - Planning and Deployment: http://social.technet.microsoft.com/Forums/lync/en-US/home?forum=ocsplanningdeployment
    SharePoint 2010 - General Discussions and Questions: http://social.technet.microsoft.com/Forums/sharepoint/en-US/home?forum=sharepointgeneralprevious
    Exchange 2010 Setup, Deployment, Updates, and Migration: http://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrdeploylegacy
    Regards, Santosh
    I do not represent the organisation I work for, all the opinions expressed here, are my own and posted AS IS.

  • Adobe Reader plugin forbids displaying PDFs from outside domains

    One part of web application is local digital signing  using activex component. But I want to display a PDF that gets signed  beforehand and after. Since documents can be quite large I would'n  really want uploading them and then again downloading for displaying.
    Therefore I wanted to embed a PDF using local path (eg. file:///) but Adobe throws "Access denied" error. I tried lowering Reader's security settings to minimum but it didn't help.
    Is there any way to embed a PDF with source ouside of the web application domain?

    Solved it. Problem seemed to have been a crashed Acrobat process. Just kill all Acrobat tasks in the task manager, reload the link in the browser and the Save button now works.

  • My Albums pages display incorrectly from personal domain URL

    Pages on my iWeb website, created using the My Albums template, do not consistently display all the individual albums; one or more, or even all may be missing.
    If I use the web.mac.com URL, e.g. http://web.mac.com/wpinnington/Photos/Holidays/Holidays.html the gallery pages always load properly; the problem only occurs when I use my personal domain URL, e.g. http://www.williampinnington.com/Photos/Holidays/Holidays.html.
    I have discovered a work-around, which is to:
    1) Create a new My Album page;
    2) Move individual photo pages into the new My Album page;
    3) Save;
    4) Move the individual photo pages back to the original gallery page;
    5) Save; and
    6) Republish
    I'd like to know what the problem is though, so I can avoid this tedious chore. The problem occurs in both Firefox and Safari, so is not browser related. Firefox Error Console says "Error: uncaught exception: Permission denied to call method XMLHttpRequest.open." Safari also reports "Error: Permission denied http://www.williampinnington.com/Photos/Scripts/iWebSite.js (line 504)". Line 504 reads "req.open('GET',url,true);req.setRequestHeader('X-Requested-With','XMLHttpReque st');if(req.overrideMimeType)"
    Can anyone shed any light on the root-cause of the problem? I assume there is a problem with the error handling in the iWeb code which creates the iWebSite.js file.
    Kind regards,
    William
    P.S. I will leave the example URL broken for 48 hours before I fix it, so you can see for yourself.

    If I use the web.mac.com URL, e.g. http://web.mac.com/wpinnington/Photos/Holidays/Holidays.html the gallery pages always load properly; the problem only occurs when I use my personal domain URL, e.g. http://www.williampinnington.com/Photos/Holidays/Holidays.html.
    I'd like to know what the problem is though, so I can avoid this tedious chore. The problem occurs in both Firefox and Safari, so is not browser related. Firefox Error Console says "Error: uncaught exception: Permission denied to call method XMLHttpRequest.open." Safari also reports "Error: Permission denied http://www.williampinnington.com/Photos/Scripts/iWebSite.js (line 504)". Line 504 reads "req.open('GET',url,true);req.setRequestHeader('X-Requested-With','XMLHttpReque st');if(req.overrideMimeType)"
    Because of security issues, XMLHttpRequest is not allowed cross domain request, this is to avoid cross domain scripting.
    So as long as you mask your domain, XMLHttpRequest will fail.

  • How do i display events from different calendars side by side and not on top of each other

    I must have something set up wrong on one of my calendars on my macbook pro 10.7. On one of the calendars, the events do not make space for an event from another calendar so I can see both events sidi by side in a week or day view. 
    When I view from the web icloud, it looks right:

    Hi Hotch,
    I have been having the exact same problem, however, I am not seeing your graphic. From your description, though, I can tell we have the same problem. This has only become a problem since migrating everything over to iCloud and since upgrading to Lion.
    Can anyone help us out there?!?!?!?!?
    ~todd

Maybe you are looking for

  • I dont have game options on my app store

    Hi, I'm trying to download some games from my iPad app store but I don't have the game options

  • (4.0.3. Windows) "rtl" page-progression in EPUB 3 OPF forcing CJK texts to align bottom

    (This applies to 4.0.3 Windows version as it works fine on a Mac) When you write a vertical CJK EPUB3 file(epubcheck-cleared) and set "page-progression-direction" element on OPF file to "rtl", the whole text aligns to bottom, making it unreadable. Al

  • Stand still at Forms 6

    Dear All, Hi, I was a d2k person untill 2 yrs ago. I have 4 years of exp right from forms 4.5 to forms 6. I have created thousands of reports some very complecated ones in this tenure. Took a break of 2 yrs. Now i see a lot has changed. Could somebod

  • CFFTP putFile timeouts after upgrading from ColdFusion 8 to ColdFusion 9.01

    CFFTP putFile timeouts after upgrading from ColdFusion 8 to ColdFusion 9.01 Important thing to mention is that Coldfusion 9.01 is 32bit and is installed on Windows Server 2008 which is 64 bit off course. When I try on ColdFusion 9.01 32 bit version t

  • Porblem with Dimensional modeling

    Hi everybody; I'm new in datawarehousing. I want to create a datamart about road accident. I have a very simple E/Rship mode : drivers 1,1 | | | 1,N | vehicules 1,1-------1,N-accient-1,N ------- 1,1- victime | 1,1 | | | 1,N | cause_accident My physic