Ifs Connection problem from local machine to Ifs server using API

I am trying to make an API call to connect to Ifs database server running on different machine(UNIX) from local machine. I copied all jar files and /Lib/Ifs/Settings directory to my local machine. All these files are in the classpath of weblogic 6.0 environment. A jsp on weblogic server call a bean which has a responsibibility of connecting to Ifs server to get LibrarySession.
From Visual Cafe 4.5 everything works fine but when i start weblogic 6.0 outside the visual cafe environment i get the error
below. I included all the jar files and /Lib/Ifs/Settings in start up script of weblogic server
Do you know if i missing some thing????
java.lang.UnsatisfiedLinkError: do_open
at oracle.jdbc.oci8.OCIDBAccess.do_open(Native Method)
at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:309)
at oracle.jdbc.driver.OracleConnection.(OracleConnection.java:198)
at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
va:251)
at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
at java.sql.DriverManager.getConnection(DriverManager.java:517)
at java.sql.DriverManager.getConnection(DriverManager.java:177)
at oracle.ifs.server.LibraryConnection.(LibraryConnection.java:235
at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPo
ol.java:576)
at oracle.ifs.server.ConnectionPool.(ConnectionPool.java:321)
at oracle.ifs.server.S_LibraryService.(S_LibraryService.java:912)
at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java
:1129)
at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:408)
at oracle.ifs.beans.LibraryService.connect(LibraryService.java:280)

Have you installed the Oracle client software on the machine where you are running WebLogic and your custom iFS application (your bean)?
It looks like the native JDBC libraries are not available to the JVM where WebLogic is executing your code. iFS uses JDBC to access the Oracle database, and it requires "thick" (OCI8) JDBC to do so. This means that you need Oracle client software to be installed (in an ORACLE_HOME directory) on a computer where you want to use the iFS API.
If you do have the Oracle client software installed already, then perhaps the WebLogic environment isn't configured to have access to the native JDBC libraries. Normally, as long as $ORACLE_HOME/lib is in the LD_LIBRARY_PATH (on unix) or $ORACLE_HOME/bin is in the PATH (on windows), stuff should just work.
See if you can find any information about including native libraries (for instance, to use JNI) in the WebLogic documentation. We don't certify with WebLogic, which is why I don't know the answer offhand.

