Not able to access virtual machine applications in remote server.

Hi All,
I am using Oracle Linux server 5.6 - 64 bit and installed all IAM 11gr2 stack and Oracle data base. I am not able to access the any Identity Management applications in remote servers (able to access in local virtual machine) but i can able to access Database Enterprise Manager application which is running in the same machine. If any one can help me on how to fix the issue really appreciate your help.
Thanks
Kiran Pokuri

It should work with adapter in bridged mode and firewall down. (you should however check and confirm this is the case)
A reason for why local client connections to the server s/w works, and remote ones not, can be due to IP/port binding. If the server binds its listening port on an IP (such as localhost) that is not accessible to remote clients, those clients will not be able to connect.
Have a look at what IP address(es) the listening port(s) are on: netstat -l -t -p
You should see a *:7001 entry for the relevant server process - meaning that it used INADDR_ANY when it did the port bind (binds port to all existing and future IP addresses of that platform).
If not, it means the port bind was done to a single specific IP address - and that the clients  need to be able to route and connect to that specific IP in order to get a connection with the server process.

Similar Messages

  • Not able to access javaFx charts from a remote system after using ext. jars

    We are facing following issue. Any recommendations to resolve these issues are highly appreciated.
    1. Not able to access javaFx charts from a remote system (More details at the end of mail).This is high priority requirement as we have a web based reporting application and users access it over our static IP address.
    We are using Java Fx charts in our web application where we built jnlp and jar files in a separate fx project and kept jar and jnlp’s inside our web project.
    It is working fine when we did not used any external jar files and remotely it is accessible. But when we used external jars our project is running on local
    system but remotely it is not working due to some path settings. We modified jnlp files where entry of jar files exists and modified the jar path as per our
    project. But still it did not work.
    Before using external jars inside our java fx project my jnlp looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    After modifying my jnlp as per my project as
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    After adding external jars my jnlp looks like this :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/" href="JavaFXApplication3.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="http://localhost:8083/servlet/org.netbeans.modules.javafx.project.JnlpDownloadServlet/F%3A/New+FX+Projects+08-12-
    2009/JavaFXApplication3/dist/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="http://dl.javafx.com/1.2/javafx-rt.jnlp"/>
    <jar href="JavaFXApplication3.jar" main="true"/>
    <jar href="lib/jdom.jar"/>
    </resources>
    <application-desc main-class="com.sun.javafx.runtime.main.Main">
    <argument>MainJavaFXScript=misc.Test</argument>
    </application-desc>
    <update check="background">
    </jnlp>
    I have modified the jnlp as per my project :
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
    <information>
    <title>JavaFXApplication3</title>
    <vendor>Saurabh</vendor>
    <homepage href="/PiFx/FxFiles/"/>
    <description>JavaFXApplication3</description>
    <offline-allowed/>
    <shortcut>
    <desktop/>
    </shortcut>
    </information>
    <resources>
    <j2se version="1.5+"/>
    <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
    <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
    <jar href="/PiFx/FxFiles/lib/jdom.jar"/>
    </resources>
    <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
    <param name="MainJavaFXScript" value="misc.MyChart">
    </applet-desc>
    <update check="background">
    </jnlp>
    where PiFx is our project Name

    We have tried few things given in thread : http://forums.sun.com/thread.jspa?threadID=5401999
    Now it is not able to get the external jar file only
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    exception: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar.
    java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
         at com.sun.deploy.net.DownloadEngine.getCachedResourceFilePath(Unknown Source)
         at com.sun.javaws.LaunchDownload.getSignedJNLPFile(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDescHelper(Unknown Source)
         at com.sun.javaws.LaunchDownload.checkSignedLaunchDesc(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.prepareLaunchFile(Unknown Source)
         at sun.plugin2.applet.JNLP2Manager.loadJarFiles(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.io.IOException: Cannot find cached resource for URL: http://192.168.0.111:8086/PiFx/FxFiles/lib/jdom.jar
    JavaFXApplication3.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
            <jar href="/PiFx/FxFiles/JavaFXApplication3.jar" main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true" />
        </resources>
        <application-desc main-class="com.sun.javafx.runtime.main.Main">
            <argument>MainJavaFXScript=misc.MyChart</argument>
        </application-desc>
        <update check="background">
    </jnlp>JavaFXApplication3_browser.jnlp
    <?xml version="1.0" encoding="UTF-8"?>
    <jnlp spec="1.0+" codebase="/PiFx/FxFiles/" href="JavaFXApplication3_browser.jnlp">
        <information>
            <title>JavaFXApplication3</title>
            <vendor>Saurabh</vendor>
            <homepage href="/PiFx/FxFiles/"/>
            <description>JavaFXApplication3</description>
            <offline-allowed/>
            <shortcut>
                <desktop/>
            </shortcut>
        </information>
        <resources>
            <j2se version="1.5+"/>
            <extension name="JavaFX Runtime" href="/PiFx/FxFiles/javafx-rt.jnlp"/>
           <jar href="/PiFx/FxFiles/JavaFXApplication3.jar"  main="true"/>
            <jar href="/PiFx/FxFiles/lib/jdom.jar" main="true"/>
        </resources>
        <applet-desc name="JavaFXApplication3" main-class="com.sun.javafx.runtime.adapter.Applet" width="500" height="500">
            <param name="MainJavaFXScript" value="misc.MyChart">
        </applet-desc>
        <update check="background">
    </jnlp>Applet Code
    javafx({
    archive: "../FxFiles/JavaFXApplication3.jar",
    draggable: true,
    height:hgt,
    width:wdt,
    code: "misc.MyChart",
    name: appletName,
    id: appletName
    });

  • Not able to access the WebDynpro application in BlackBerry.

    Hi,
    I have created a WebDynpro application. The application is workin fine on IE but when I access the same application from BlackBerry simulator 8830 it gives an error :
    500 Internal Server error.
    APPLICATION ERROR OCCURED DURING THE REQUEST PROCESSION
    THE REQUESTED DEPLOYABLE OBJECT "InventryLookUpApp" is not deployed on the server.
    Please check the URL for typos
    The URL for the application is :
    http://10.54.162.252:50000/webdynpro/dispatcher/sap.com/a1s~searchproduct/InventoryLookupApp
    Please guide.
    Manish

    Hi Manish,
    Try this link:
    http://10.54.162.252:50000/webdynpro/dispatcher/sap.com/a1s~searchproduct/InventoryLookupApp?sap-wd-client=WmlClient
    Let me know what happens.
    Thanks,
    Ted

  • Start up Error: "Could not create the Java virtual machine"

    I downloaded WebLogic Platform 10.3.0.0 (net_server103_win32.exe) and installed it on my Windows Vista laptop.
    I am unable to start the server.
    From Start menu I selected (WebLogic ServerExamples-->Start Examples Server)
    The following output displayed in the console window:
    JAVA Memory arguments: -Xms256m -Xmx512m
    WLS Start Mode=Development
    CLASSPATH=C:\bea\wlserver_10.3\samples\server\examples\build\serverclasses;C:\be
    a\patch_wlw1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\be
    a\patch_wls1030\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\be
    a\patch_cie660\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea
    \JROCKI~1\lib\tools.jar;C:\bea\WLSERV~1.3\server\lib\weblogic_sp.jar;C:\bea\WLSE
    RV~1.3\server\lib\weblogic.jar;C:\bea\modules\features\weblogic.server.modules_1
    0.3.0.0.jar;C:\bea\WLSERV~1.3\server\lib\webservices.jar;C:\bea\modules\ORGAPA~1
    .5/lib/ant-all.jar;C:\bea\modules\NETSFA~1.0_1/lib/ant-contrib.jar;;C:\bea\WLSER
    V~1.3\common\eval\pointbase\lib\pbembedded57.jar;C:\bea\WLSERV~1.3\common\eval\p
    ointbase\lib\pbclient57.jar;C:\bea\WLSERV~1.3\server\lib\xqrl.jar;;
    PATH=C:\bea\patch_wlw1030\profiles\default\native;C:\bea\patch_wls1030\profiles\
    default\native;C:\bea\patch_cie660\profiles\default\native;C:\bea\WLSERV~1.3\ser
    ver\native\win\32;C:\bea\WLSERV~1.3\server\bin;C:\bea\modules\ORGAPA~1.5\bin;C:\
    bea\JROCKI~1\jre\bin;C:\bea\JROCKI~1\bin;C:\Windows\system32;C:\Windows;C:\Windo
    ws\System32\Wbem;C:\Program Files\ATI Technologies\ATI.ACE;C:\Program Files\Comm
    on Files\Roxio Shared\DLLShared\;C:\Program Files\Common Files\Roxio Shared\DLLS
    hared\;C:\Program Files\Common Files\Roxio Shared\9.0\DLLShared\;C:\Program File
    s\QuickTime\QTSystem\;C:\Program Files\Java\jre1.6.0\bin;C:\groovy\Groovy-1.5.7\
    bin;C:\Sun\SDK\bin;C:\Sun\SDK\jdk\bin;C:\bea\WLSERV~1.3\server\native\win\32\oci
    920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.6.0_05"
    Java(TM) SE Runtime Environment (build 1.6.0_05-b13)
    BEA JRockit(R) (build R27.6.0-50_o-100423-1.6.0_05-20080626-2105-windows-ia32, c
    ompiled mode)
    Starting WLS with line:
    C:\bea\JROCKI~1\bin\java -jrockit -Xms256m -Xmx512m -Xverify:none -da -Dplat
    form.home=C:\bea\WLSERV~1.3 -Dwls.home=C:\bea\WLSERV~1.3\server -Dweblogic.home=
    C:\bea\WLSERV~1.3\server -Dweblogic.management.discover=true -Dwlw.iterativeD
    ev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\bea\patc
    h_wlw1030\profiles\default\sysext_manifest_classpath;C:\bea\patch_wls1030\profil
    es\default\sysext_manifest_classpath;C:\bea\patch_cie660\profiles\default\sysext
    manifestclasspath -Dweblogic.Name=examplesServer -Djava.security.policy=C:\bea
    \WLSERV~1.3\server\lib\weblogic.policy weblogic.Server
    Could not create the Java virtual machine.
    Stopping PointBase server...
    PointBase server stopped.
    C:\bea\wlserver_10.3\samples\domains\wl_server>
    Does anyone have any suggestions on how to troubleshoot this problem?
    Thank you,
    B. Regan

    I do not know how to modify any startup parameters. I am new to WebLogic and downloaded and installed the server for the first time yesterday. I used all of the defaults for the install. To start the server I am using Windows Start menu like this:
    Start-->All Programs-->Oracle WebLogic-->WebLogic Server 10gR3-->Examples-->Start Examples Server
    A command prompt window opens and the messages I described earlier display in the window.
    These were the messages when I used another command window to call the example server domain's bin\setDomainEnv.cmd script and then execute java -version (as suggested in the earlier post):
    C:\bea\wlserver_10.3\samples\domains\wl_server>java -version
    java version "1.6.0_05"
    Java(TM) SE Runtime Environment (build 1.6.0_05-b13)
    BEA JRockit(R) (build R27.6.0-50_o-100423-1.6.0_05-20080626-2105-windows-ia32, c
    ompiled mode)
    I see now that when I go to
    Start-->All Programs-->Oracle WebLogic-->WebLogic Server 10gR3-->Examples
    that there is an option to "Stop Example Server" When I choose that option another command window opens, a couple of messages scroll by, there's a pause at a "connecting to t3://localhost:7001" then a bunch of message flash by and the command window disappears. So I can't capture the output of that command.
    I tried rebooting my laptop but no change in the behavior.
    There is some good news. I tried starting the Medical Records Server. That command succeeded. I will see what I can learn through using the Medical Records Server and ignore the Examples Server for now.
    Thank you for the suggestions.
    B.Regan

  • APEX application not able to access

    Hi all,
    I am new in APEX.
    and I have to create the same environment as the client have.
    client only given me sql for importing the application developed in APEX.
    I created workspace and imported the application in that. but the client is using the active directory authentication and now when i am trying to run the application at my environment then i am not able to access the application.
    So could any one of you please guide me what i need to do with the APEX to login to the application with my active directory authentications.
    this is somehow urgent and i am not able to get any help. so could anyone guide me.
    Sanket
    Edited by: user10528895 on Oct 28, 2010 10:46 PM

    Hi ajinkya,
    Thanks for forwording the helping hand.
    but can able to mannage and found some documentas of configuration of LDAP and using the LDAP authentication at my own. and now i configured the LDAP and able to access the application.
    now the next step i am stuch is the authentication is of 2 layer 1 i passed but next is there are some of the authorizations schems created and assigned to the specific users.
    now if i want to get the information of the authentications schems and where the data store then from where i get the information that is my question
    i am using database version 10g 10.2.0 and apex 3.0.1
    Regards,
    Sanket

  • I am not able to access my photos through the photo application... when I click on the photo app, I can see the camera roll but a transparent album screen is over it and I cannot click on the photos to see it... can any one please help ???

    I am not able to access my photos through the photo application... when I click on the photo app, I can see the camera roll, but a transparent "album" screen is over it and I cannot click on the photos to see it... can any one please help ???

    Known bug.  Quit the Camera App, double-tap the home key and delete Camera from the recent apps bar. Fire it up again, should be good.

  • User has appropriate permission, still not able to access one of the sharepoint site applications.

    Hi,
    I have tried all solutions available on internet regarding this problem but none seems to work.
    As per one solution I added the user in sharepoint site collection administrator group still no luck!
    As per another solution  I tried to run “User Profile Service Application Proxy – User Profile to SharePoint Full Synchronization”
    “User Profile Service Application Proxy – User Profile to SharePoint Quick Synchronization”
    but they dont run for some reason. Both these jobs are scheduled to run everyday but last time they ran was some date in 2011. When I click on Run Now nothing happens.
    I deleted all cache, forms password history everything.  Added the site in trusted sites and all. No luck!
    User also tried to access the site by logging onto another system but still same issue.
    This user recently joined alongwith a few more people. All of them are able to access the site except this particular user. So, a web part or unpublished page cant be the reason, right?
    This user is only able to access the home page which is say http://<siteurl:1234> application while the site which this user is not able to access is
    http://<siteurl:2345>.
    I even tried to give access through sharepoint designer but no luck! Please help!
    PS: This may not be relevant but still I'm sharing. Earlier I used to add users in manage user profiles - new profile. But now as soon as the user is added into active directory there profile is getting created automatically. This might be happening due to
    active directory and user profile sync but the question is how? Because I dont remember configuring this. And it was not configured earlier too.

    Hi,
    According to your description, my understanding is that only one user cannot access the site even though he has the right permission.
    I recommend to verify the things below:
    Check the permission of the user in the site to see if the permission is right.
    Is http://<siteurl:2345> a new site collection ? Can the user access other pages except the home page in
    http://<siteurl:1234>?
    Grant needed permission to the user in the web application to see if the issue still occurs.
    Delete the user and re-add the user in AD to see if the issue still occurs.
    Check the ULS log for detailed error message.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Not able to access the application through URL in clustered environment.

    Hi,
    I recently depoyed my application on clustered environment of weblogic 8.1 SP4.
    Now I am able to access the application through the managed server name with port number but not able to access through URL.
    For ex
    http://machine1:7001/test/login.do?m=begin
    this is accessible
    If I use
    http://test.domain.com/test/login.do?m=begin
    Then application is not accessible.
    any HTML or JSP page page is in reach by both the URL.
    Please suggest me what should I do in this regard.
    thanks
    singhV

    Hi Syed,
    I meant to ask are you able to see the application you created in Hyperion Planning Login page,if yes try accessing the created application through Hyperion Planning(Try restarting Planning Services once even if you are able to launch hyperion planning page) url "http://servername:8300/HyperionPlanning and selecting the application you created.
    And also could you please let me know if you are logging in to workspace through admin username ? and also check if you are able to see the application in shared services and try to provision any group on that application.
    (The Assumptions are if application is not created successfully then it will not be available in workspace to launch and if its in maintainance mode (Application Maintenance Mode) in Application Settings and last would be check OHS and Hyperion Planning Services)
    Thanks
    Amith

  • WHCK - Not able to access Server from client machine

    Hi,
    Server is running in : \\testserver
    Domain : ns.local
    Client : testclient 
    Test Name : TDI filters and LSPs are not allowed
    When the above test is run from the server side, Test fails with the following error:
    Cause : Failed to Start the Task
    Cause : Zero files are copied when Trying to Copy From Path "\\testserver.ns.local\TaefBinaries\x64"....Failing the Task
    Failure : Failed to Start the Task "Copy TAEF Binaries"
    Cause : Failed to Copy File : "\\testserver.ns.local\TaefBinaries\x64" Dest : "C:\WLK\JobsWorkingDir\Tasks\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\"
    Cause : Cannot Find Pattern "\\testserver.ns.local\TaefBinaries\x64"
    From WttEa.log , it displays "The network path was not found". 
    CRunManager::ExecutionAgent: Working Dir C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1 
    CRunManager::ExecutionAgent: Saving RunXML to file C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\WttJobRun.Xml
    CRunManager::ExecutionAgent: Saving EaDataXML to file C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\WttEaData.Xml
    CRunManager::UserName : DTMShareUser
    CRunManager::Domain : TESTSERVER
    CRunManager::Password : Server2008,WTT5326ShareUser
    Build No Greater than 4000. This is a Windows Vista Machine
    Single User TS Enabled
    Comparing TESTSERVER testclient.ns.local 10
    Logon Netonly
    GetUserToken : Returns 0
    Error: 0x35, The network path was not found.   WTTCreateDirPAth : CreateDirectory \\testserver.ns.local\HCKLogs\EaFolderAccessCheck\CF82A2A5-E08D-49C7-A078-4BA1416F1AA1 Failed   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\common\eautil\src\eautil.cpp
    Line=1589
    Error: 0x80070035, The network path was not found.   (Error ( status = 53 ) in call: WttCreateDirPath(lpszTemp) )   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\eamanager\runmanager\src\runmanager.cpp Line=2232
    Retrying the log location creation 10 more times
    Error: 0x35, The network path was not found.   WTTCreateDirPAth : CreateDirectory \\testserver.ns.local\HCKLogs\EaFolderAccessCheck\CF82A2A5-E08D-49C7-A078-4BA1416F1AA1 Failed   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\common\eautil\src\eautil.cpp
    Line=1589
    Error: 0x80070035, The network path was not found.   (Error ( status = 53 ) in call: WttCreateDirPath(lpszTemp) )   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\eamanager\runmanager\src\runmanager.cpp Line=2240
    What could be the problem ??? What steps need to be done or checked further to proceed ??
    Could you please help why the client is not able to access Server ???
    Thanks.
    Regards,
    Pradeep VR

    Hi,
    Reason for this failure is that the test executable is not present in the HLK controller.
    It looks like a Microsoft issue. We have faced same type of problem for other tests also. Our problem gets fixed in HLK 10056.
    If you face the problem in current build also, then please log a bug to Microsoft.
    Thanks,
    Arpo

  • Not able to access DB on VM after getting Reserved IP

    Hi,
    I have Reserved an Public Virtual IP for my VM 23.102.xxx.xxx  The OS WIN server 2012 R2 and and has SQL server 2012 running on it.
    Problem:
    1. I'm not able to access the DB or connect to the server form outside( from my local machine). I was able to connect when the Public Virtual IP wasn't reserved.
    2. As my website is hosted on the same VM, I use the Internal IP address as the Binding IP address, however I recently noticed that the Internal IP address has changed and my website was down.
    3. How do I prevent the Internal IP address from changing. So that I don't have to reset my webconfig and binding IP address frequently?

    Hi,
    Thanks for your question.
    1. How did you connect to the VM? I recommend you to use DNS name of the cloud service(xxx.cloudapp.net) with the public port for RDP to connect to see if the issue persists.
    2. In general, if you shut down an Azure VM to stopped (deallocated) status, the resources for the VM will be released and the internal IP address may be changed.
    3. You can assign a static internal IP address to an existing VM if it is in a virtual network. For more detailed information, please refer to the link below:
    Configure a Static Internal IP Address for a VM
    Best regards,
    Susie
    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]

  • Not able to access Central admin or any other site

    My machine name has been changed from abc-xyz to DT-012
    After changing my machine name am not able to access Central admin or any other site in sharepoint. which says '
    Server Error in '/' Application.'
    Please tell me after changing machine name what else i have to change so i can access my SharePoint back.

    Hi Niraj, 
    Thanks for posting your issue, Just wanted to know have you changed server name  using below mentioned command?
    stsadm -o renameserver -oldservername oldservername -newservername newservername
    I hope, you have not changed your SQL Server name/instance. If changed SQL too. Kindly re-run the configuration Wizard of SQL server to set up Alias.
    Also, Browse below mentioned URLs to know more about the fixes of this issue
    http://www.ericjochens.com/2013/03/change-sharepoint-server-hostname-and.html
    http://www.bluesphereinc.com/blog/renaming-a-sharepoint-20102013-server/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Not able to access webservice after migrating from 8.1 to 10.3,plz help

    Hi All,
    Prev our application was running in weblogic 8.1 and now we moved to 10.3
    We are able to deploy our webservice in 10.3 and access the wsdl but we are not able to access the webservice from the client.
    Even the testclient is not comming up.
    After spending long time in that,now i dont have any clue on this issue.
    Plz help on this
    Thanks ni advance,
    Mouli

    Sunil,
    We are not seeing any exception.We regenerated the webservice and then deployed in the 10.3
    When we make req from the client ,we are getting null response but thing is there are no log trace in the server side for that
    folllowing is the input string we are pasing to the method notifyservice
    IN the client we pass the wsdl url and then pass the following input string and hit the notifySerivce method
    Req:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?><object><GLCCode>102431</GLCCode><callBackNumber>888256798</callBackNumber></object>
    Res:
    <m:notifyService xmlns:m="http://www.testportal.com/outbound/tsp/WowWebservices">
    <result xsi:nil="true"/>
    </m:notifyservice>
    Therre was an exception in the client side,plz check below
    javax.xml.rpc.soap.SOAPFaultException: Failed to get operation name from incoming request
    at weblogic.webservice.core.ClientDispatcher.receive(ClientDispatcher.java:317)
    at weblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:147)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:473)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:459)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:569)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:422)
    Thanks For your time,
    Mouli

  • Not able to access human task form (11.1.1.4)

    I installed SOA Suite with BPM Suite 11.1.1.4. I ran into quite a few issues. The biggest one is I am not able to access the human task form in BPM workspace even for the new application created in 11.1.14.
    Do you have such issue? I am not sure if it is a bug or is related to my specific installation. I followed the document “Quick Start Guide for Oracle® SOA Suite 11gR1 (11.1.1.4.0) Version 1.6” for the installation. The only difference is that I installed the generic version of WebLogic and JDev and configured them to use JDK 64-bit version since my OS is windows 7 (64-bit). Before, I had installed 11.1.1.3 with 64-bit and it was working fine. The only tool installed with 32-bit is the JDev 11.1.1.3. Since JDev 11.1.1.4 is supporting 64-bit, I installed everything with 64-bit for this time.
    The details of the error are the following:
    With JDev 11.1.1.4, I created a new application which has a simple BPM process with 3 flow objects: start event-user activity-end event. The human task has the auto-generated task form. I deployed the application to the SOA server.
    When testing the application, the task was created and listed in the BPM workspace. But when I clicked the task link to open the task form, the web page was hanging. I noticed the following log was REPEATED again and again in the access.log:
    140.98.125.168 - - [20/Apr/2011:10:28:08 -0400] "GET /workflow/TestpsUI/faces/adf.task-flow?bpmWorklistTaskId=2a5b4ad1-823f-4615-8a7e-c5449a7be814&bpmWorklistContext=12aa4934-991a-487c-b7f3-5159808c399a%3B%3BtbcZXSd1E1LVZv8OIaLZGd21meLUMNkYSMsmz60kNKoEaJ1N53wy3zyRYA%2BunyKF9UNi50fPHKtaXY6IqKbh%2Fu68WebTan3zCwGsUNmNMaw8aLEygS5qb2cOGx2qGal86F%2FgiRka874PYLXhohFdDPCQyoxre2p7IgpsloLHq2rh7T3zWGnyOjLdC7Qw0Geb20Kfp8XA2UUIoxaxTHS6YFPQqqs%2FzIkyEsgMNQJMDbYYGdceRL2sT8rMkBXpmQ0r&bpmWorklistHttpURL=http%3A%2F%2Flocalhost%3A7001%2Fbpm%2Fworkspace%2Ffaces&bpmWorklistHome=home.jspx&bpmWorklistReassign=reassignTask.jspx&bpmWorklistRoute=routeTask.jspx&bpmWorklistRequestInfo=requestInfo.jspx&bpmWorklistSecurity=signTask.jspx&tz=America%2FNew_York&lg=en&cy=US&vr=&dispNameLg=en&dispNameCy=US&dispNameVr=&df=medium&dt=both&tf=short&bpmWorklistSessionTimeoutInterval=900&soaUrl=http%3A%2F%2F140.98.125.168%3A7001&bpmBrowserWindowStatus=taskFlowReturn&adf.tfDoc=%2FWEB-INF%2FHumantask_TaskFlow.xml&adf.tfId=Humantask_TaskFlow&_task-flow-return=http%3A%2F%2Flocalhost%3A7001%2Fbpm%2Fworkspace%2Ffaces%2Fadf.task-flow-return%3F_adf.ctrl-state%3De1i6yi1gq_35&_adf.winId=e1i6yi1gq_26&_afrLoop=7156779026094&_afrWindowMode=0&_afrWindowId=null HTTP/1.1" 200 5478
    Please help if you know what is going on for the issue.
    Thanks a lot,
    Helen

    Go to OEM, select the SOA Composite application you deployed.
    Under Component Metrics … click the link of the Human Workflow Component that you have the issue
    The settings of the Human Workflow Component would be displayed
    Click the Administration tab, you will get the URI setting for the human task
    update the Host name etc. as you want and click "OK" then click "Apply"
    Please note: this is just a shortcut for my own dev-env. I have not got the time to figure out why this happens. It is sure not the right solution for the production if we have the issue in the prod-env, I think.

  • BO 4.1 LCM not able to access through Web Browser

    Hello Folks,
    I installed BO 4.1 in my Vmware workstation 10. successfully. its working fine all tools and web based tools like CMC and BI launch pad.
    I have problem while connecting to LCM through below link.
    localhost:8080/BOE/LCM
    Once i get hit this link on google crome browser I'm getting below error. Please anyone suggest me how to access LCM in my local server.
    404 Missing Page
    The page you requested is not available on this web server for one of the following reasons:
    The address you typed may be inaccurate. For example, a character was missing. To correct this issue, double-check the address and make sure that it is spelled correctly.
    If you clicked on a link or button, the web application that generates this link may be experiencing a temporary problem. Close and restart your browser and try the link again at a later time.
    After verifying that the error is not the result of a bad address or web application problem, perhaps the page you tried to access may no long exist or can not be generated. Report this problem to the webmaster or the administrator.If you are the webmaster or the administrator of this web server, refer to the SAP BusinessObjects FAQ page regarding HTTP errors for more suggestions.
    If the problem still persists, please:
    Search the SAP BusinessObjects Knowledge Base Articles for similar cases.
    Contact with SAP BusinessObjects Customer Support.
    Thanks
    venkat

    Hello Jawahar,
    Thanks for your reply.
    Your right from 4.0 its a Promotion Management activity with LCM.
    Here my question is I'm not able to Access LCM thorogh Localhost:8080/BOE/LCM.
    Please anyone help me how to do rectify this.
    Thanks
    venkat

  • Error (23317) The operation Change properties of virtual machine is not permitted on a virtual machine that has shared virtual hard disks. Recommended Action The operation Change properties of virtual machine is not permitted on a virtual machine that h

    Experts !
    Error (23317)
    The operation Change properties of virtual machine is not permitted on a virtual machine that has shared virtual hard disks.
    Recommended Action
    The operation Change properties of virtual machine is not permitted on a virtual machine that has shared virtual hard disks.
    Is this limitation by design? If we have a shared VHDX between two VMs, then I am not able to change the VM properties from SCVMM.
    SCVMM 2012 R2 with Windows Server 2012 R2 Hyper-V.
    Appreciate any help !
    Optimism is the faith that leads to achievement. Nothing can be done without hope and confidence.
    InsideVirtualization.com

    Hello,
    that is a VMM issue.
    If you did not deploy your virtual cluster from a VMM service template, VMM doesn't recognize the configuration.
    Until MS got it fixed, you could use the workaround from system center central:
    http://www.systemcentercentral.com/tag/shared-vhdx/
    This posting is provided >AS IS< with no warranties.

Maybe you are looking for

  • 11g issue in handling file datastore from different server

    Hi All, In ODI 11g we have standalone agent as well as weblogic server agent. In our case master/workrep and weblogic server agent is installed in one of the linux server Say (A). We have a scenario to pick the file from one of the different linux bo

  • Problem in starting services after rebooting the sap server.

    Hi , I got a problem in starting SAP services files in SAP BI system on windows 2003 server. Whenever I reboot the system all sap services failed to start throw a message u201CCould not start SAPBDJ_00 service on local computer. Error 1069: The servi

  • Generic Data Access For All Class

    Hello I am doing one experiment on Data Access. In traditional system We have to write each Insert, Update, Delete code in data access for each table. My City Table Class: public class TbCitiesModel string _result; int _cityID; int _countryID; string

  • Can' t log in to creative cloud to download new apps

    Hi, when I launch Creative Cloud to connect, It always crash. What Can I do? It worked very well with my other computer, but on my IMac it doesn't work- Thx

  • How do you create a slide show to a wmv vile?

    I use photoshop Elements 7 I have created several slideshows of my granddaughters wedding, I would like to save them as wmv shows on a DVD but I get a message that the wmv file wasn't created. help did not help solve my questions.