Issue with Graphic Adapter on a T400 model 6475-CA6 - BSOD daily few times

From the many T400's we have installed there are a few which cause blue screens while working. To us it seems something to do with the graphic adapter or driver or ?? Anyway, when we disable the power saving features to issue is gone..no matter how hard we stress the laptop..the problem has been gone. When we enable the option the problems start again.
We are using Windows XP with SP2
The stop error as described from the event viewer from last days
16/11 19:29 Error code 0x1000 0050 (0xe3e6 9000, 0x0000 0000, 0x8085 bc95, 0x0000 0001)
16/11 19:54 Error code 0x1000 0050 (0xe3f3 3000, 0x0000 0000, 0x8085 bc95, 0x0000 0001)
17/11 10:04 Error code 0x1000 000a (0x0000 0010, 0x0000 0002, 0x0000 0001, 0x8050 93d7)
18/11 12:00 Error code 0x1000 008e (0xc000 0005, 0xbf36 0310, 0xa5c1 1b58, 0x0000 0000)
anyone an idea... ?

mind detailing what power saving features you disabled?
T400s - 2815RW1 + Win7 Ultimate
Don't pm me for help! That's what the forum is for. Also, Google's nicer than me. Ask him.

Similar Messages

  • Issue with Apps adapter for Create_Cust_Account API

    Hi ,
    I need to invoke this package from apps adapter in BPEL(10.1.3.5).
    Create Customer: HZ_CUST_ACCOUNT_V2PUB. create_cust_account. This is a Over loaded procedure. Look for the Procedure with these Parameters.
    PROCEDURE create_cust_account (
    p_init_msg_list IN VARCHAR2:= FND_API.G_FALSE,
    p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
    p_organization_rec IN HZ_PARTY_V2PUB.ORGANIZATION_REC_TY
    PE,
    p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER
    PROFILEREC_TYPE,
    p_create_profile_amt IN VARCHAR2:= FND_API.G_TRUE,
    x_cust_account_id OUT NUMBER,
    x_account_number OUT VARCHAR2,
    x_party_id OUT NUMBER,
    x_party_number OUT VARCHAR2,
    x_profile_id OUT NUMBER,
    x_return_status OUT VARCHAR2,
    x_msg_count OUT NUMBER,
    x_msg_data OUT VARCHAR2
    But I’m getting the following error,
    An error occurred while running Jpublisher.missing method
    · I’ve tried with Database adapter. But in the runtime I’m not able to pass oracle apps initialization parameter in spite of using transaction and idempotent property in partnerlink.
    · Then I’ve tried to invoke fnd_global.apps_initialize first then call the package from database adapter, but it fails again, apparently its not able to execute both DBadapter in same database session although they are in same BPEL transaction.
    When I’m passing the initialization parameters in adapter created wrapper procedure then its working fine and customer got created.
    Please let me know where I’m going wrong or issue with apps adapter.
    It’s urgent …
    Thanks in Advance,
    Shreekanta

    Thanks for the reply.
    I'm able to execute the BPEL flows using DB adapter in same session and customer got created.
    But I'm wondering why I cant invoke the API using Apps adapter though its standard one.
    wsdl file is not getting generated as the adapter wizard not get completed.
    Do u have any idea why its giving ' error occurred while running Jpublisher.missing method' error?should I conclude that apps adapter does not support overloaded procedure.

  • Issue with graphics tearing on thumb scroll in Flex 3

    We are seeing some off issues with graphics (one using the charting package and the other using degrafa) tearing on thumb scrolling in a large Flex 3 app.  It's very hard to reproduce on OSX with the latest versions of Safari and Firefox, but it shows almost immediately when you run the app on Windows or Linux (regardless of the browser).  I took one of the pieces out of the app and put it into a very simple testbed app and can't get the problem to show on Windows (i was hoping to isolate the issue in a smaller test case, but no such luck).
    So, ii've got a few idea's on how to work around the issue, but i was wondering if anyone else has seen this type of problem before?
    Problem:   
         - graphics tear on thumb scroll
         - doesn't happen if you click in the track or use the arrows
         - one view is using the charting package, the other view is using degrafa
    Thanks for any comments or suggestions...
    Richard

    SOLUTION:  changed wmode from "opaque" to "window" in the jsp serving as the wrapper for the app's main swf...
    Here's the reference we used to determine the proper setting for wmode;
    http://kb2.adobe.com/cps/127/tn_12701.html
    Thanks again for the response...  Richard

  • Issue with DB Adapter involving multiple tables

    Hi,
    Am facing an issue with DB Adapter with multiple tables. Here are the details.
    I have 4 tables. Header, Details,Products and Devices. The relationship is defined as follows:
    Header has 1:M relationship with Details.
    Details has 1:M relationship with Products.
    Products has 1:M relationship with Devices.
    I want to select the details from all the tables for a particular header_id and detail_id. Defined 2 parameters and query is created with parameters.
    SELECT DISTINCT t0.FILE_NAME, t0.UNIQUE_SEQUENCE_NUMBER, t0.HEADER_COUNT, t0.TOTAL_DEVICE_COUNT, t0.FILE_DATE, t0.FILE_SEQ_NUMBER, t0.DEVICE_COUNT, t0.PHONE_TYPE, t0.PHONE_OWNERSHIP, t0.TRANSACTION_TYPE, t0.PURCHASE_ORDER_NUMBER, t0.CUSTOMER_ID, t0.CUSTOMER_DEST_SUFFIX, t0.LOCATION_DESTINATION, t0.MASTER_FACTORY_ORDER, t0.MASTER_FACTORY_ORDER_LINE_NUM, t0.ENT_ORDER_NUMBER, t0.DELIVERY_IDENTIFICATION_NUM, t0.UEDF_REVISION_NUM, t0.STATUS, t0.INBOUND_BPEL_INSTANCE_ID, t0.ERROR_DESCRIPTION, t0.INBOUND_FILE_VERSION, t0.CREATED_BY, t0.CREATION_DATE, t0.UPDATED_BY, t0.UPDATE_DATE FROM EDF_HEADER_STG_INT t0, EDF_DETAILS_STG_INT t1 WHERE (((t0.FILE_NAME = #file_name) AND (t1.EDF_SERIAL_TYPE = #prod_type)) AND (t1.UNIQUE_SEQUENCE_NUMBER = t0.UNIQUE_SEQUENCE_NUMBER))
    I expect the DB Adapter to retrieve the records for the parameters passed. i.e only those records from details table which matches with the parameter I passes in (t1.EDF_SERIAL_TYPE = #prod_type) . But I see that the DB Adapter retrieves all records from the details table for a particular unique_sequence_number(unique_sequence_number is primary key for headers table and foreign key for details table). Could you pls tell me how can I retrieve only selected records from the details table?
    Regards,
    Meenu

    Yes. When I run this query in DB, I get one record . While defining DB Adapter, I have imported 4 tables and also defined the relationship between the tables. In my case, column unique sequence number is primary key of headers table and foreign key of details table.The above select query is generated by the DB Adapter for the parameters I have passed in.
    My data is as follows:
    Headers table:
    file_name uniq_seq_num
    file_1.xml 220
    Details table
    product_id unique seq num edf_prod_type
    111 220 A
    112 220 B
    113 220
    Now, I call DB Adapter with parameters 'file_1.xml' (file_name)and 'A'(prod_type). I expect the DB adapter to retrieve only one record with product_id 111 in the detailscollection. But I see that the adapter retrieves all records from the details table without considering the value of prod_type.
    Edited by: user13276819 on Mar 19, 2012 6:32 AM

  • TS1398 I have the ipad retina display version - I have a BIG issue with this when out and about that on about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!

    I have the ipad retina display version - I have a BIG issue with this when out and about, that only about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!
    The HTC hotspot works fine with everything else I connect to it.
    Also - ipad will not connect to my HTC via bluetooth. Again, I can connect to everything else with my HTC other than my ipad.
    I have to say this is my first venture into Apple products and I have always wanted to get away from my windows based laptop to get a MacBook, the problems I have had (flash player etc) & continue to have (as above) are putting me right off swapping over. I HATE technology that doesn't work and my ipad has been hard work!

    I stated my ipad as being an ipad2, but I now think it is a 3??? It was new Jan this year and is the 64gb retina display version.
    I really would like to get to the bottom on this problem wit mobile hotspots as it is sitting on my desk next to me now and I cannot get it to connect to my HTC mobile hotspot!!!! It might be taking a flying lesson soon at this rate!!! Grrrrrrr...........

  • Issues with graphics ... force 'safe mode' graphics in normal mode?

    Hi,
    I have a late 2007 MBP with the ATI graphics chipset. Everything was working fine other than a few distorted screens at the very start... now I can only get in to safemode.
    I can not get into the login window on normal and sometimes it flicks to a screwed up display with beachball (display b/w beachball is coloured) everything appears to work fine in safemode other than the obvious fact none of the other extensions are enabled (sound, wifi etc)
    Is it possible to force the OS to load normally but without the accelerated graphics? When I turn on the computer it usually shows distored at the apple screen and then clears up to a grey screen and usually goes blue before failing at screwed screen + visible beachball.
    I've reset the pram,
    fixed permissions and everything else using applejack
    removed refit
    fsck -fy
    I would try to do an archive and install but unfortunately the drive has died on this laptop. I did try to boot from a mac server using netboot / netinstall however I get the same issues as normal mode.
    I just find it really frustrating that I can type here with net access in safeboot and use almost all I use this for anyway...
    I also bought a external dvd drive with my mac mini server however the laptop does not seem to detect that.
    Anyone with any thoughts? thanks

    Is it possible to force the OS to load normally but without the accelerated graphics?
    Not with this model. Some newer MBPs had both integrated graphics and a discreet graphics chipset, but not those having the NVIDEA 8600M GT chipset, which I suspect yours does.
    There are defective NVIDEA 8600 chipsets in the Late 2007/Early 2008 MBPs and, if that it the source of your problems, there is no home remedy--the logic board must be replaced.
    Fortunately, Apple has a program that covers this at no charge to you:
    http://support.apple.com/kb/TS2377
    I suggest you print out that page and take it with you; it seems some Apple Store employees and AASPs are not aware of the program. The techs have a special tester that quickly determines if the NVIDEA chipset has failed and the computer qualifies for the free logic board replacement. If that test fails to detect a bad graphics chipset, then something else is afoot.
    The point is that, with your model, you need to eliminate the NVIDEA curse first before trying further diagnosis.
    I would try to do an archive and install but unfortunately the drive has died on this laptop.
    Try a cleaning disk. It's amazing how meay people here report being told by a tech teht the optical drive was dead but resurrected it with a simple cleaning
    Message was edited by: Allan Jones

  • Satellite P300-1AN - Touchpad issue with AC adapter

    I've a Satellite P300-1AN notebook and since the beginning (two weeks)
    I have a touchpad issue: it is not immediately responsive and the pointer trembles when touching the pad. Very often it freezes for just one or two seconds.
    This is VERY annoying. A USB mouse works perfectly.
    I tried reinstalling ALPS drivers, tried Synaptics ones, tried just Windows Vista drivers: no way.
    Now I have found the reason: this issue is present only when the notebook is powered by AC adapter.
    With battery the touchpad is perfect.
    I contacted Toshiba Service and thay said that they won't change the AC adapter if I don't try before a complete system restore!
    Isn't it simpler just try with a new adapter and only then, if the problem persists, try more drastic procedures?
    Has anyone had this same issue?

    > I contacted Toshiba Service and thay said that they won't change the AC adapter if I don't try before a complete system restore! Isn't it simpler just try with a new adapter and only then, if the problem persists, try more drastic procedures?
    The point is that your notebook should be always checked using the Toshiba factory configuration.
    Why? Because the ASP wants to be sure that this issue is not related to a software problem (compatibility issue with 3rd party applications). The software issues are not covered by warranty.
    Furthermore the ASP will always recover the notebook before checking any hardware parts for a malfunction. Therefore you should always backup your data from the HDD before you will send the notebook for checking.
    I would recommend to reinstall the OS using the Toshiba recover disk and then check if the issue would appears.
    If yes then you can contact the ASP again and could provide all details which are necessary for an technician.
    Bye

  • Issue with minidisplay adapter and wifi

    I'm not sure if anyone else is having this issue, but my gf is having an issue when she connects her 13" macbook pro to her monitor via the minidisplay dvi adapter. When she connects it her wifi disconnects and has no internet access at all, but when she disconnects it the internet comes right back on. She's using a generic adapter but what would that have to with the wifi? She uses a linksys G router and is using 10.6.1

    This thread caught my attention - because since switching last week from a late '06 Macbook to the Macbook Pro 13", my Wifi performance at home has gotten slow and unreliable.
    I'm using the Apple MiniDP-DVI adapter, connected to a 24" Dell monitor, which has worked great for a few years on my white Macbook. My base station is a Linksys WRTSL54GS, located about 20 feet away from my desk.
    So, I tried some speed tests with and without the DVI. Performance with the adapter connected is terrible, disconnected it's perfect. Further testing shows that positioning matters.
    When the adapter is turned back 90 degrees, leading the monitor cable towards the back of my desk, Wifi performance is bad. When I turn the adapter so it sticks straight out the left side of the Macbook Pro, performance is normal.
    This is a little weird, but an acceptable workaround for me.

  • Issue With Apps Adapter JDev 11.1.1.3

    Hi ,
    We are facing some issue with Oracle Apps Adapter with Jdev 11.1.1.3. The wrappers for PLSql APIs were not properly generated.
    If anyone having such issue/solution pls share the same.
    Thanks In Adv
    Venkata Madhu

    Hi Anuj,
    I sent email to ur official id with the issue details. 1 query i have here, Can i generate wrapper using 10g Adapter and consume in OSB 11.1.1.3?.
    Also some funny issues we are facing with API's. If the API create/modified, immediately we couldn't able to generte the wrapper if generate also, the response is not in xsd defined format.
    But if we re-generate the wrapper after sometime, it work with no issues. Don't why.
    Regards
    Venkata Madhu

  • Issues with FTP adapter

    Hello,
    I m facing issues using the FTP adapter. I am using 10.1.3.1 standalone installed in my desktop.
    1) The FTP adapter doesnt poll continuously for the files. It dies off as soon the folder is empty. If there are incoming files after sometime, the BPEL process fails to pick them. I created an empty BPEL process that has a recieve activity from an FTP adapter as partner link
    2) The files are fetched and deleted but are never archived, despite setting the archive files. Can we not archive those files in another folder of same FTP server ?
    3) Sometimes, the files are deleted, but there is no activity or process shown in the BPEL console.
    Can you please help me with these issues
    Thanks
    Harinath Gandhi

    Are you able to upgrade to 10.1.3.3. A lot of issues with adapters are solved in this release.
    Marc
    http://orasoa.blogspot.com

  • Classloader issue with resource adapter and webservice

    The following applications are planned to be deployed on the server.
    1.My-shared-lib.ear (J2EE shared library).
    2.My-Service-ear.ear (Service)
    3.My-Resource-Adapter.rar
    The My-shared-lib.ear contains a war which has 3rd Party jars.
    The My-Service-ear.ear contains the service classes and refers to the My-shared-lib.ear using a library relationship. In our case, it refers to spring, Hibernate and related jars.
    The My-Resource-Adapter.rar contains the Resources Adapters. In this case it contains the Spring jars.
    Points on Setup
    1.The configuration does not specify any jars in the classpath.
    2.There are no 3rd party jars in the ext folder.
    *2.Issue Description*
    Issue while starting the Service EAR.*
    The development setup has an application server that has My-shared-lib.ear and My-Service-ear.ear deployed. This works fine.
    The proposed deployment architecture mandates that these applications be deployed on a server where the My-Resource-Adapter.rar is already running. We can deploy & start My-shared-lib.ear . However, when we try to deploy and start My-Service-ear.ear, it fails to start with the error. The detailed exception is found in Appendix A.
    Error Message:
    java.lang.NoClassDefFoundError: org/hibernate/ejb/HibernatePersistence
    *3.Options tried*
    1.Place all the required jars in the .rar.
    We placed all the 3rd party jars required for the My-Service-ear.ear in the My-Resource-Adapter.rar file. When we deployed all the 3 applications, all applications including the My-Service-ear.ear were deployed and started as well.
    2.Place all the required jars in the Service ear.
    We placed all the 3rd party jars required for the My-Service-ear.ear in the My-Service-ear.ear file with the <prefer-web-inf-classes>true</prefer-web-inf-classes>. When we deployed all the 3 applications, all applications including the My-Service-ear.ear were deployed and started as well.
    3.Altering deployment order.
    The deployment order was altered with a higher preference being given to the My-Service-ear.ear. When we deployed all the 3 applications, the application My-Service-ear.ear was deployed but failed to start giving the same exception.
    *4.Analysis*
    1.The spring jar though available in the library ear is being loaded from the .rar application by the classloader.
    2.The above point means that the library reference being provided in the My-Service-ear.ear does not seem to have any impact.
    3.In the 3rd scenario we observed that when the spring is removed from the .rar, it gets loaded from the My-shared-lib.ear. However when it tries to load Hibernate related classes, it fails.
    *5.Summary*
    Our understanding is that all the applications run within their own Classloaders. If classes are not found within the applications, then they should be looking at the Application Server. But here we see that they are referring to the classes in ‘.rar’ file. Hence we are unable to understand this issue. The above problem has workarounds. However, these options are not allowed as per the requirement. The requirement is that the application should run independent of the’ .rar’. Is there a better approach? Are we missing any configuration?
    Edited by: user8575867 on Oct 13, 2010 11:41 PM

    This thread caught my attention - because since switching last week from a late '06 Macbook to the Macbook Pro 13", my Wifi performance at home has gotten slow and unreliable.
    I'm using the Apple MiniDP-DVI adapter, connected to a 24" Dell monitor, which has worked great for a few years on my white Macbook. My base station is a Linksys WRTSL54GS, located about 20 feet away from my desk.
    So, I tried some speed tests with and without the DVI. Performance with the adapter connected is terrible, disconnected it's perfect. Further testing shows that positioning matters.
    When the adapter is turned back 90 degrees, leading the monitor cable towards the back of my desk, Wifi performance is bad. When I turn the adapter so it sticks straight out the left side of the Macbook Pro, performance is normal.
    This is a little weird, but an acceptable workaround for me.

  • Issues with Lenovo Update Retriever and T510i Modell 43149VG

    Lenovo System Update and Lenovo Update Retriever fail to install Wlan-Drivers on a T510i Notebook.
    Following Adapter is missing in dependency configuration: _PnPID   PCI\VEN_8086&DEV_0084&SUBSYS_13158086
    I added the card manually. Please fix Following package with this Adapter:
    g1w213ww_s32
    Thanks
    I will expand this Thread with TVSU and TVUR Issues soon

    Hi orth04, It sounds like ThinkVantage System Update is not working for you.
    One alternative is to manually download and install the drivers.
    The other alternative is to make System Update do what you want. Can you give us some more details about what happens?
    I don't work for Lenovo. I'm a crazy volunteer!

  • Z68A-GD55(G3) BIOS Issue With Graphics Card

    I have been having a strange issue with the BIOS. When I use my graphics card it appears all glitched. (see below picture) When the graphics card is removed it appears fine using onboard graphics.
    Processor: Intel Core i7 2600k
    RAM: 2x4GB Corsair Vengeance 1600MHz
    Graphics Card: MSI HD 6950 2GB Twin Frozr III
    PSU: Corsair TX850M
    Hard Drive: ADATA 60GB SSD

    What screen connection are you using ? Can you try a normal d-Sub connection to start with ?
    Also suggest you do a CMOS clear after the connection.
    What did you use before this card and did you clean all old drivers before installing the new card ?>>Driver Sweeper<<

  • Are there known issues with graphics cards?

    I have an Intel Core i7 2.66 GHz with 8GB of RAM and a graphics card with
    Intel HD Graphics
      Type:    GPU
      Bus:    Built-In
      VRAM (Total):    288 MB
      Vendor:    Intel (0x8086)
      Device ID:    0x0046
      Revision ID:    0x0018
      gMux Version:    1.9.21
    My screen occassionaly gets completely scrambled, where I move the trackpad and windows and other things will ghosted items will materialize in the background, though I am unable to click on anything or do anything, so I have to cut the power. This happens when I only have 1 or maybe 2 programs open.
    Are there any known issues with the graphics cards on these Macbook Pros? Anyone know what might be causing it?
    Thanks.

    Saw this on another post.
    Applecare Senior Advisor Txx Bxxx (I have his contact info in an email he just sent) just confirmed with me that the problem people are having with the App Store not loading is an apple issue with there servers, ITS NOT YOUR IPAD so don't go restoring it!   It's not happening to everyone however but they are looking into it, its really hit or miss.
    In the meantime ...........
    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    Best Fixes for ‘Cannot Connect to iTunes Store’ Errors
    http://ipadinsight.com/ipad-tips-tricks/best-fixes-for-cannot-connect-to-itunes- store-errors/
    Try this first - Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • Issue with Graphics card...suggestions?

    So I currently have a 17" iMac 1.83 ghz Intel Core 2 Duo (Late 2006) that we were using as a secondary desktop for our daughter to use.  Last summer, after loading Lion onto our current iMac, I tried loading Lion onto older iMac after upgrading the RAM to make it compatible.  The RAM install went fine and was tested and all was good.  After the Lion install, the screen went squiggly indicating some kind of graphics issue.
    I had my friend inspect the issue (who is a Mac Genius) and he confirmed after various tests the graphics card went bad.  He further informed me that the card can only be replaced by replacing the motherboard since the graphics card is integrated into the board.  Sounds like a costly fix, according to him, for a secondary computer.
    My issue is, is it common for graphics cards to go bad like that?  Did the Lion install have something to do with graphics failure?  It all just seemed weird to me since the machine never gave us any issues in the past?  Any thoughts or suggestions would be welcomed!! 
    Finally, what would be a fair price if I tried selling it for parts on CL or eBay?
    Thanks in advance!!
    Matt

    mg8r1016 wrote:
    Sounds like a costly fix, according to him
    Sure is it is in the upper hundreds of dollars.  My friend just had one replace under warranty and it would have cost $800 out of pocket.
    My issue is, is it common for graphics cards to go bad like that? 
    No, it is not common, although Apple did have a GPU supplier that provided some faulty ones in a few instances: http://support.apple.com/kb/ts2377
    Did the Lion install have something to do with graphics failure?
    No.  Installing an operating system should not cause a graphics card to fail.  Just a coincidence.
    Finally, what would be a fair price if I tried selling it for parts on CL or eBay?
    Whatever you can get for it really.  I'm not sure how one can accurately assess a value correctly on a Mac with such a crucial hardware component gone bad. 

Maybe you are looking for

  • With the new upgrade for Iphone 4s how do you close open apps?

    With the new upgrade how do you now close open apps

  • How to bulk import data into CQ5 from MySQL and file system

    Is there an easy way to bulk import data into CQ5 from MySQL and file system?  Some of the files are ~50MB each (instrument files).  There are a total of ~1,500 records spread over about 5 tables. Thanks

  • Sizing a standby system for Maximum Availability

    - Having primary and secondary sites with the SAME database server configuration. The server configuration will either be a SMP system with lots of processors or a RAC consisting of a number of 4-way SMP processors. - Data Guard shall be used for the

  • Getting errors while backing up

    I get errors with my new TC can anyone read these and tell me whats up and what I need to do. The people at the Apple store in Memphis were horrible and couldn't help. 6/15/08 11:45:41 PM /System/Library/CoreServices/backupd[348] Starting standard ba

  • How we can resolve such situations in R12

    We have R12.1.1 and db is 11.1.0.7 on redhat 5.3 ( 64 bit). How we can handle such situations ? ps -eo pcpu,pid,user,args | sort -k 1 -r | head -10 %CPU PID USER COMMAND 95.4 29239 oracle /opt/oracle/apps/tech_st/10.1.2/bin/frmweb server webfile=HTTP