Similar Messages

  • How to FTP a file from client machine to database server using forms 10g

    Hi
    I want to ftp a file from a client machine to the database server machine using forms 10G (or PL/SQL).
    could you please tell me how can I do this
    Regards

    hi
    How to get up and running with WebUtil 1.06 included with Oracle Developer Suite 10.1.2.0.2 on a win32 platform
    Solution
    Assuming a fresh "Complete" install of Oracle Developer Suite 10.1.2.0.2,
    here are steps to get a small test form running, using WebUtil 1.06.
    Note: Oracle_Home is used as an alias for your real oDS ORACLE_HOME.
    Feel free to copy this note to a text editor, and do a global find/replace on
    Oracle_Home with your actual value (no trailing slash). Then it is easy to
    copy/paste actual commands to be executed from the note copy.
    1) Download http://prdownloads.sourceforge.net/jacob-project/jacob_18.zip
    and extract to a temporary staging area. Do not attempt to use 1.7 or 1.9.
    2) Copy or move jacob.jar and jacob.dll
    C:\webutile is the folder where you extracted Jacob, and will end in ...\jacob_18
    cd C:\webutile
    copy jacob.jar Oracle_Home\forms\java\.
    copy jacob.dll Oracle_Home\forms\webutil\.
    The Jacob staging area is no longer needed, and may be deleted.
    3) Sign frmwebutil.jar and jacob.jar
    Open a DOS command prompt.
    Add Oracle_Home\jdk\bin to the PATH:
    set PATH=Oracle_Home\jdk\bin;%PATH%
    Sign the files, and check the output for success:
    Oracle_Home\forms\webutil\sign_webutil Oracle_Home\forms\java\frmwebutil.jar
    Oracle_Home\forms\webutil\sign_webutil Oracle_Home\forms\java\jacob.jar
    4) If you already have a schema in your RDBMS which contains the WebUtil stored code,
    you may skip this step. Otherwise,
    Create a schema to hold the WebUtil stored code, and privileges needed to
    connect and create a stored package. Schema name "WEBUTIL" is recommended
    for no reason other than consistency over the user base.
    Open Oracle_Home\forms\create_webutil_db.sql in a text editor, and delete or comment
    out the EXIT statement, to be able to see whether the objects were created witout
    errors.
    Start SQL*Plus as SYSTEM, and issue:
    CREATE USER webutil IDENTIFIED BY [password]
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
    GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
    CONNECT webutil/webutil@rcci
    @Oracle_Home\forms\create_webutil_db.sql
    -- Inspect SQL*Plus output for errors, and then
    CREATE PUBLIC SYNONYM webutil_db FOR webutil.webutil_db;
    Reconnect as SYSTEM, and issue:
    grant execute on webutil_db to public;
    5) Modify Oracle_Home\forms\server\default.env, and append Oracle_Home\jdk\jre\lib\rt.jar
    to the CLASSPATH entry.
    6) Modify Oracle_Home\forms\server\formsweb.cfg insde [default] add :
    archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob.jar
    archive=frmall.jar
    also add :
    [webutil]
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    archive_jini=frmall_jinit.jar
    WebUtilArchive=frmwebutil.jar,jacob.jar,f90all.jar
    archive=frmwebutil.jar,f90all.jar
    lookAndFeel=oracle
    7) Modify Oracle_Home\forms\server\webutil.cfg and add :
    transfer.database.enabled=TRUE
    transfer.appsrv.enabled=TRUE
    8) Start the OC4J instance
    9) Start Forms Builder and connect to a schema in the RDBMS used in step (4).
    Open webutil.pll, do a "Compile ALL" (shift-Control-K), and generate to PLX (Control-T).
    It is important to generate the PLX, to avoid the FRM-40039 discussed in Note 303682.1
    If the PLX is not generated, the Webutil.pll library would have to be attached with
    full path information to all forms wishing to use WebUtil. This is NOT recommended.
    10) Create a new FMB.
    Open webutil.olb, and Subclass (not Copy) the Webutil object to the form.
    There is no need to Subclass the WebutilConfig object.
    Attach the Webutil.pll Library, and remove the path.
    Add an ON-LOGON trigger with the code
    NULL;
    to avoid having to connect to an RDBMS (optional).
    Create a new button on a new canvas, with the code
    show_webutil_information (TRUE);
    in a WHEN-BUTTON-PRESSED trigger.
    Compile the FMB to FMX, after doing a Compile-All (Shift-Control-K).
    11) Under Edit->Preferences->Runtime in Forms Builder, click on "Reset to Default" if
    the "Application Server URL" is empty.
    Then append "?config=webutil" at the end, so you end up with a URL of the form
    http://server:port/forms/frmservlet?config=webutil
    12) Run your form.

  • Java code to connect to remote windows machine from local machine

    Hi,
    I have developed a code to connecting remote windows M/C from local M/C by using SSH2 (ganymed-ssh2-build209.jar) API. when I run the code its giving below error. Can any one please help me how to resolve it. And also please let me know, is there any other way to connect remote windows system using java code.
    Exception.
    java.io.IOException: There was a problem while talking to <host name>:22
      at ch.ethz.ssh2.Connection.connect(Connection.java:642)
      at ch.ethz.ssh2.Connection.connect(Connection.java:460)
      at Connect.RemoteServer.ConnectWindowsServer.runCommand(ConnectWindowsServer.java:55)
      at Connect.RemoteServer.ConnectWindowsServer.main(ConnectWindowsServer.java:27)
    Caused by: java.net.ConnectException: Connection refused: connect
      at java.net.PlainSocketImpl.socketConnect(Native Method)
      at java.net.PlainSocketImpl.doConnect(Unknown Source)
      at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
      at java.net.PlainSocketImpl.connect(Unknown Source)
      at java.net.SocksSocketImpl.connect(Unknown Source)
      at java.net.Socket.connect(Unknown Source)
      at ch.ethz.ssh2.transport.TransportManager.initialize(TransportManager.java:299)
      at ch.ethz.ssh2.Connection.connect(Connection.java:591)
      ... 3 more
    JAVA Code
    import ch.ethz.ssh2.Connection;
    import ch.ethz.ssh2.Session;
    public void setAuthenticationInfo(String hostname, String username,String password) {
           this.host = hostname;
           this.userid = username;
           this.password = password;      
           this.recentCommand = "";     
           System.out.println("setting authentication info completed for host=" + host );
      public void runCommand() throws Exception {
    try{
            // Setup ssh session with endpoint
           System.out.println("starting connection with " + host);
           Connection connection = new Connection(host);
           System.out.println("connection object created..");
           connection.connect();
           System.out.println("Connect to connection");
           connection.authenticateWithPassword(userid,password);
           System.out.println(connection.isAuthenticationComplete());
           Session session = connection.openSession();
          System.out.println("connected");
      }catch (Exception e) {
      e.printStackTrace();
    Regards,
    Praveen

    Hi baftos,
    I tried to telnet remote windows machine from my local machine on port 23, its not connected and given error message like "Connect failed".
    As your response, if we can telnet to remote windows machine from local machine then we can connect from Java. Is it correct ?.
    Can you please help me to resolve this issue. And also please confirm the port (23) is correct, which I was used to connect remote machine from telnet.
    Regards,
    Praveen

  • Cannot run the code from local machine - works after deployment!!!

    Hi,
    I am totally new to application server. My problem is that the application code after it is 'deployed' from JDeveloper to Oracle Application Server - it works fine. I can go to the web application from the url and do a 'Submit' of forms and it works fine. The problem comes when I try to connect to dev. environment from local machine and try to do a 'Submit' (done for debugging purposes), I get a 500 Internal Server Error. Is there a configuration file or property I file I have to change? I am clueless.
    Basically addRequest can be considered as the 'Submit'.
    Javax.faces.FacesException: #{newRequestItem.addRequest}: javax.faces.el.EvaluationException: java.lang.IllegalAccessError: tried to access class javax.xml.rpc.FactoryFinder from class javax.xml.rpc.ServiceFactory
    At com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:98)
    My application is built on ADF and JSF and connects to BPEL workflow and DRM. So it is using WebServices.
    Thanks.

    Hi,
    Top further pinpoint the issue, I can make the SSRS report work with the stored procedure by running
    SP_recompile 'myStoredProcedure'
    So, SQL Server has somehow messed up the execution plan for the sproc. But to repeat, executing the Sproc in Management Studio works just fine, I just look the exact sproc and parameters with SQL Profiler when it is not working in SSRS report, then run that
    same sproc manually and it works.
    After extensive debugging, it seems to raise from one specific SELECT row:
    SELECT
    cte.TIMEYEAR + 1 AS TIMEYEAR,
    where cte.TIMEYEAR is varchar. After changing that to
    SELECT
    CAST(cte.TIMEYEAR + 1 AS VARCHAR) AS TIMEYEAR,
    it started to work.
    What will probably remain forever unclear is that WHY the original select always breaks every now and then, and always starts to work with a simple sp_recompile. I could reproduce the error easily by running
    exec sp_msforeachtable @command1="EXEC sp_recompile '?'";
    after which the sproc raised error: "Conversion failed when converting nvarchar value 'Q1/2000' to data type int".
    ..aaaand then just by running SP_recompile 'myStoredProcedure' it again started working fine. I could reproduce this break & fix pair coherently.
    Still it makes no sense from SSRS report perspective, when sproc was broken in Management Studio query, it was always broken from SSRS report end as well, but sometimes when sproc was working from SSMS, it wasn't working from SSRS.

  • Jabber 9.2, uploading the contact photo from local machine or PC.

    is it posssible to upload contact Photo from local machine to jabber from 'edit profile'? I did that but nothing happened! still no contact photo.
    Thanks,

    Hi Shane,
    in previous version of Jabber it was not possible, am I right? But I heard in 9.2.0 onwards we can do it.
    I will send you the problem on Monday once I get back to Customer Site.
    Thanks,

  • Firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    you have not understood my point
    how does this code will run on servlet when I want to upload a file from client's
    machine to server machine
    what I am doing is I am giving an option to the user that he/she can browse the file and then select any file and finally it's action is post in the jsp form for which I have sent the code
    All the computers are connected in LAN
    So how to upload a file from client's machine to server's machine
    Plz give me a solution

  • Connectivity problem from Verizon to China Telecom

    It was China Netcom last time. Now, it's China Telecom.
    (ref: http://forums.verizon.com/t5/FiOS-Internet/Connectivity-problem-from-Verizon-to-Asia/m-p/646257)
    MTR:
    HOST: alex-macmini.local Loss% Snt Last Avg Best Wrst StDev
    1.|-- 10.21.1.1 0.0% 10 0.4 0.5 0.4 0.6 0.0
    2.|-- l100.lsanca-vfttp-75.verizon-gni.net (72.67.93.1) 0.0% 10 8.5 8.9 5.7 21.5 4.5
    3.|-- g1-2-0-3.lsanca-lcr-22.verizon-gni.net (130.81.223.8) 0.0% 10 9.5 12.2 9.1 26.4 5.1
    4.|-- ae10-0.lax01-bb-rtr2.verizon-gni.net (130.81.199.106) 0.0% 10 10.7 11.1 9.9 15.7 1.6
    5.|-- 0.ae4.xl4.lax1.alter.net (140.222.227.129) 0.0% 10 14.9 13.5 10.3 15.9 1.9
    6.|-- 0.xe-11-2-0.gw2.lax1.alter.net (152.63.4.197) 0.0% 10 15.1 13.6 11.9 15.5 1.1
    7.|-- internet-gw.customer.alter.net (157.130.230.74) 20.0% 10 336.4 324.1 302.2 336.4 10.5
    8.|-- 202.97.90.129 10.0% 10 333.8 325.4 299.6 339.0 10.8
    9.|-- 202.97.51.137 10.0% 10 500.4 489.1 459.6 503.8 12.8
    10.|-- 202.97.34.81 30.0% 10 504.0 491.6 455.9 504.7 16.9
    11.|-- 202.97.33.169 10.0% 10 513.5 501.7 480.6 517.4 11.1
    12.|-- 119.147.222.34 10.0% 10 497.0 485.0 448.9 502.8 15.3
    13.|-- 119.147.222.202 50.0% 10 502.0 482.7 452.6 502.0 18.2
    14.|-- 119.147.27.226 10.0% 10 508.3 499.6 474.5 516.8 13.2
    15.|-- ??? 100.0 10 0.0 0.0 0.0 0.0 0.0
    16.|-- 183.60.57.155 0.0% 10 507.1 494.4 477.4 507.1 9.1
    Note 7, 8, 9 are in China. 20% gateway packet loss? Unacceptable. Consider how badly TCP was designed, congestion control would render the link useless.

    Things are only worse
    HOST: alex-macmini.local Loss% Snt Last Avg Best Wrst StDev
    1.|-- 10.21.1.1 0.0% 10 0.5 0.5 0.4 0.6 0.0
    2.|-- l100.lsanca-vfttp-75.verizon-gni.net (72.67.93.1) 0.0% 10 34.3 18.2 5.0 34.3 10.3
    3.|-- g1-2-0-2.lsanca-lcr-22.verizon-gni.net (130.81.223.12) 0.0% 10 10.2 11.7 9.4 14.8 1.7
    4.|-- so-3-1-0-0.lax01-bb-rtr2.verizon-gni.net (130.81.199.40) 0.0% 10 8.9 11.8 8.4 23.2 4.2
    5.|-- 0.ae4.xl4.lax1.alter.net (140.222.227.129) 0.0% 10 14.4 12.9 10.7 14.4 1.0
    6.|-- 0.xe-11-3-0.gw2.lax1.alter.net (152.63.4.201) 0.0% 10 10.7 13.8 10.7 26.4 4.5
    7.|-- internet-gw.customer.alter.net (157.130.230.74) 20.0% 10 343.6 345.2 337.0 350.7 5.2
    8.|-- 202.97.50.45 10.0% 10 347.0 347.7 339.7 353.5 4.6
    9.|-- 202.97.52.253 10.0% 10 489.7 491.5 482.4 510.1 7.9
    10.|-- 202.97.58.97 0.0% 10 494.0 494.9 489.6 498.8 3.3
    11.|-- 202.97.53.37 0.0% 10 496.6 498.9 494.2 502.7 2.9
    12.|-- 202.97.57.206 20.0% 10 494.7 498.6 494.7 501.7 2.6
    13.|-- bj141-130-154.bjtelecom.net (219.141.130.154) 50.0% 10 502.3 498.2 495.2 502.3 2.4
    14.|-- ??? 100.0 10 0.0 0.0 0.0 0.0 0.0
    15.|-- ??? 100.0 10 0.0 0.0 0.0 0.0 0.0
    16.|-- ??? 100.0 10 0.0 0.0 0.0 0.0 0.0
    17.|-- 219.239.92.194 0.0% 10 510.3 514.8 510.3 519.8 3.1
    18.|-- 124.202.11.62 0.0% 10 506.9 512.4 505.0 516.9 3.8
    19.|-- 124.202.11.30 20.0% 10 506.2 513.0 506.1 517.4 4.4
    20.|-- 115.182.92.1 0.0% 9 486.5 495.1 486.5 499.5 4.3

  • Uploading File to server from local machine

    how to Upload the File to server from local machine.
    Using java applet, how to upload the file to secure server.
    I dont know how to proceed the steps for uploading
    Reply me ASAP.......

    Hi Ozkantr,
    The osql utility is installed by SQL Server. You need to make sure the utility is installed on your colleague machine.
    To run SSIS package outside the BIDS, only the DTExec utility which is a client tool is not enough, the server components for Integration Services Service (SSIS runtime) is also required. To install SSIS runtime and DTExec utility, we must install the Integration
    Services shared feature from the SQL Server install media. So, you need to install SSIS service on the machine where the SSIS packages jobs run.
    References:
    http://www.bigator.com/2012/03/11/ways-to-execute-ssis-package/
    http://www.codeproject.com/Articles/219494/SSIS-Overview-Part-I
    Regards,
    +1
    You need to install Integration Services, which installs the necessary bytes on your computer and the SSIS service as well. The service can be disabled though, you don't need it to run packages.
    I wrote a blog post about it some time ago:
    When is DTEXEC installed?
    ps: osql is deprecated. Better start using sqlcmd.
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

  • Unable to connect FR studio from local desktop to HFR server

    Hi Gurus,
    I have installed HFR on client server and able to connect studio with server.
    When i tried to connect from local desktop to HFR server, I am unable to connect to the HFR server.
    error as " You are not authroized to this functionality, please contact your administrator.
    Hyperion: 11.1.2.1
    database: 11.2.0.2
    changed the ports while configuring.
    for FR given as 8010 and RA framework given as 8020.ports are opened.
    please let me know your suggestions to resolve this. am i missing something?
    Thanks!

    "You Are Not Authorized To Use This Functionality" Error Occurs When Logging On To Financial Reporting Studio From Workstation [ID 1319745.1]
    You are trying to log into the Financial Reporting Studio from with a properly provisioned user ID (including administrator IDs), but you get an error: "You are not authorized for this functionality."
    Cause
    The Financial Reporting (FR) Report Server box has multiple Network Interface Cards (NICs), and the one used by the Report Server is listed second in the binding order.
    When a connection is requested of the FR Server from the FR Studio, the server returns an IP address to the Studio client. The server will, by design, return the first IP listed in the Server Network Interface's bind order. If this first IP is not the one associated with the FR Report Server, the FR Studio login error will result.
    Solution
    1. Review the Microsoft HELP menu on the FR Report Server for information on changing the bind order of the Network Interface Cards.
    2. Change the binding order of the primary NIC on the FR Report Server box so that the FR Report Server IP address is 1st in the bind order.
    3. Reboot the FR Report Server Box.
    Alternately, if it is not necessary to have multiple NICs active on the server, you can disable all but the one used by the FR Report Service.

  • How can I get one value from local machine registry

    how can I get one value from local machine registry, I would like read one value of regitry. I have windows NT workstation. I need it to find the full path of iexplore.exe, this value is in 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE'
    Thanks.

    You can use the D2KWUTIL.pll library to read/write to the registry. You have to install the forms examples to get the library.
    The library d2kwut32.dll must also be installed at the clients.

  • Running CLIX commands from local machine

    Hello Experts,
    We have the following requirements in terms of clix commands
    Need to know the number of files in log/archieve/report folder - Is there any clix commands for this
    Want to run the clix commands manually from local machine (Windows), the mdm server is at linux environment. We dont want to automate the script and want to run when needed from local machine. Is that possible
    Thanks & Regards,
    Antony

    HI,A.Antony
    as far as i know ,clix can not count the number of files in the loglog/archieve/report folder.but there is a way out.you can get through the path:<driver>:\usr\sap\<instance>\MDS00\log to check it out.
    to run clix locally,you need to install the mdm-clix-7.1.<sp>.<patch>-win32.exe on your windows.then run the clix in the cmd circumstance.for the clix command Syntax,please refer to the MDM console reference guide,as for MDM7.1SP12,you may goto the Clix referece guide on help.sap.com.
    hope it helps.
    best regards
    Stephen

  • View pdf from local machine

    I have requirement of selecting a pdf from local system and previewing it before uploading.
    I am able to select the file and upload it but i am not able to preview it.
    I tried using navigateToURL(urlRequest,
    "_blank"); , but it is not able to show file from local path
    Can anyone please tell how can i show the file from local machine
    TIA

    Hi,
    is your code executed in Flash runtime (web/standalone application but played in Flash runtime) or in AIR runtime (or 3rd party projector)? That's important as only AIR hosted movie would have access to "file://" protocol when defining/using URLRequest (and then navigateToURL) that are outside of your application domain:
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/URLRequest.html
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/package.html# navigateToURL()
    regards,
    Peter

  • VMM is unable to perform this operation without a connection to a Virtual Machine Manager management server.

    Hi,
    I'm running SCOM and VMM integration. For the most part everything is working. However I get lots of alerts generated in regards to my scvmm server.
    This is a the guide I used:
    https://technet.microsoft.com/en-ca/library/hh882396.aspx
    SCOM + VMM 2012r2 Ur4
    One of the Errors(which appears to be root issue):
    The PowerShell script failed with below
    exception
    System.Management.Automation.CmdletInvocationException: VMM is
    unable to perform this operation without a connection to a Virtual Machine
    Manager management server. (Error ID: 1615)
    Use the Get-VMMServer cmdlet
    or the -VMMServer parameter to connect to a Virtual Machine Manager management
    server. For more information, type at the command prompt: Get-Help Get-VMMServer
    -detailed.At line:109 char:12
    + $vmm = Get-SCVMMServer $VMMServer -Credential
    $cred;
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    at
    System.Management.Automation.Internal.PipelineProcessor.SynchronousExecuteEnumerate(Object
    input, Hashtable errorResults, Boolean enumerate)
    at
    System.Management.Automation.PipelineOps.InvokePipeline(Object input, Boolean
    ignoreInput, CommandParameterInternal[][] pipeElements, CommandBaseAst[]
    pipeElementAsts, CommandRedirection[][] commandRedirections, FunctionContext
    funcContext)
    at
    System.Management.Automation.Interpreter.ActionCallInstruction`6.Run(InterpretedFrame
    frame)
    at
    System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame
    frame)
    at
    System.Management.Automation.Interpreter.EnterTryCatchFinallyInstruction.Run(InterpretedFrame
    frame)
    Script Name:
    GetStorageSubsystemPerfScript
    One or more workflows were affected by
    this.
    Workflow name:
    Microsoft.SystemCenter.Advisor.StorageSubsystem.Performance.PerfCollection
    Instance
    name: SCVMM01.Domain.com
    Instance ID:
    {B5175EAC-D64D-2553-D567-F19B5C864BBD}
    Management group: OMGRP82

    Can you connect from powershell? get-vmmserver <VMMServerComputerName>
    If this doesn't work it's likely that your VMM server doesn't work. Check Application log to see if there are errors related to VMM service.
    You can also collect traces as described
    here and attach them to this thread.
    Are you using a domain administrator account?  (this is the default allowed after SCVMM is installed - until other users are added).
    also try restarting VMM server or VMM services once.
    this occur if the SQL database owner is indicated as NULL.  Try adding the SQL SA account as db owner.
    refer this once -
    https://social.technet.microsoft.com/Forums/en-US/a4199cb2-ccbf-4bb0-96c1-7a640143f81b/error-id-1615-vmm-is-unable-to-perform-this-operation?forum=virtualmachingmgrhyperv
    Thanks, S K Agrawal

  • JSP to Upload file from client machine to Web Server!

    Hi,
    I want to upload a file from client machine to web server in order to send it as email attachment, How can I do it? After uploading the file the class should give me the path where the file is stored on the web server and the file name in return!
    I know the HTML <file> field but dont know how to copy it on web server, HTML Part will be:
    <FORM ENCTYPE="multipart/form-data"
    method="POST" action="My.jsp">
    <INPUT TYPE="file" NAME="mptest">
    <INPUT TYPE="submit" VALUE="upload">
    </FORM>
    Please help!
    Thanks,
    - Rahul

    You can use cos.jar provided by O'Reilly from http://www.servlets.com/cos/. Take a look at com.oreilly.servlet.multipart.* classes.
    Package is provided with source, classes, documentation and, of course, ready-to-use jar file.
    It is really usefull and - ready!

  • Apex link not able to connect from local machine.

    Hi,
    Here is the scenario.
    I have installed oracle apex 3.2 in my vmware linux machine.
    I'm able to connect the link (http://b03apex.domain.com) from my linux(vmware) box but I'm not able to connect from windows local machine.
    I tried to ping the ip, from both the ends are working but not sure why I'm not able to connect from windows local machine.
    local windows ip: 192.168.1.2
    vmware Linux ip address : 192.168.1.3
    Do I need to do add any parameters in the Apache logs to connect from windows local machine.?
    Need your suggestion.
    Thanks, Muhammed.

    user9354175 wrote:
    I tried to ping the ip, from both the ends are working but not sure why I'm not able to connect from windows local machine.In that case, it means there is network connectivity. The problem is thus something else - like a firewall or name resolution failure.
    >
    local windows ip: 192.168.1.2
    vmware Linux ip address : 192.168.1.3
    Do I need to do add any parameters in the Apache logs to connect from windows local machine.?No.
    Can you ping the VM hostname from your Windows console (instead of IP address)?
    Have you tried in your Windows browser the following URL (using IP address of the VM instead of the hostname)?
    http://192.168.1.3/
    Have you checked that your browser is not configured to use a proxy server?
    Have you checked your Windows firewall for allowing tcp web traffic to the virtual machine?
    Have you checked for the same on on the virtual machine (firewall will be likely be done using <i>iptables</i>).

Maybe you are looking for

  • Caller id function

    Hi, I have a problem with the caller id function for my iphone 6, its not functioning. The software has been updated but still not functioning. It's light green not pure green as normal. can someone assist with this problem or I should sent it for a

  • HT4859 can I use icloud to backup my mac?

    can I use icloud to backup my mac?

  • VBA check save Outlook .msg files

    hello guys, how do i check saved msg file on a folder or network share  via VBA  and determine whether it is an Inbox item or a Sent Item? Of course, can open the msg file and check whether its an inbox or a sent item. But it's ideal only for a few o

  • Error upgrading company db from patch45 to 47

    Hello, Im having an error upgrading my company database to patch 47 from patch 45. while on the upgrade screen, I can see on the status bar that the upgrade process cannot find a "Department" object Ive done upgrades before with no problem, but this

  • My BB keeps having fits and not working

    Basically it wont allow me to type anything into bbm or a text message without the cursor moving half way down the text page. I presss full space and the cursor keeps moving and moving. Another problem im facing is when I press space it will put a fu