Jms appropriate for this? + related questions

Hello
so we currently have 2 separate systems.
On the external system usesr can enter info into a db.
On the internal site, a process runs every 15 minutes to pull all new entries on the external site db into the internal site db.
I am about to suggest that jms be used to replace that process, because
1. it seems appropriate
2. the current process is buggy.
the client is extremely worried about security. Are there any known jms vulnerabilities that can be exploited if a firewall port is left open for JMS? (of course, a port is currently left open for the existing process, but I have to ask...)
from my understanding of jms, if an insert fails on the internal side, we can shunt the messages off to an error queue, and use jmx to try and reinsert. Is that correct?
Is there any way to stop an MDB from reading more messages off the Q if there is an error?
thanx
Message was edited by:
shrndegruv

Are there any known jms vulnerabilities that can be exploited if a firewall port is left open for JMSYou'll have to check with the JMS vendor you decide upon. Industrial strength implementations like MQ allow you to encrypt traffic between the two systems using digital certificates, which makes things about as secure as you're likely to get.
if an insert fails on the internal side, we can shunt the messages off to an error queue, and use jmx to try and reinsert. Is that correct?JMS is just a specification. You have to decide how you want to handle errors then write your code accordingly. Some general principles that may help...
Treat business errors and system errors differently. A business is one where the data is invalid, e.g. field too long for a database column. It doesn't matter how many times you attempt to reinsert the message it will always fail. The only way to handle this error is to fix the message or fix the data in the database.
Technical errors are things like network outages which can be recovered from. In this case it may be a good idea to keep retrying the message, but also raise some kind of alert.
Error queues can be a great idea in some circumstances, but you need to consider whether message order is important. What happens if update 1 gets moved to an error queue and update 2 is inserted before update 1 was applied. Is your data still valid?
You also need to think about transactionality. Unless the entire transaction (from remote db to local db) occurs in a distributed transaction you will always run the risk of lost or duplicate messages. Will duplicate creates be rejected? will duplicate (and out of sequence) updates cause problems? Can you afford to lose the occaisional message?
These problems aren't unique to messaging and if they haven't been thought about could explain why your current system is buggy.
Is there any way to stop an MDB from reading more messages off the Q if there is an error? Don't know about this one (maybe with JMX). You can certainly do the equivalent if you write your one JMS Listeners (just stop the connection), or if you use a middleware product such as IBM Message Broker (WBIMB).
Last thing to think about is that while JMS is a reasonable solution for this type of problem there must be data synchronisation tools out there to do this type of thing for you.

