Webutil configuration for windows 7 application server

hi all,
we are working on oracle forms/reports and recently upgraded the application server to windows 7 and database is oracle 10g
config:
os : windows 7
developer suite 10g
in this we are using the jre instead of jinitiator and did the all needful changes in formsweb.cfg. and webutil.cfg
now we can able to run forms/reports. but the problem is webutil is not working.
we are facing at run the reports as we select excel format and click ok button
the following error is coming
**oracle.forms.webutil.ole olebean not found**
any body kindly help me how to resolve this

See my comments in this post:
java.lang.ClassNotFoundException: oracle.forms.webutil.ole.OleFunctions
and this one:
webutil.cfg for win-7 64 bit client

Similar Messages

  • HTTP Receiver adpater configuration for Web Application server

    Hello All,
    I am trying to configure a HTTP scenario. I want to configue the receiver HTTP channel to connect to the WebApplication server installed locally.
    I am able connect to the WebApplication server from by browser by giving the URL http://inld50037931a.dhcp.blrl.sap.corp:8080/hello/.
    In my receiver HTTP channel i have configure as below
    Target Host : inld50037931a.dhcp.blrl.sap.corp
    Service Number : 8080
    Path : /hello.
    But it is failing in run time with error in SXMB_MONI : HTTP-Server Code 500 Reason Internal Server Error Explanation Unknown Host.
    And i checked the Trace and it is looking for taget URL :
    http://inld50037931a:8080/hello
    instead of
    http://inld50037931a.dhcp.blrl.sap.corp:8080/hello
    Kindly help me in correcting the receiver channel configuraion.
    Best Regards,
    Biswa

    Hi Babu,
    The given links might help you:
    http://help.sap.com/saphelp_nw04/helpdata/en/0d/5ab43b274a960de10000000a114084/frameset.htm
    HTTP Receiver Adapter
    Regards,
    Ajay.

  • Reports 9i/10g J2EE Thin Client for Websphere Application Server 5.x /6.x

    We are having Reports developed in 6i which needs to be migrated to Reports 9i/10G and we want to deploy these reports in web using Websphere Application Server 5.x /6.x without Oracle iAS.
    Do we have Reports 9i/10g J2EE Thin Client for Websphere Application Server 5.x /6.x and if so please let me know.
    Also if anybody has the configuration details please let me know?
    Thanks in Advance.

    No there is not. I don't think you can use reports services with Websphere - besides as far as I know it is not supported by Oracle (not anywhere in their support matrix).

  • LSMW with CI on System i and an additional Windows Application Server 4.70

    Hi together,
    I have a really tricky problem to realize a parallel processing LSMW Workload.
    In truth it isn't a problem to the parallel processing. It is a problem, how to declare the paths to the input files.
    The LSMW is splittet in four steps:
    1. Read data
    2. Convert Data
    3. Creating Batch Input File (IDOCS)
    4. Start Direct Input Program
    The first three points are using file in the IFS.
    In the 13 points of LSMW there is point " 7 Specify Files" where I can customize paths to the real existing input and output-Files, which are stored at the IFS on System i.
    For example:
    Legacy Data          On the R/3 server (application server)                           
        Materialtexte                  /usr/sap/direct/lsmw/material/matsta_text.txt      
    This works fine.
    Now we have added a Windows Applications Server in front of the 2-Tier enviroment to have more performance to the BTC workprocesses. Now we have two servers shown in sm51. One is the central instance (CI) and the other is the application server (AS), which is working together with the CI.
    <b>Now the big bug:</b> In the LSMW transaction, you can submit the job to batch (BTC) and can't choose the server (Instance) where the batchjob should run. So, sometimes the batchjob runs on the CI (iSeries) and sometimes the batchjob runs on the application server.
    But this is the problem, because the files in the IFS are only stored at IFS on iSeries. And if the Job runs at the application-server, the files is not found, and the job end abnormal.
    Now I tried to find a good solution. So I want to declare a patch in LSMW, that the batchjob is running successful at CI and AS.
    So I tried:
    \iSeriesshareusrsapdirectlsmwmaterialmatsta_text.txt
    But this is not really working, because the SAP WP can't find this file with this path.
    There is a second possibility: Not to submit the batchjobs by pressing F9 in the transaction LSMW but making an extra job in sm36 for each job. Not very smart !
    There is a third possibility: To duplicate the import Files to each Windows Application Server. Then it is possible to submit by pressing F9,  whatever server will be used.
    So my question is:  What is the right way? There must be some poeple in the world who have done a migration with iSeries an Windows Application Server together? Or not?
    best regards,
    Carsten
    Message was edited by: C.Schulz
    path corrected:
    iSeries\share\usr\sap\direct\lsmw\material\matsta_text.t
            Carsten Schulz

    >
    \iSeriesshareusrsap/direct/lsmw/material/matsta_text.txt
    Windows doesn't understand forward slashes, you need to use backslashes all way:
    Try the following on one of the application servers:
    Start - execute
    notepad \iSeriesshareusrsapdirectlsmwmaterialmatsta_text.txt
    If you can open the file, that's the way to go.
    You'd need to check in your program, whether the job is been executed on Windows or non-windows and substitute the slashes accordingly.
    Markus

  • Strange Error ! For Reading Application Server File

    Hi Friends,
    I am getting very strange error while compliling my code. As I am reading a text file for input from Application server for further processing. But my system is giving me an error.
    As the file and the path is not yet configured on the application server but i believe
    it has to allow me to compile the program and when i execute it then it will give an error as I have tracked.
    Kindly help.
    I have pasted the code below for reference.
    ===============================
    TYPES : BEGIN OF ty_file,
             line(1055) TYPE c,
              end of ty_file.
    data : gs_file type ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4  IN TEXT MODE FOR INPUT
                             ENCODING DEFAULT
                             WITH SMART LINEFEED.
      IF sy-subrc NE 0.
        MESSAGE e012.
        LEAVE LIST-PROCESSING.
      ENDIF.
      CLEAR : gs_file.
      DO.
        READ g_file4 INTO gs_file.
        IF sy-subrc NE 0.
          EXIT.
        ENDIF.
        APPEND gs_file into gt_cust_tmp.
        clear gs_file.
      ENDDO.
      CLOSE DATASET g_file4.
    ERROR i am getting
    Unable to interpret g_file4. Possible cause of error "Incorrect Spelling or Comma error".
    =======================
    Regards,
    pradeep

    TYPES : BEGIN OF ty_file,
    line(1055) TYPE c,
    end of ty_file.
    data : gs_file type ty_file.
    data gt_cust_tmp type table of ty_file.
    data : g_file4 TYPE string VALUE '\usr\sap\CISCO\SP\CISCO_SP_CHG.TXT'.
    OPEN DATASET g_file4 IN TEXT MODE FOR INPUT
    ENCODING DEFAULT
    WITH SMART LINEFEED.
    IF sy-subrc NE 0.
    MESSAGE e012.
    LEAVE LIST-PROCESSING.
    ENDIF.
    CLEAR : gs_file.
    DO.
    READ dataset g_file4 INTO gs_file.
    IF sy-subrc NE 0.
    EXIT.
    ENDIF.
    APPEND gs_file to gt_cust_tmp.
    clear gs_file.
    ENDDO.
    CLOSE DATASET g_file4.
    check this coding. in the read statement dataset is missing.
    with regards,
    Vamsi

  • Vhost configuration for Adobe Media Server running under linux.

    Please help me with Vhost configuration for Adobe Media Server running under linux.
    I was running a media sharing website for which I wanted to use Adobe Media Server.
    To use, AMS, I disabled the already installed Apache server and installed AMS along with the built in Apache server. I could successfully install AMS and could login to AMS Admin Console through my IP number.
    My existing website, www.mydomain.com is having its contents located at:
    /home/mydomain/public_html
    (Directory created under the old version of Apache not bundled with AMS)
    Users will be uploading their videos, which will get transcoded and will be delivered to the website visitors in the existing scenario.
    To use this website with AMS, this is what I did:
    I created a folder for my domain, www.mydomain.com as below
    /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    Copied Application.xml and Vhost.xml from /opt/adobe/ams/conf/_defaultRoot_/   and pasted them in /opt/adobe/ams/conf/_defaultRoot_/www.mydomain.com
    In the Application.xml file there are 2 entries:
    <Alias name="mydomain.com"></Alias>
    <AppsDir>${/home/mydomain/public_html}</AppsDir>
    Please help me with further steps to be completed:
    Do I need to create a separate VirtualHost entry in the Apache installed with AMS?
    If yes, can I specify already existing document root for my website (/home/mydomain/public_html) or do I need to create a separate folder under webroot/Apache ?
    If yes to point 2 above, then do I need to copy all the existing contents from /home/mydomain/public_html to the newly created folder ?
    I hope, I can serve all my static contents like html pages and php and media like video/audio. In that case do I need create alias to my Media/Alias folder or AMS will automatically start streaming when a video/audio is requested ?
    What other steps do i need to complete?
    Any help in this regard would be highly appreciated.
    Thanks and Regards

    Dear sir or madam,
    Here is Letswin Technology, which specializes in global servers, web hosting, VPS, VPNj. If anything I can do for you, pls contact us!
    Have a nice day!

  • Full Automatic Operation Tool for Windows Applications (ShareWare )

    Hi, FORTE users.
    May I introduce my client GUI test utility FIST.
    I'm an author of FIST.
    FIST is a Full Automatic Operation Tool for Windows Applications ( ShareWare )
    Windows95/98/NT compatible GUI robot
    ENGLISH PAGE :
    http://www.ask.ne.jp/~a800/index3.html
    Also.I have uploaded Simtel.Net and Shareware.com
    JAPANESE PAGE :
    http://www.ask.ne.jp/~a800/index2.html
    Also.I have uploaded vector.co.jp
    Aplicable to all cases as follows:
    Initializing a network configuration automatically such as
    TCP/IP configuration dialogues.
    Handling GUI applications seamlessly.
    You can have FIST run a GUI installer of your distributed
    clients' new version software remotely.
    Demonstrating your new GUI software attractively.
    Operating Power Point automatically on the international
    conference.
    Providing smooth description of your product on your
    mobile PC in your client's office.
    Sending/Receiving mail automatically
    Schedule playing of a musical instrument.
    For any other unmanned PC operation
    FIST has numerous batch commands and automatic
    filename generator
    Improving efficency of your software production line
    Automatic System shutdown and Power off available
    Needless programing ability
    FIST is so small size and portable
    You can gain FIST click below.
    Download FIST (93KB)

    Hi, FORTE users.
    May I introduce my client GUI test utility FIST.
    I'm an author of FIST.
    FIST is a Full Automatic Operation Tool for Windows Applications ( ShareWare )
    Windows95/98/NT compatible GUI robot
    ENGLISH PAGE :
    http://www.ask.ne.jp/~a800/index3.html
    Also.I have uploaded Simtel.Net and Shareware.com
    JAPANESE PAGE :
    http://www.ask.ne.jp/~a800/index2.html
    Also.I have uploaded vector.co.jp
    Aplicable to all cases as follows:
    Initializing a network configuration automatically such as
    TCP/IP configuration dialogues.
    Handling GUI applications seamlessly.
    You can have FIST run a GUI installer of your distributed
    clients' new version software remotely.
    Demonstrating your new GUI software attractively.
    Operating Power Point automatically on the international
    conference.
    Providing smooth description of your product on your
    mobile PC in your client's office.
    Sending/Receiving mail automatically
    Schedule playing of a musical instrument.
    For any other unmanned PC operation
    FIST has numerous batch commands and automatic
    filename generator
    Improving efficency of your software production line
    Automatic System shutdown and Power off available
    Needless programing ability
    FIST is so small size and portable
    You can gain FIST click below.
    Download FIST (93KB)

  • Transfer file from UNIX to windows application server G:\ drive

    Dear Expert,
    Really need some help on this, very urgent !
    The download program schedule in background to allow file store in unix.
    Can we do a unix command in abap program to transfer the file from unix to windows application server G:\ drive.
    The gateway for that application server is ukblmqg02.emea.astrazeneca.net .
    Anyone have the sample source code ?
    Thanks&regards
    Nislina

    Hi,
    1.
    There is  a FM 'ARCHIVFILE_SERVER_TO_CLIENT'.
    If the requirement need not necessarily require a FM to transfer a file, then you can also use transaction 'CG3Y' to transfer a file
    from application server to presentation server.
    2.
    Try to use FM  DOCFILE_SERVER_TO_CLIENT. I am using it to download a file from SAP application server to desktop.
    Source path should be application server file path along with file name i.e. /tmp/sample.xls.
    Target path should be something like c:\file.xls.
    Best regards,
    Prashant

  • Maximum LUN size for Windows 2012 server

    Dear All
                    What is the Maximum size of the LUN that can be provided to windows 2012 server. Earlier it was 2 TB for windows 2008 server has the policy changed or it is still
    the same.
    Regards
    Zubair

    Hi,
    Would you please let me know if your OS version is Windows Server 2012 or Windows Server 2012 Essentials? If it’s Windows Server 2012, you’d better ask the question in the File Services and
    Storage forum. We will get a better assistance there.
    File Services and Storage
    http://social.technet.microsoft.com/Forums/en-US/winserverfiles/threads
    Best Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • AADSTS50011: The reply address does not match the reply addresses configured for the application

    Can anyone tell me where to update the reply address?
    I have AD synced from on-prem to Azure, then I setup a website on azurewebsites.net, then created a CNAME record from portal.mydomain.com to portal.azurewebsites.net. When I try to login using portal.mydomain.com I get:
    AADSTS50011: The reply address does not match the reply addresses configured for the application.
    Can anyone help? Thanks
    Frank Russo

    Hi Frank69,
    Thanks for posting here!
    It appears to me that the application is unable to find the URL you have configured on Azure or could be missing from the list. As a result the application is attempting to authenticate against AAD but failing to match the URl it wants.
    I would suggest you to re-configure your AAD application on Azure and set one or more reply URLs.
    Reference link:
    http://www.matvelloso.com/2015/01/30/troubleshooting-common-azure-active-directory-errors/
    Regards,
    Sadiqh
    Disclaimer: This response contains a reference to a third party World Wide Web site.
    Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore, Microsoft cannot make any representations regarding the quality, safety,
    or suitability of any software or information found there.
    There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you completely understand the risk before retrieving any software from the Internet.

  • PDF has not been configured for this web server linux 11.1.2

    Hi,
    We installed 11.1.2 Hyperion WorkforcePlanning on Linux 32 bit OS.
    When the user opens the workspace and tries to see the "Profit and Loss" and selects
    "File --> Open In --> PDF format" , it just flicks for a sec and gives following message :
    " PDF has not been configured for this web server"
    Can somebody suggest me what to do ?
    Appreciate your response.
    Edited by: user536857 on Mar 22, 2011 3:07 PM

    Check your print server service on your foundation server, sometimes I have had that just stop for whatever reason.

  • Needs to be configured for Windows... but it already is!

    I just bought a brand new 80GB iPod Classic today. I hooked it up to my laptop's USB port, and the first time it showed up in my iTunes directory. Unfortunately iTunes informed that my iPod was corrupted, so I restored it. This happened TWICE.
    The third time I hooked it up, the iPod didn't show up in the directory, but a pop-box appeared telling me that the iPod needed to be configured for Windows, and would I like to configure now? I clicked yes, and nothing happened. Once I checked the iPod, I saw that the Version was 1.0.2. PC.
    Any ideas how to get my iPod up and running? Thanks in advance.
    iTunes version: 7.4.3.1.
    iPod version: 1.0.2. PC

    You need to connect your phone to iTunes on your COMPUTER, not on your phone.

  • Hardware Sizing for Oracle Application Server and MapViewer

    Hi all,
    I need to develop an application using Oracle Application Server 10g and MapViewer. The applicaction will, basically, do thematic maps based on a search criteria. The estimative is that we will have 25 users simultaneously using it.
    I´d like to have an idea about the hardware to support it.
    Do you know where I can get this information?
    Any documentation can help.
    Regards,
    Luis Augusto

    Hi Luis,
    It may depend on your database size, but I think at least you need to meet the minimum requirements for the Application Server. You can find additional documentation for the AS at http://www.oracle.com/technology/products/ias/index.html.
    However I would suggest some extra memory, and if possible the better CPU that you can get. MapViewer will render the spatial features on the server side, and depending on your database size and number of features returned from the queries, this extra memory will help.
    Joao

  • Oracle 9.2.0.1 software URL for window 2003 server

    I go to http://www.oracle.com/technology/software/products/oracle9i/index.html
    and download two zip files from Oracle9i Release 2 (9.2.0.1) for Windows SERVER 2003.
    However, one zip file is for the Oracle installer and the other zip file is for
    9.2.0.3 patch.
    There is NO 9.2.0.1 base software for window 2000 server.
    Where can I download the 9.2.0.1 base software for window 2000 server (32 bit)?
    Thanks.

    Hi,
    From metalink :
    Microsoft Windows 2003 (x86) Version 2003
    Oracle Database - Enterprise Edition Version 9.2
    Status: Certified
    Certification Note: Patch Set 9.2.0.3.0 or higher is required.
    That's why when you download 9iR2 for W2003 32-bits, you download the 9.2.0.3.
    Nicolas.

  • 10.1.0.5 Patch for Oracle Application Server 10g Release 1

    Hi Guys,
    Does anyone know what is the patch number for 10.1.0.5 Patch for Oracle Application Server 10g Release 1?
    This is a Oracle Application Server and not Oracle Database server.
    I tried searching on Metalink but not able to find it.
    Thanks in advance!
    Avinash.

    10.1.0.5 is not a version number for an OAS. It is only a version number for RDBMS.
    If you are running OAS 10.1.2.x with the Identity Managmenet/SSO (OID Server), & elected to have it install the Metadata Repository database for you, this was a RDBMS release below 10.1.0.5. The OAS patch to 10.1.2.2 or 10.1.2.3 required the RDMBS be updated to 10.1.0.5 first. This is the standard 10.1.0.5 update for your platform.
    use Advanced Search on Metalink
    To find the OAS 10.1.2.2 or 10.1.2.3 patch set, search for Oracle Fusion Middleware Server. Release 10.1.2.2 and 10.1.2.3. Look for the decriptions like "PLACEHOLDER BUG FOR AS/DS 10.1.2.3 PATCHSET RELEASE" OR "PLACEHOLDER BUG FOR AS/DS 10G R2 PATCH SET 2 10.1.2.2"
    To find the RDBMS 10.1.0.5 patch, search for RDBMS Server, Release 10.1.0.5. Look for the Description containing something like "10.1.0.5 PATCH SET FOR ORACLE DATABASE SERVER"
    The patch number is different per platform, so I can't tell you the exact #s without more info (OS)

Maybe you are looking for