Interaction with different interfaces

Hi,
I m using two ethernet interface (iprb0 & iprb1) in Solaris 10, i want to interact with both from my same application program, but i don't know that how i can open both of them as the driver file (iprb) is same for both interfaces, so i can assure that from which interface i m interacting, if i do:
int fd=open (/dev/iprb, 'O_RDWR');

Basically solved it myself. I'm now using the actual required component usage (IEmployee) as entry point for the factory, which will create the correct implementation component (based on configuration). For IModelComponent specific methods I can use the getInterfaceController() of the employee component usage class and cast it to the model component interface.

Similar Messages

  • Referencing component usage with different interfaces

    Hi experts,
    First of, some details;
    - I'm on NW04.
    - I have a generic WDP interface named: IModelComponent
    - I have a specific WDP interface named: IEmployee
    - I have a WDP component implementing both interfaces named: Employee
    Now I want to create some sort of component factory component. In this component I have:
    - defined 'Used Web Dynpro Component' IModelComponent
    - Created a method getComponentUsage (static names just for clearer example):
    wdThis.wdGetIModelComponentComponentUsage().createComponent("x.x.x.org.mdc.empl.EmployeeModelComponent", "x.x/x~org~mdc~employee");
    return wdThis.wdGetIModelComponentComponentUsage();
    Next I have a client view component which refers to the component factory and the employee interface
    - defined 'Used Web Dynpro Component' IEmployee
    - defined 'Used Web Dynpro Component' ComponentFactory
    - On request I call the factory method getComponentUsage
    Now, when I use this component usage the following way:
    wdThis.wdGetIEmployeeComponentUsage.enterReferencingModeUnsafe(receivedComponentUsage);
    Then things work perfectly! This is basically what I want to achieve.
    But the method enterReferencingModeUnsafe is deprecated, so I wonder if there are other, better ways to achieve usage referencing of components with multiple interfaces (create as one interface, use as the other interface).
    Looking forward to any comment.
    Grtz,
    Chris
    Edited by: Chris van de Wouw on Feb 6, 2010 5:20 PM

    Basically solved it myself. I'm now using the actual required component usage (IEmployee) as entry point for the factory, which will create the correct implementation component (based on configuration). For IModelComponent specific methods I can use the getInterfaceController() of the employee component usage class and cast it to the model component interface.

  • RADIUS query with different interface than Management

    Hi there,
    I am currently setting up a wireless controller which is to service several SSIDs which are mapped to physically separated LANs.
    So far there has been no problem in doing the config.
    However I discovered later that for each SSID a separate RADIUS server has to be queried, which are also in physically separated networks and where no routing exists/will exist.
    Now my question is, if there is any possibility to somehow tell the WLC to use a different source interface in order to enable the usage of
    RADIUS Server 1 on Network A for SSID A and to use
    RADIUS Server 2 on Network B for SSID B.
    Regards,
    Patrick

    I tested the feature and authentication requests via the dynamic-interface were successful when enabling this feature.
    @George: We run the latest code 7.0.116.0, which must be the first where this feature got introduced. I don't recall seeing it in 7.0.98.0.
    However the explanation of this feature is found in the documentation of WCS. Not a single mention in the WLC documentation.
    Regarding the routing feature. I have tested it also on a 5508 WLC. As soon as you try to define a gateway, which is not in the service-port subnet you'll get an error, which is effectively the same problem.
    But as the "Radius Server Overwrite interface" feature does exactly what I needed, this issue is solved.

  • One web application - interact with many application

    I need to create web application that will be interact with different applications by different protocols. On the input of this application will be different xml files (commands).The input must be implements as stream input (something like IBM WebSphere Business Integration Connect)
    This web application must be consist from differents modules. Every module do the concrete task. E.g. with file1.xml - web application connect with MS Outlook. With file2.xml - web application connect with some web service and so on.
    What kind of java web technology I can use to create this web application?
    Thanks.

    You can use web service to accept input XML for your application and remaining technology depends upon the nature of target system and your work involved. For example, to consume target system web service you can think of using JAX-WS.

  • Must I define abstract  interfaces with different names for BPM?

    Must I define abstract interfaces with different names for BPM?
    When interface appeared several times with different values and usage.
    Of course they are the same message type.

    Hi,
    Check this
    RFC Scenario using BPM --Starter Kit
    Regards
    Seshagiri

  • Upload bank statements interface(with different layouts)

    HI
    My component is upload bank statements interface(with different layouts) .
    to which module it belongs exactly.And how to proceed with this....
    plz give u r sugessitions.................
    pavan kumar

    firstly go through the documentation and TRMs
    if you have any doubt in the coding . the send the code and errors encountered
    so, that we can help you.

  • Math Interface Toolkit in Matlab: Can I interact with a VI as a parallel process

    I'm curious if it's possible to create a Matlab MEX file using the LabVIEW Math Interface Toolkit (MIT) that can be called in matlab and accessed while running?
    I'd like it to effectively work just like any other object in matlab.  I'd like to be able to query the object while it's running, dump values out of a buffer, and even hook events if possible.
    As it currently stands, the VI to MEX setup seems to just allow me to call a VI, run it, and then drop out.  I want to be able to continuously acquire and access the data as it's coming in and interact with it from matlab (i.e. fully integrate the VI into my matlab code as a separate object).
    Is this possible in some form or am I stuck with dedicating the matlab interface to the VI whenever I want to call it?
    Thanks

    Hi GusLott,
    You are correct that when you call a VI the command line will not continue until the output is obtained.  This makes sense since in LabVIEW that is how a VI operates (a subVI does not ouput until all outputs are obtained).  I believe this is also how commands in MATLAB work as well (correct me if I am wrong).  On the otherhand this is not a disadvantage in labVIEW since you can run VIs in parallel.  If you can create some way to run parallel threads in MATLAB then you will be able to do two (or more) MEX calls at once. 
    As far as object oriented programming goes, there is a labVIEW OOP, but I do not think it has been tested in conjuction with the Math Interface Toolkit.
    Brian K.

  • How to make player interact with game world objects?

    I am trying to make a side scrolling rpg game similar to South Park Stick of Truth. Right now I have the player done and i sketched the outline of the room i wanted in order to test the the collision detector. So right now there are only 4 classes. The main class that adds the walls, player and does something with the constants class.The walls class that doesn't really do anything. The player class that moves with keyboard input, test for collisions with the walls and initiates the walking animation. There is also a constants class that i don't really know how it works but based on tutorials I have seen they want me to use it. I want to add different things in the room that when the player gets close enough to, it allows the person playing to press a button and it will interact with it. It could be for making a small animation, having the player do some different dialog or have a closer look at the object. I can't find any tutorial on how to do that. All the actionscript 3 tutorials are for really simple shooter and platform games that don't interact with the game world at all. Any help would be greatly appreciated.

    You could make all of your "interactable" objects implement an interface. Say for example your Interface defines showButton() and hideButton() functions. Then, when you detect a collision on any of these objects, you call showButton(). The button can be set up to dispatch an event that your Main Class is listening for. For example, this might be a custom MoreInfoEvent that has its own "infoItem" property in addition to the other properties Event has.
    The code might look like this:
    protected function onButtonClick(e:MouseEvent):void {
         dispatchEvent(new MoreInfoEvent(MoreInfoEvent.SHOW_INFO, true, "rockObject"));
    Then the MainClass would do something like this:
    protected function onMoreInfoEvent(e:MoreInfoEvent):void {
         switch(e.infoItem) {
              case "rockObject":
                   rockInfo.visible=true;
                   break;
              //other case statements for other info
              default:
                   break;
    If you don't know how to create a custom event, there are a lot of tutorials for that.

  • Creating a list with different row sizes...

    I'm new to AS 3.0 and CS4 and I've been getting up to speed
    on all of it. I've used the List component before with my own
    CellRenderer. I now need to create a list with different row
    heights. The List component is great and does everything that I
    want but it requires all rows to be the same height.
    I'm unsure of where to go. Creating my own class seems like a
    lot of work. The TileList and Grid components don't allow different
    sized (and dynamically changing) row heights either. Is there some
    base class (SelectableList? BaseScrollPane?) that I should extend
    or do I need to just bite the bullet and write it all from scratch?
    I need each row to have it's own height and interaction with
    a row could change the height of the row. The main use is a list of
    data. If the user clicks in an item, it turns the display into
    something they can edit (which will need more height).
    Thanks for any thoughts on a direction I should think about.
    By the way, I really like that AS 3.0 is much more consistent of a
    programming language than previous MX versions that I've used.
    We're doing a lot of AS/Flash/AIR work with it and it's turning
    into a wonderful environment...

    Any ideas about this??

  • I have a G5 which I intend to keep.  Now that I have updated my iphone 4s to iOS 7.0.  I cannot add music to my iphone or upload photos to iphoto.  I have the last itunes 10.6.3. which was supported by apple.  itunes will not interact with my iphone on an

    I have a G5 which I intend to keep.
    Now that I have updated my iphone 4s to iOS 7.0.
    I cannot add music to my iphone or upload photos to iphoto.
    I have the last itunes 10.6.3. which was supported by apple.
    itunes will not interact with my iphone on any level.
    Apple made all the equipment I use.
    Bentley and Ferrari etc do not stop making parts for their cars?
    The least Apple could is.
    A. Update itunes to run on a G5
    Regarding iOS 7.0 you have totally lost the plot.
    We buy apple why?
    Quality.
    Intuitive interface.
    Stable software.
    Design.
    All that Steve Jobs consider sacrosanct.
    Quality is about ongoing support longevity of product.
    Its not about trying to sell to every person on the planet, others are way ahead of you.
    So try respective the customers you have, it wont be long before theirs a better operating system and your lead in hardware is marginal. 
    Regards
    Glyn Evans
    My post on facebook this morning.
    If you have an iPhone or iPad do not update to ISO 7 unless you want an operating system that looks like windows 8. The graphics looks like it was designed by a artistically challenged mongoose and the operating system is not intuitive something apple users expect. Overly complicated ugly and generally change for the sake of apples paranoia since the death of Steve Jobs.

    You need to update iTunes to 11.1 on your PC

  • How do I create an app to interact with my Web ? like skype or msn ?

    I need to create a downloadable interface like Skype or Msn which will interact with my website that is created on PHP and MySQL...
    What will be the best practices for this ? thanks in advance...

    You might take a look at Adobe's AIR platform which can use HTML, JavaScript, and Flash to develop applications that work on the desktop like a regular app but can also connect/interact with a web service. But that question is more in line with the Dreamweaver Application Development forum.

  • Timesten replication with multiple interfaces sharing the same hostname

    Hi,
    we have in our environment two Sun T2000 nodes, running SunOS 5.10 and hosting a TT server currently in Release 7.0.5.9.0, replicated between each other.
    I would like to have some more information on the behavior of the replication w.r.t. network reliability when using two interfaces associated to the same hostname, the one used to define the replication element.
    To make an example we have our nodes sharing this common /etc/hosts elements:
    151.98.227.5 TBMAS10df2 TBMAS10df2-10 TBMAS10df2-ttrep
    151.98.226.5 TBMAS10df2 TBMAS10df2-01 TBMAS10df2-ttrep
    151.98.227.4 TBMAS9df1 TBMAS9df1-10 TBMAS9df1-ttrep
    151.98.226.4 TBMAS9df1 TBMAS9df1-01 TBMAS9df1-ttrep
    with the following element defined for replication:
    ALTER REPLICATION REPLSCHEME
    ADD ELEMENT HDF_GNP_CDPN_1 TABLE HDF_GNP_CDPN
    CHECK CONFLICTS BY ROW TIMESTAMP
    COLUMN ConflictResTimeStamp
    REPORT TO '/sn/sps/HDF620/datamodel/tt41dataConflict.rpt'
    MASTER tt41data ON "TBMAS9df1-ttrep"
    SUBSCRIBER tt41data ON "TBMAS10df2-ttrep"
    RETURN RECEIPT BY REQUEST
    ADD ELEMENT HDF_GNP_CDPN_2 TABLE HDF_GNP_CDPN
    CHECK CONFLICTS BY ROW TIMESTAMP
    COLUMN ConflictResTimeStamp
    REPORT TO '/sn/sps/HDF620/datamodel/tt41dataConflict.rpt'
    MASTER tt41data ON "TBMAS10df2-ttrep"
    SUBSCRIBER tt41data ON "TBMAS9df1-ttrep"
    RETURN RECEIPT BY REQUEST;
    On this subject moving from 6.0.x to 7.0.x there has been some changes I would like to better understand.
    6.0.x reported in the documentation for Unix systems:
    If a host contains multiple network interfaces (with different IP addresses),
    TimesTen replication tries to connect to the IP addresses in the same order as
    returned by the gethostbyname call. It will try to connect using the first address;
    if a connection cannot be established, it tries the remaining addresses in order
    until a connection is established.
    Now On Solaris I don't know how to let gethostbyname return more than one interface (the documention notes at this point:
    If you have multiple network interface cards (NICs), be sure that “multi
    on” is specified in the /etc/host.conf file. Otherwise, gethostbyname will not
    return multiple addresses).
    But I understand this could be valid for Linux based systems not for Solaris.
    Now if I properly understand the above, how was the 6.0.x able to realize the first interface in the list (using the same -ttrep hostname) was down and use the other, if gethostbyname was reporting only a single entry ?
    Once upgraded to 7.0.x we realized the ADD ROUTE option was added to teach TT how to use different interfaces associated to the same hostname. In our environment we did not include this clause, but still the replication was working fine regardless of which interface we were bringing down.
    My both questions in the end lead to the same doubt on which is the algorithm used by TT to reach the replicated node w.r.t. entries in the /etc/hosts.
    Looking at the nodes I can see that by default both routes are being used:
    TBMAS10df2:/-# netstat -an|grep "151.98.227."
    151.98.225.104.45312 151.98.227.4.14000 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.14005 151.98.227.4.47307 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.14005 151.98.227.4.48230 1049792 0 1049800 0 ESTABLISHED
    151.98.227.5.46050 151.98.227.4.14005 1049792 0 1049800 0 ESTABLISHED
    TBMAS10df2:/-# netstat -an|grep "151.98.226."
    151.98.226.5.14000 151.98.226.4.47699 1049792 0 1049800 0 ESTABLISHED
    151.98.226.5.14005 151.98.226.4.47308 1049792 0 1049800 0 ESTABLISHED
    151.98.226.5.44949 151.98.226.4.14005 1049792 0 1049800 0 ESTABLISHED
    Tried to trace with ttTraceMon but once I brought down one of the interfaces did not see any reaction on either node, if you have some info it would be really appreciated !
    Cheers,
    Mike

    Hi Chris,
    Thanks for the reply, I have few more queries on this.
    1.Using the ROUTE CLAUSE we can use multiple IPs using priority level set, so that if highest priority level set in thr ROUTE clause for the IP is not active it will fall back to the next level priority 2 set IP. But cant we use ROUTE clause to use the multiple route IPs for replication simultaneously?
    2. can we execute multiple schema for the same DSN and replication scheme but with different replication route IPs?
    for example:
    At present on my system, I have a replication scheme running for a specific DSN with stand alone Master-Subscriber mechanism, with a specific route IP through VLAN-xxx for replication.
    Now I want to create and start another replication scheme for the same DSN and replication mechanism with a different VLAN-yyy route IP to be used for replication in parallel to the existing replication scheme. without making any changes to the pre-existing replication scheme.
    for the above scenarios, will there be any specific changes respective to the different replication schema mechanism ie., Active Standby and Standalone Master Subscriber mechanism etc.,
    If so what are the steps. like how we need to change the existing schema?
    Thanks In advance.
    Naveen

  • Need to "move" failover to different interface/port

    Sorry if this is the wrong area, we have so seldom had questions that were not otherwise handled I don't frequent this area.
    How difficult is it to change the interface used for active/standby failover? It's a working, already configured pair with standby, but I need to move the crossover cable and tell them to use a different interface. 
    ASA 5510 pair, already set up and working with failover that was originally configured on Ethernet port 0/3 by the senior network admin. It appears that from his use of interfaces or ports he used things straight out of examples on the web, including the interfaces used. 
    The senior network admin retired last spring and left me "in charge", gee, thanks.
    I need to make some changes and need an Ethernet port for a new important project.
    The Management 0/0 interface is unused and shutdown. We manage via inside interface from a specific subnet inside so don't need the dedicated management interface.
    I want to move failover FROM Ethernet 0/3  TO Management 0/0
    *This is the current setup:
    Result of the command: "sh run failover"
    failover
    failover lan unit primary
    failover lan interface failover Ethernet0/3
    failover link failover Ethernet0/3
    failover interface ip failover 169.254.255.1 255.255.255.252 standby 169.254.255.2
    *And this is the current interface configuration for 0/3 and Management:
    interface Ethernet0/3
     description LAN/STATE Failover Interface
    interface Management0/0
     speed 100
     duplex full
     shutdown
     nameif management
     security-level 0
     no ip address
     ospf cost 10
    I know it can run on the Management 0/0 interface because I see a lot of "how to configure" as if the ASA is brand new and several examples out there indeed show it being setup on Management.
    I'm looking for how to take an ASA pair that is currently configured and has a working functional failover configuration and simply "move failover" to a different hole or change the interfaces used for the "heartbeat" as it were.
    I assume it's not hard - but I also assume there's a specific sequence of events that must take place to prevent the pair from going into failover and switching lead roles........... 
    For example - would I shut off or turn off failover, and if so how, and on which ASA (frankly, I'm not sure how to access the secondary or standby if this must be done from or on the standby unit as I've never done that "deep" a config before)
    CLI is fine - I'd be just as comfortable in either ASDM or cli. 
    I sure hope this makes sense - I'm more of a troubleshooter and fixer than a designer or network engineer....
    And many many thanks - getting this moved will free up the interface I need and can really make a big dent in my project list while the supervisor is on vacation this week! I'd love to have this done and working before his return. 
    Oh, in case it does matter as I've been told, this is the Currently running license and versions shown here:
    Cisco Adaptive Security Appliance Software Version 8.4(4)1 
    Device Manager Version 6.4(7)
    Compiled on Thu 14-Jun-12 11:20 by builders
    System image file is "disk0:/asa844-1-k8.bin"
    Config file at boot was "startup-config"
    VRDSMFW1 up 141 days 4 hours
    failover cluster up 141 days 4 hours
    Hardware:   ASA5510, 1024 MB RAM, CPU Pentium 4 Celeron 1600 MHz
    Internal ATA Compact Flash, 256MB
    BIOS Flash M50FW080 @ 0xfff00000, 1024KB
    Encryption hardware device : Cisco ASA-55x0 on-board accelerator (revision 0x0)
                                 Boot microcode   : CN1000-MC-BOOT-2.00 
                                 SSL/IKE microcode: CNLite-MC-SSLm-PLUS-2.03
                                 IPSec microcode  : CNlite-MC-IPSECm-MAIN-2.06
                                 Number of accelerators: 1
     0: Ext: Ethernet0/0         : address is 0024.972b.e020, irq 9
     1: Ext: Ethernet0/1         : address is 0024.972b.e021, irq 9
     2: Ext: Ethernet0/2         : address is 0024.972b.e022, irq 9
     3: Ext: Ethernet0/3         : address is 0024.972b.e023, irq 9
     4: Ext: Management0/0       : address is 0024.972b.e01f, irq 11
     5: Int: Not used            : irq 11
     6: Int: Not used            : irq 5
    Licensed features for this platform:
    Maximum Physical Interfaces       : Unlimited      perpetual
    Maximum VLANs                     : 100            perpetual
    Inside Hosts                      : Unlimited      perpetual
    Failover                          : Active/Active  perpetual
    VPN-DES                           : Enabled        perpetual
    VPN-3DES-AES                      : Enabled        perpetual
    Security Contexts                 : 2              perpetual
    GTP/GPRS                          : Disabled       perpetual
    AnyConnect Premium Peers          : 2              perpetual
    AnyConnect Essentials             : 250            perpetual
    Other VPN Peers                   : 250            perpetual
    Total VPN Peers                   : 250            perpetual
    Shared License                    : Disabled       perpetual
    AnyConnect for Mobile             : Disabled       perpetual
    AnyConnect for Cisco VPN Phone    : Disabled       perpetual
    Advanced Endpoint Assessment      : Disabled       perpetual
    UC Phone Proxy Sessions           : 2              perpetual
    Total UC Proxy Sessions           : 2              perpetual
    Botnet Traffic Filter             : Disabled       perpetual
    Intercompany Media Engine         : Disabled       perpetual
    This platform has an ASA 5510 Security Plus license.
    Failover cluster licensed features for this platform:
    Maximum Physical Interfaces       : Unlimited      perpetual
    Maximum VLANs                     : 100            perpetual
    Inside Hosts                      : Unlimited      perpetual
    Failover                          : Active/Active  perpetual
    VPN-DES                           : Enabled        perpetual
    VPN-3DES-AES                      : Enabled        perpetual
    Security Contexts                 : 4              perpetual
    GTP/GPRS                          : Disabled       perpetual
    AnyConnect Premium Peers          : 4              perpetual
    AnyConnect Essentials             : 250            perpetual
    Other VPN Peers                   : 250            perpetual
    Total VPN Peers                   : 250            perpetual
    Shared License                    : Disabled       perpetual
    AnyConnect for Mobile             : Disabled       perpetual
    AnyConnect for Cisco VPN Phone    : Disabled       perpetual
    Advanced Endpoint Assessment      : Disabled       perpetual
    UC Phone Proxy Sessions           : 4              perpetual
    Total UC Proxy Sessions           : 4              perpetual
    Botnet Traffic Filter             : Disabled       perpetual
    Intercompany Media Engine         : Disabled       perpetual
    This platform has an ASA 5510 Security Plus license.
    Serial Number: ABC12345678
    Running Permanent Activation Key: eieioandapartridgeinapeartree 
    Configuration register is 0x1
    Configuration last modified by me at 15:03:07.132 CDT Mon Sep 15 2014

    If there was a "smack-self-on-forehead" icon here I'd use it now.
    Of course, totally logical - if you disconnect a monitored connection on the standby it's not about to take over as primary because it's had a failure and can't do the job, forcing the primary or active to remain that way. There's the key that would allow all other changes.
    Since the settings or config lines are in place already, then if I'm correct it's a matter of then just modifying what's there, and of course removing the name of the Management interface (no nameif) and making sure it's not shut down (no shutdown), etc.
    You are a handy person to have around. Thanks.
    By the way, *thanks to prior answers received here* and reading responses to others who had questions I can say I've set a record for this agency and done what no one else had been able to do - I've taken a troublesome LAN-to-LAN connection and made it trouble-free with a solid connection that is just 7.5 hours away from being up 90 days with no interruption, no collapse of any SA and improved performance.  I have 2 others out of our 34 that aren't too far behind that. The boss has recognized this after seeing his monthly up-time reports.
    Once I get this done failover change made I will be setting up a "DMZ" of sorts and trying out my hand at telling the 5510s to forward specific traffic aimed at a specific public IP address to a specific server. (But that's another topic............)

  • Help: Windows cannot restore a system image to a computer with different firmware

    I want to recover a complete image of a Windows 7 operating system I have backed up to my other server. But I am getting the error "Windows cannot restore a system image to a computer with different firmware. The System Image was created by a computer using BIOS and this computer is using EFI"
    The image was definitely taken from this machine - the firmware has not changed!
    What do I need to do to restore the image?
    Background Story ..
    I bought a new HP 255 laptop per-installed with Windows 7 without Operating Systems instal disks (I will NEVER be stupid enough to do that again!).
    I took a complete image of the systems, as suggested so that I was well backed up.
    However, my machine corrupted its operating systems with a few weeks. The boot recovery CD did not work (would not boot). So in desperation, and because time was short I went out and bought another, legitimate copy of Windows 7 DVD with a license key (So now I have 2, legitimate copies of the operating system!).
    I installed the new copy of Windows 7 - but it was dreadful, because many drivers were missing. Mostly the missing drivers were not available on the HP support site for this machine. ALso, boot up was increadibly slow compared to the original OS installation.
    So I created a new boot recovery disk from the new version of Windows, and tried to restore using that. New boot disk loads ok, I can find the old image on my network (after loading a few network drivers). But I won't instal the image - giving the above error message.
    I tried deleting the EFI partition from the disk (using GPARTED to reformat that partition). That killed the Windows 7 on the machine - but still gives the same error message when I try to re-image the machine.
    I have tried going into the BIOS settings .. HP 255 has a "Legacy Mode" - which I have enabled, but this makes no difference at all!
    I think that the kind of solutions I am looking for might be:
    1. There is a clever way of disabling EFI on my 255 so that it looks like a legacy BIOS machine, or
    2. This EFI this is wired into my new boot recovery disk - and there is a way of creating a boot recovery disk that does not use EFI
    This has taken me about 2 weeks so far,please help with any suggestions!

    DonOxley wrote:
    Erico,
    I suspect that "MSDOS" is what the Gparted tool calls "MBR" for a partition table, as explained here:
    http://superuser.com/questions/700770/mbr-equals-msdos-for-gparted
    I think that you are suggesting I give up on trying to recover the image I have stored on my server and just to instal Windows 7 from my new copy. There are two problems with this.
    1. After having systematically downloaded all of the drivers from the HP 255 notebook support page, I am still seeing missing drivers listed. Install the AMD graphics softpaq driver first. It also contains the chipset drivers.
    2. The machine is taking a hugely long time to boot up, and seems much slower with this version. Maybe that is a product of using "EFI" rather than "bios" - I don't know.
    My assumption is that HP had some special set-up option with their version of Windows which makes the machine more performant. It does not seem to be a coincidence that the image they deliver the machine with is not quite compatible with a 'normal' Windows 7 instal.
    So my original question stands: How do I recover the image that I saved away (as per instructed) when I first bough the machine?
    You still have not said what you used to create the system image. What is the "image" file's extension?
    You are mistaken in your comparison. MSDOS is an operating sytem MBR is a partitioning scheme.  that is comparing apples to oranges. 
    The article is making an oblique reference in that using GPARTED is more or less equated to using the diskpart utility at the command line. Everything done at the comand line is essentially  done by use of MSDOS commands. GPARTED does the same thing with LINUX commands via a graphical interface so you don't have to type in the commands in a  Linux console.
    Do you mean making a backup? a backup is not a clone which can be reproduced on different hardware. The SSD disk replacement does make the hardware differ from the original configuration.
    Follow the instaructions on the following tutorial to make your disk a GPT type before installing.
    http://www.disk-partition.com/articles/mbr-partition-table-to-gpt.html
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • How to upload records  in two different interface tables through WebADI.

    We have created custom integrator with two different interfaces to insert records in AP_INVOICES_INTERFACES and AP_INVOICE_LINES_INTERFACE. Also defined the custom layout in which we mention the header and lines column info to be displayed in the spreadsheet. When I tried to create document to upload the records into the interface tables, could find two different interface for header and lines , when we select the header and upload records into the AP_INVOICES_INTERFACES table it was successfull. But couldn't upload records inserted in Lines interfaces tables. How do we upload records in both the table do we have constraint with Web ADI can insert records to only one interface tables. Any recommendation highly appreciated.

    Raghu,
    Thanks for the reply,
    I have a concern, But if you are connecting a another database you have to create one more subreport and each time am creating connections across databases we have to create subreport and go for the design to show the record. Is it any way to have a common field or union records approach in crystal report 2008.
    For Example :
    Approach 1 :
    Emp name           Emp salary      (Common Header)
    Variable Field1    Variable field2   ( Iterations to be done here for records)
    Variable field 1 contains ---> emptbl(employee name), b.emptbl(employee name) (A database, b database, c database or any .db)
    Variable field2  contains --->  emptbl (salary info between databases)
    Approach 2:
    getting all the records and union all the records 
    Thanks
    Murali Sri

Maybe you are looking for

  • How can I get Adobe Photoshop element 5.0

    I need it to create a cd jacket for school

  • Is workflow included in 10.2.0.4 warehouse builder?

    Hi there Is oracle workflow included within 10.2.0.4? From otherhelpful replies, I have learnt we need to install oracle 10.2.0.1 then the 10.2.04 patch to bring us up to 10.2.0.4. We need to run process flows so I understand we need oracle workflow.

  • OpenGL.framework crashes

    hi everyone, my friend's mac is having a problem and i'm a pc system admin so my possibilities to help them are very limited. everytime they plug in the webcam to use with skype or even try to mount a dvd they get following error message: (command an

  • No contact from mod team re contract

    http://community.bt.com/t5/BB-Speed-Connection-Issues/End-of-Contract/td-p/37213 Sent an email to the one mentioned but have had no reply.

  • Temporary files beginning with "aa" created(?) by Illustrator

    Using Illustrator CS5, i'm noticing some files names "aaxyyyyy" with no extension (where xyyyyy is usually something like "r09035", a letter and then 5 numbers). I'm pretty sure Illustrator is creating these files. What are these files? Is it safe to