Similar Messages

  • I apologize for this stupid question, but...

    Question: How do I configure Management access to new WAN devices, hanging off a Prod switch, but that MUST NOT join or mingle with Prod network and have them route correctly across their own subnet?
    I am going from a single Internet link to dual internet link.
    New ASR, ASA and DMZ stack.
    Only access to new devices is via Management interface via a management vlan that runs across the Prod network.
        requires a default gateway of the Management vlan.
    The ASR has a WAN link to ISP and will get the default gateway (DG) via BGP.
    The ASA and the DMZ should point to the ASR HSRP address for it's DG
    Configuring this default gateway to HSRP causes me to loose the Management access.
    I have seperate eigrp instance on new devices.

    Hey Mc,
    For 3750X:
    http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst3750x_3560x/software/release/12-2_55_se/configuration/guide/3750xscg/swiprout.html#wp1319347
    For ASA5545x you may consider the following:
    http://www.cisco.com/c/en/us/td/docs/security/asa/asa90/configuration/guide/asa_90_cli_config/ha_contexts.html
    HTH.
    Regards,
    RS.

  • Please I would need the  correct Entity Diagram for this Two questions.

    This is to draw an Entity Relationship Modelling Diagram that will show inside dot for the "Must Need" end and outside dot on the "not must" end.
    You also need to put 1s and Ms relationship where needed.
    Question (1)
    The All Day Driving School
    The All Day Driving School has a number of instructors. Each instructor is assigned a car for their own use only.
    The school also has a spare car which is not assigned to a particular instructor.
    The driving school takes on pupils who are each allocated to an instructor. The pupil then books lessons with the instructor.
    New instructors have a short induction period before any pupils are allocated to them.
    Suggest suitable attributes for each table (assume that these will be discussed in detail with the user when you next meet with them).
    Extention to the scenario: Sometimes the pupil´s allocated instructor is not available when he/she requires a lesson, and a different instructor cover that lesson.
    How would you amend your diagram and tables so that it is still possible to identify the allocated instructor, but also to record who was the instructor for each lesson?.
    MY Answer:
    Attributes:
    Institution(InstitutionID, Name, Address, Telephone, Location)
    Instructor(InstructorID, Fname, Lname, Address, DOB, Gender)
    Car(CarID, RegistrationNo, Make, Model, Colour)
    Pupil(PupilID, IntructorID, LessonID)
    Lesson(LessonID, InstructorID, CarID, StartDate, EndDate, Cost, Details)
    Question (2)
    This is to draw an Entity Relationship Modelling Diagram that will show inside dot for the "Must Need" end and outside dot on the "not must" end.
    You also need to put 1s and Ms relationship where needed.
    London Allotments
    London City Council’s allotment department is responsible for the city’s allotments. Allotments are small areas of land that can be rented by council residents to grow vegetables and fruits. These allotments are rented by individuals. A site may have a paid manager who looks after the site and carries out any maintenance (such as repairing gates and fences): in this case, basic details of the manager are stored. As the site are spread throughout the city, each manager looks after exactly one site. A gardener rents a numbered allotment by paying the rented fee. Some gardeners rent several allotments but an allotment can only be rented by one named person. The allotments are in great demand and are never left vacant. Gardener’s details are recorded as soon as they are accepted for the waiting list,
    together with the date they were added to the list.
    Suggest suitable attributes for each table(assume that these will be discussed in details with the users when you next meet with them)
    Extension to the scenario: This scenario encourages you to draw an ERD that records only the current manager of each site, not previous managers. Similarly you
    were only expected to record the current gardener for each allotment. How would your diagram change if the council wanted to keep records of all the managers
    and gardners over several years? Does the basic rule for allocating foreign keys work for the new diagram? We are going to need more techniques, aren´t we?
    My Answer:
    Attributes:
    Council(CouncilID, Address, Telephone, Location)
    Manager(ManagerID, Fname, Lname, Address, DOB, Gender)
    Site(SiteID, RegistrationNo, Size, Location)
    Gardener(GardenerID, , Lname, Address, DOB, Gender)
    Allotment(AllotmentID, RentalFee, NameOnRent, AllocatedDate, ExpiryDate, RentDuration, AllocationSize, WaitingList)
    Individual(IndividualID, Fname, Lname, Address, DOB, Gender)

    This is to draw an Entity Relationship Modelling Diagram
    NOTHING involving Oracle exists in problem or solution.
    Problem can apply to any RDBMS.
    BTW, we don't do homework assignments.

  • I hope you know the answer for this "easy" question

    I created a package for my JSP and import it to be used in a JSP. It works great, but for some reason, it displays an error message saying it can't find the class in import. Can anyone explain that? Thanks.
    null

    Have you "registered" the class in the JServ.conf file in the JServ directory under the Apache install? The JServ engine will not know where to find the class that you want if it is not in any of the paths that were set up suring the install (CLASS_PATH environment variable). To register a class, look in the file for directives named wrapper.classpath= . Add the jar file that contains the class that you wish to use. This should fix your problem.

  • HT4990 What photo size is appropriate for this app?

    I have downloaded the app 'cards' to use on my iPad2 but each photo chosen from an existing library is rejected on the card as 'it's too large'. What size photo is allowable?

    I ran into this problem today, too. After briefly looking for an app that would resize my photo (iPhoto for iOS wouldn't) it occured to me that mail would, so I e-mailed myself my photo. I chose the large size, and Cards was fine with that size. I haven't mailed the card yet, but I think a 900 kB photo should be OK for a greeting card.
    As an aside, it's a bit weird that Apple's photo handling apps don't provide a mechanism for resizing photos, but their e-mail app does. Go figure...

  • Sorry for this newbie question...

    Requirement:
    return all documents which does not contain the word "mango"
    Code typed:
    where contains (ts_files.doc_blob, 'not mango', 1) > 0 )
    -->ts_files is the table containing the files.
    -->doc_blob is the blob field where files are located.
    Returned Error ?:| :
    ORA-29902: error in executing ODCIIndexStart() routine
    ORA-20000: Oracle Text error:
    DRG-50901: text query parser syntax error on line 1, column 2
    Can YOU help me, Please ?
    Mathew

    If you have some other criteria to put before the "not mango", that would work. With a small number of rows, "% not mango" works. However, with a large number of rows with various data, like most such tables have, "% not mango" is likely to result in a wildcard query expansion error. Some alternatives are to use "contains (...) = 0" or " not (contains ...) > 0". These will still use the domain index, but avoid the problem with the wildcard expanding to too many terms. Please see the demonstration below.
    SCOTT@orcl_11g> CREATE TABLE ts_files (doc_blob VARCHAR2(60))
      2  /
    Table created.
    SCOTT@orcl_11g> INSERT INTO ts_files VALUES ('apple')
      2  /
    1 row created.
    SCOTT@orcl_11g> INSERT INTO ts_files
      2  SELECT 'mango ' || object_name FROM all_objects
      3  /
    68584 rows created.
    SCOTT@orcl_11g> CREATE INDEX your_index ON ts_files (doc_blob)
      2  INDEXTYPE IS CTXSYS.CONTEXT
      3  /
    Index created.
    SCOTT@orcl_11g> EXEC DBMS_STATS.GATHER_TABLE_STATS (USER, 'TS_FILES')
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11g> SET AUTOTRACE ON EXPLAIN
    SCOTT@orcl_11g> SELECT * FROM ts_files
      2  WHERE  CONTAINS (ts_files.doc_blob, '% not mango', 1) > 0
      3  /
    SELECT * FROM ts_files
    ERROR at line 1:
    ORA-29902: error in executing ODCIIndexStart() routine
    ORA-20000: Oracle Text error:
    DRG-51030: wildcard query expansion resulted in too many terms
    SCOTT@orcl_11g> SELECT * FROM ts_files
      2  WHERE  CONTAINS (ts_files.doc_blob, 'mango', 1) = 0
      3  /
    DOC_BLOB
    apple
    Execution Plan
    Plan hash value: 1960511866
    | Id  | Operation                   | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |            | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| TS_FILES   | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |*  2 |   DOMAIN INDEX              | YOUR_INDEX |       |       | 10781   (0)| 00:02:10 |
    Predicate Information (identified by operation id):
       2 - access("CTXSYS"."CONTAINS"("TS_FILES"."DOC_BLOB",'mango',1)=0)
    SCOTT@orcl_11g> SELECT * FROM ts_files
      2  WHERE  NOT CONTAINS (ts_files.doc_blob, 'mango', 1) > 0
      3  /
    DOC_BLOB
    apple
    Execution Plan
    Plan hash value: 1960511866
    | Id  | Operation                   | Name       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |            | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| TS_FILES   | 64644 |  1893K| 11343   (1)| 00:02:17 |
    |*  2 |   DOMAIN INDEX              | YOUR_INDEX |       |       | 10781   (0)| 00:02:10 |
    Predicate Information (identified by operation id):
       2 - access("CTXSYS"."CONTAINS"("TS_FILES"."DOC_BLOB",'mango',1)<=0)
    SCOTT@orcl_11g>

  • Sry for this Newbi question: what is the diff betw...

    I am using the E71, the black version bought from Hong Kong.. the only diff I can see is that the E71x is also black?? Does that mean I have the E71x phone? But I only see on the top right cornor of my phone its says E71 only and on pictures on the web it says E71x... hummm...
    Thanks
    Solved!
    Go to Solution.

    The E71x is an AT&T Branded phone.  It is NOT the same thing as an unlocked E71 with a black case.  There are hardware differences and software differences between the E71x and the E71 line of phones.
    E71-2 Grey Steel
    type: RM-357 code: 0569371 FW: 410.21.010
    08-02-2010 Nokia E71-2 (236.06)

  • Is a tree control appropriat​e for this applicatio​n?

    I've been playing with the idea of designing a Visio-like application in LabView.  (See my post from a year ago or so...  Playing with the idea for a long time, I guess...)
    My first approach was to use a flat array to hold all the objects that would be drawn.  To draw them, I treated the flat array like a tree, adding new objects to the end, and traversing it carefully when drawing a page.  (This page has this "group" object, which contains these other objects...)
    Would the tree control be appropriate for this type of application?  I don't necessarily need to show the user the tree.  I would use it primarily for behind-the-scenes bookkeeping.  Or is the tree primarily a GUI-oriented control?
    Secondly, how can I relate items in the tree with the information I need to display on the canvas?  For example, If I come across an object titled "panel\group_2\square_5" -- well, how do I use that to access all the properties of "square_5" (size, color, etc.)?  When the tree is used for representing a directory structure, a tag named "c:\dir2\file5" is very convenient -- the computer knows what to do with that, and no massaging is needed.  But what good is "panel\group_2\square_5"?  Do I then perform a string "match pattern" of an array of tags, and use that index to the flat array of objects?  Ugh, that doesn't seem very efficient.
    Thanks!
    Tom

    Someone who's used OOP will undoubtedly jump in here and tell you this is an ideal case for OO, because they can easily have children and you can represent your tree structure in a logical fashion.  Another approach would be to use variants.  Since variants can have named attributes, and attributes are themselves variants, you can easily construct a tree representing all your objects.  Each object might also have a "properties" attribute allowing you to access all the relevant properties of, for example, your square.

  • Correct forum for this issue?

    I just ordered a new MAC PRO; I'm currently on a PowerPC. I use Office X. Since it doesn't work on Intel I just ordered Office 2008. Just found out that all my VBA macros for Excel won't work!
    Is there a forum here that is appropriate for this issue? I have used Applescript. I have both sheet specific macros and global macros. I've pulled down Excel2004AppleScriptRef.pdf which contains over 460 pages of detail. I need some basic high level guidance re assigning macros to buttons etc. I also found (I think) that standard Excel functions are not accessible via Excel2004AppleScript but there is a workaround??
    Any help re the correct discussion forum or other forums would be appreciated. I know I'm not the only one with this heartburn.
    Message was edited by: RobertVJ

    Is there a forum here that is appropriate for this issue?
    Microsoft's forums: http://www.officeformac.com/productforums
    This forum is for troubleshooting Apple Software Update for Windows, a software package for Windows designed to update Apple products that run on Windows, and not related to Microsoft Office

  • I want to check all functions of PCI 6534.I have read the user manual..I have some memory related questions.​Please help me for that.

    I want to check all functions of PCI 6534.I have read the user manual..I have some memory related questions.Please help me for that.
    1.)If i am using the continuous output mode.and the size of generated data is less than 32 MB.If i want to preload the memory,what should i do?I want that first of all i load all my data to onboard memory & then i want to make start the transfer between 6534 & peripheral.Is it possible?As per me it should be.Plz tell me how should i do this?I think that in normal procedure the transfer between 6534-peripheral & outputting data from pc buffer to onboard memory works parallely.But i don't want this.Is it poss
    ible?
    (2).Similarly in finite input operation(pattern I/O) is it possible to preload the memory and then i read it?Because i think that the PC memory will be loaded automatically when 6534 acquires the data and then when we use DIO read vi the pc buffer data will be transferred to application buffer.If this is true,i do not want this.Is it possible?
    (3) One more question is there if i am using normal operation onboard memory will be used bydefault right?Now if i want to use DMA and if i have data of 512 bytes to acquire.How will it work and how should i do it?Please tell me the sequence of operations.As per my knowledge in normal DMA operation we have 32 Bytes FIFO is there so after acquisition of 32 bytes only i can read it.How it will known to me that 32 bytes acquisition is complete?Next,If i want to acquire each byte separately using DMA interrupts what should i do?Provide me the name of sourse from which i can get details about onboard memory & DMA process of 6534 specifically
    (4).In 6534 pattern Input mode,if i want to but only 10 bits of data.and i don't want to waste any data line what should i do?

    Hi Vishal,
    I'll try to answer your questions as best I can.
    1) It is definitely possible to preload data to the 32MB memory (per group) and start the acquisition after you have preloaded the memory. There are example programs on ni.com/support under Example Code for pattern generation and the 6534 that demonstrate which functions to use for this. Also, if your PC memory buffer is less than 32MB, it will automatically be loaded to the card. If you are in continuous mode however, you can choose to loop using the on-board memory or you can constantly be reading the PC memory buffer as you update it with your application environment.
    2) Yes, your data will automatically be loaded into the card's onboard memory. It will however be transferred as quickly as possible to the DMA FIFO on the card and then transferred to the PC memory buffer through DMA. It is not going to wait until the whole onboard memory is filled before it transfers. It will transfer throughout the acquisition process.
    3) Vishal, searching the example programs will give you many of the details of programming this type of application. I don't know you application software so I can't give you the exact functions but it is easiest to look at the examples on the net (or the shipping examples with your software). Now if you are acquiring 512 bytes of data, you will start to fill your onboard memory and at the same time, data will be sent to the DMA FIFO. When the FIFO is ready to send data to the PC memory buffer, it will (the exact algorithm is dependent on many things regarding how large the DMA packet is etc.).
    4) If I understand you correctly, you want to know if you waste the other 6 bits if you only need to acquire on 10 lines. The answer to this is Yes. Although you are only acquiring 10 bits, it is acquired as a complete word (16bits) and packed and sent using DMA. You application software (NI-DAQ driver) will filter out the last 6 bits of non-data.
    Hope that answers your questions. Once again, the example code on the NI site is a great place to start this type of project. Have a good day.
    Ron

  • 'Genius' related question for anyone with over 1.2TB of music?

    Anyone out there with a iTunes library with over 1.2TB of music?
    Reason I ask, is that I've not been able to solve a problem in updating Genuis - I'm getting the error - 'Genius results can't be updated right now. There is not enough memory available ~ Please try again later.' or the 'unknown 4002 error'.  The steps I've taken to try and correct sometime back can be found in https://discussions.apple.com/message/12584815#12584815 and also shown here in sequence below. 
    I keep thinking this will be fixed with the next version iTunes but so far with the latest, things still the same.  So looking to see if anyone with a similar size library is having similar problems and it just a limitation of the program or it's something specific on my end that I can fix.
    Appreciate...
    Up to this weekend I've had not issues with Genius. Worked beautifully and updated last Sunday as I have been doing every week since Apple added Genius. Yesterday I added a few albums and went to update and now getting the error of 'Genius results can't be updated right now. There is not enough memory available ~ Please try again later.' Now my library is well over >200,000 songs and only added 6 albums this time. Music sits on a external 2TB drive ~100GB free and my MacBook Pro has over 60GB open. Running latest Mac OSX and latest iTunes. Nothing new installed or changed since last Genius update.
    To the points raised in this thread.
    1. I've been updated weekly with a Library with over 200K songs till now with no problem. Majority is what I've ripped from my albums & CDs.
    2. Deleted the albums recently added since last successful update - same result.
    3. Connected directly to the network bypassing router as suggested here - same result.
    4. Reinstalled iTunes program - same result.
    5. Repaired permissions - same result.
    Problem remains. Welcome any additional thoughts.
    Question for anyone with a music library
    https://discussions.apple.com/message/12584815#12584815
    Ok, tried all the suggestions here yet the problem remains.
    In addition what I posted above -
    1) Dumped the cookies in user/library/cookies folder
    2) Deleted the apple cookies found under Safari Preferences "Show Cookies"
    3) Repaired disk permissions
    4) Deleted iTunes Library Genius.itdb file
    5) Reinstalled iTunes (with the new 10.1 version)
    6) Restarted computer
    7) Rebuilt iTunes Library folder http://support.apple.com/kb/ht1451
    8) Deleted all iTunes dead tracks
    http://dougscripts.com/itunes/scripts/ss.php?sp=removedeadsuper
    9) Increased internet access speed
    10) Removed all open "[" and '}' brackets from songs, albums & artists
    10) Rebuilt my entire library from scratch!
    Is there anyone out there with over 200K songs that can update their Genius? One thing I noted is the genuis.itdb file is just over 2GB. I'm wondering if there is a maximum size on this based on the error I'm getting. Any thought or know info on this?
    Ok, think I may have found something here with this. I backed out all the music added prior to this problem occurring and ran the Genius update. All worked fine. I then started adding the music back little by little (running the update each time) until the problem returned. When the problem came back I ruled out the specific music added by backing that bit out, verified all was ok and added a different batch back in.
    Bottom-line it appears that when my library exceeds exactly 1.208TB the problem appears. Interestingly enough it does not appear to be related to the number of songs, the size of the genius.itdb file (in fact when it was working the file was at 2.25GB - larger than what I reported before). It specifically seems to be related to the size of the overall library - when I have it for example at 1.2079 all is ok, 1.2081 it fails with this error.
    I did try moving the library and related files to the external drive but same result. abavetta, I think your suggestion of this script may be a workaround for now - although from what I read, is this not the same that you can do anyway with iTunes by holding the alt/option key open start up? In fact I do have two libraries now - one with the 2TB drive which I use at home and another for 2x500GB disks I carry with me when i travel. I just reported the same back to Apple but doubt if any immediate solution will come for this. Too bad as one of the great things about having such a large library is the mixes you can generate via Genius. Anyway, such is life and will just live with this for now. I also just found this program called Tangerine! http://www.potionfactory.com/tangerine/ which creates playlists like Genius - although through a different technique I might also take a look at.

    Just to let all know that may be having a similar problem, what I found by accident to fix this problem.
    Reset all my Home Folder permissions using the resetpassword method from the startup utility in Lion.  Then turned off/on to reset Genius and cleaned out the cache folder for good measure.  Finally after more than a year without, have Genius up and running again.

  • When I go to buy an app that isn't free it asks for my security question but I don't know what my security question is so I go to change it and it said it will send the info to this email that I don't even have. What do I do?

    When I go to buy an app that isn't free it asks for my security question but I don't know what my security question is so I go to change it and it said it will send the info to this email that I don't even have. What do I do?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • Please tel me , what is the category for dba related questing is it this form.

    Please tel me , what is the category for dba related questing is it this form whre i have posted.
    yours sincerely

    As Olaf said, there is so specific DBA forum. You have to post your question in related forum.
    If you click on below, you see on left side the list of all SQL server forums around 40. You have to choose the forum where your question fits in.
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/home
    -Vaibhav Chaudhari

  • Deafult search engine on a new tab-this thread was closed but I have a related question. Once you put the new url in, what then? Close? When tried, did not work

    "deafult search engine on a new tab" - this thread was closed but I have a related question. [the word “default” is spelled as it on the thread] Once you put the new url in, what then? Close it? When tried, it did not work. The closest answer is noted here. Instructing to go to about:fig. Specifically, I installed the accuweather add=on and it took over my tab home page - the one that comes up when you click for a new tab. I didn't like it so I clicked the button to remove it and the page went blank. I searched to see out to restore the tab page, tired the reply at this page :
    http://support.mozilla.org/en-US/questions/753256?s=install+search+box+on+new+tabs&r=3&as=s
    But it did not work. Can some on help me? Just want to know how to make google or some page open on a new tab.
    Many thanks

    Thanks so much for your support. As I said I am not a professional, so I by chance saw a friend who is and this is what he suggested and it worked.
    We googled for an answer and found this site: http://www.guidingtech.com/8004/have-new-tab-page-open-specific-website-firefox-chrome/
    It says to Download and install Download and install''' NewTabURL''' and gives instructions on how to. Now when I open the tab it goes to my preferred search page!

  • I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    I received an oline fax, error message "You are not signed up for an appropriate enhanced pdf delivery option required for this request" How do I fix this?

    Hi howardw93055634,
    Please tell me where you are seeing this error message. It's not one that I'm familiar with as being related to Acrobat or Reader. Is it coming from your online fax service, or does it appear when you try to open the PDF file that you received in Acrobat or Reader?
    Best,
    Sara

Maybe you are looking for