RoboHelp 8 runs slow when using network drive...

I have several users at my business that have upgraded from RoboHelp X5 to RoboHelp 8. They are reporting that when they work on projects which are housed on a network drive, RohoHelp performs very slowly (which never seemed to happen before with X5). I have read on several forums that RoboHelp should only be used with projects that are on the local drive, but I cannot find any official recommendation from Adobe about this, nor have I found any explanation as to why the network drive doesn't work well. Has Adobe every officially commented on this, and does anyone know why network drive performance is so lousy? Is there anything that can be done to allow my users to keep on utilizing their network drive without the poor performance? Thanks in advance for any help you folks can provide, I am stumped.

Hi, and welcome, Robo_Newbie
You're about to become Robo_Oldie real quick
Your RoboHelp projects MUST live on a local drive. You can archive them on a network, but NEVER actually open and edit while they are on the network.
The two reasons most people incorrectly assume they should be on the network is because you want to share with other authors and you want to back them up in case your hard drive crashes. Those are valid reasons, but it doesn't work because the .CPD (an Access database cache file) typically becomes corrupted - not to mention the perfomance issues related to LAN latency.
So what most of us do is to either use the free RoboSource Control that comes with RoboHelp or to work out a manual routine of copying your current work to a LAN for safekeeping and establishing a routine with the other authors on who will work on what, when.
Sorry to break the bad news. That's the reality.
John Daigle
Adobe Certified RoboHelp and Captivate Instructor
www.showmethedemo.com

Similar Messages

  • Query runs slower when using variables & faster when using hard coded value

    Hi,
    My query runs slower when i use variables but it runs faster when i use hard coded values. Why it is behaving like this ?
    My query is in cursor definition in a procedure. Procedure runs faster when using hard coded valus and slower when using variables.
    Can anybody help me out there?
    Thanks in advance.

    Hi,
    Thanks for ur reply.
    here is my code with Variables:
    Procedure populateCountryTrafficDetails(pWeekStartDate IN Date , pCountry IN d_geography.country_code%TYPE) is
    startdate date;
    AR_OrgId number(10);
    Cursor cTraffic is
    Select
              l.actual_date, nvl(o.city||o.zipcode,'Undefined') Site,
              g.country_code,d.customer_name, d.customer_number,t.contrno bcn,
              nvl(r.dest_level3,'Undefined'),
              Decode(p.Product_code,'820','821','821','821','801') Product_Code ,
              Decode(p.Product_code,'820','Colt Voice Connect','821','Colt Voice Connect','Colt Voice Line') DProduct,
              sum(f.duration),
              sum(f.debamount_eur)
              from d_calendar_date l,
              d_geography g,
              d_customer d, d_contract t, d_subscriber s,
              d_retail_dest r, d_product p,
              CPS_ORDER_DETAILS o,
              f_retail_revenue f
              where
              l.date_key = f.call_date_key and
              g.geography_key = f.geography_key and
              r.dest_key = f.dest_key and
              p.product_key = f.product_key and
              --c.customer_key = f.customer_key and
              d.customer_key = f.customer_key and
              t.contract_key = f.contract_key and
              s.SUBSCRIBER_KEY = f.SUBSCRIBER_KEY and
              o.org_id(+) = AR_OrgId and
              g.country_code = pCountry and
              l.actual_date >= startdate and
              l.actual_date <= (startdate + 90) and
              o.cli(+) = s.area_subno and
              p.product_code in ('800','801','802','804','820','821')
              group by
              l.actual_date,
              o.city||o.zipcode, g.country_code,d.customer_name, d.customer_number,t.contrno,r.dest_level3, p.product_code;
    Type CountryTabType is Table of country_traffic_details.Country%Type index by BINARY_INTEGER;
    Type CallDateTabType is Table of country_traffic_details.CALL_DATE%Type index by BINARY_INTEGER;
    Type CustomerNameTabType is Table of Country_traffic_details.Customer_name%Type index by BINARY_INTEGER;
    Type CustomerNumberTabType is Table of Country_traffic_details.Customer_number%Type index by BINARY_INTEGER;
    Type BcnTabType is Table of Country_traffic_details.Bcn%Type index by BINARY_INTEGER;
    Type DestinationTypeTabType is Table of Country_traffic_details.DESTINATION_TYPE%Type index by BINARY_INTEGER;
    Type ProductCodeTabType is Table of Country_traffic_details.Product_Code%Type index by BINARY_INTEGER;
    Type ProductTabType is Table of Country_traffic_details.Product%Type index by BINARY_INTEGER;
    Type DurationTabType is Table of Country_traffic_details.Duration%Type index by BINARY_INTEGER;
    Type DebamounteurTabType is Table of Country_traffic_details.DEBAMOUNTEUR%Type index by BINARY_INTEGER;
    Type SiteTabType is Table of Country_traffic_details.Site%Type index by BINARY_INTEGER;
    CountryArr CountryTabType;
    CallDateArr CallDateTabType;
    Customer_NameArr CustomerNameTabType;
    CustomerNumberArr CustomerNumberTabType;
    BCNArr BCNTabType;
    DESTINATION_TYPEArr DESTINATIONTYPETabType;
    PRODUCT_CODEArr PRODUCTCODETabType;
    PRODUCTArr PRODUCTTabType;
    DurationArr DurationTabType;
    DebamounteurArr DebamounteurTabType;
    SiteArr SiteTabType;
    Begin
         startdate := (trunc(pWeekStartDate) + 6) - 90;
         Exe_Pos := 1;
         Execute Immediate 'Truncate table country_traffic_details';
         dropIndexes('country_traffic_details');
         Exe_Pos := 2;
         /* Set org ID's as per AR */
         case (pCountry)
         when 'FR' then AR_OrgId := 81;
         when 'AT' then AR_OrgId := 125;
         when 'CH' then AR_OrgId := 126;
         when 'DE' then AR_OrgId := 127;
         when 'ES' then AR_OrgId := 123;
         when 'IT' then AR_OrgId := 122;
         when 'PT' then AR_OrgId := 124;
         when 'BE' then AR_OrgId := 132;
         when 'IE' then AR_OrgId := 128;
         when 'DK' then AR_OrgId := 133;
         when 'NL' then AR_OrgId := 129;
         when 'SE' then AR_OrgId := 130;
         when 'UK' then AR_OrgId := 131;
         else raise_application_error (-20003, 'No such Country Code Exists.');
         end case;
         Exe_Pos := 3;
    dbms_output.put_line('3: '||to_char(sysdate, 'HH24:MI:SS'));
         populateOrderDetails(AR_OrgId);
    dbms_output.put_line('4: '||to_char(sysdate, 'HH24:MI:SS'));
         Exe_Pos := 4;
         Open cTraffic;
         Loop
         Exe_Pos := 5;
         CallDateArr.delete;
    FETCH cTraffic BULK COLLECT
              INTO CallDateArr, SiteArr, CountryArr, Customer_NameArr,CustomerNumberArr,
              BCNArr,DESTINATION_TYPEArr,PRODUCT_CODEArr, PRODUCTArr, DurationArr, DebamounteurArr LIMIT arraySize;
              EXIT WHEN CallDateArr.first IS NULL;
                   Exe_pos := 6;
                        FORALL i IN 1..callDateArr.last
                        insert into country_traffic_details
                        values(CallDateArr(i), CountryArr(i), Customer_NameArr(i),CustomerNumberArr(i),
                        BCNArr(i),DESTINATION_TYPEArr(i),PRODUCT_CODEArr(i), PRODUCTArr(i), DurationArr(i),
                        DebamounteurArr(i), SiteArr(i));
                        Exe_pos := 7;
    dbms_output.put_line('7: '||to_char(sysdate, 'HH24:MI:SS'));
         EXIT WHEN ctraffic%NOTFOUND;
    END LOOP;
         commit;
    Exe_Pos := 8;
              commit;
    dbms_output.put_line('8: '||to_char(sysdate, 'HH24:MI:SS'));
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_CUSTNO ON country_traffic_details (CUSTOMER_NUMBER)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_BCN ON country_traffic_details (BCN)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_PRODCD ON country_traffic_details (PRODUCT_CODE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_SITE ON country_traffic_details (SITE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_DESTYP ON country_traffic_details (DESTINATION_TYPE)';
              execDDl(lSql);
              Exe_Pos:= 9;
    dbms_output.put_line('9: '||to_char(sysdate, 'HH24:MI:SS'));
    Exception
         When Others then
         raise_application_error(-20003, 'Error in populateCountryTrafficDetails at Position: '||Exe_Pos||' The Error is '||SQLERRM);
    End populateCountryTrafficDetails;
    In the above procedure if i substitute the values with hard coded values i.e. AR_orgid = 123 & pcountry = 'Austria' then it runs faster.
    Please let me know why it is so ?
    Thanks in advance.

  • Finder is very slow, particularly when using network drive

    I have a mid-2011 Macbook Air, OSX 10.9.4, and Finder is extremely slow, particularly when I am navigating my Time Capsule.  First, a little history.
    I have tried the fixes listed in these three threads:
    (1) https://discussions.apple.com/thread/3358265?searchText=finder%20slow
    (2) https://discussions.apple.com/thread/1324280?searchText=Finder%20is%20slow
    (3) https://discussions.apple.com/thread/5495797?start=30&tstart=0
    Second, my Time Capsule is new.  I bought it to replace a WD MyBook that used to work really well, and then something changed.  Unfortunately, I assumed that it was some problem on WD's side, so after a year or two of waiting to see if either WD or Apple issued an update to fix it, I assumed it was some kind of file system incompatibility (or other interoperability problem) that wasn't likely to go away, and just sprung for the Time Capsule.  However, after getting all the files on the Time Capsule, the problem remains.  So here's a rundown of what I experience:
    When I navigate the directories on my Time Capsule, if I haven't been in a particular folder, it takes a very long time to load the contents.  On average, it will be 30 seconds, but it is not uncommon for it to be over a minute.  This can happen even if a folder is empty or has just a few files in it.  In addition, adding a subfolder and trying to rename it takes a very long time.  After renaming a new folder, it can then take another full minute or more for the folder to actually show the newly assigned name and bounce into line in alphabetical order.
    Here are some other observations.  First, my connection is very fast, as I'm directly connected to the Time Capsule (albeit via wireless).  Second, there is clearly something extra going on in Finder that is contributing to this issue, because I navigated to different directories using Terminal and did an "ls" command, and as you would expect, the list fired out virtually instantaneously.  Yet, right after that, if I clicked on that same folder with Finder, it would take a minute or more to display the same file names.
    Could it be that the Finder is doing other things at the same time as it is giving me a list of what is in the directory?  For example, could the Finder be loading ALL metadata for each of the files into some database or index being built on the fly every time I pop into a new folder, even if I'm not using a view mode where I am asking to see those other bits of metadata?  If so, that might make sense as I generally am using the network drive to navigate directories of my photographs, and they have a lot more categories of metadata associated with them than do Word docs and PDFs (e.g., date of picture, time of picture, aperture, shutter speed, exposure, etc.).  Or, perhaps is Finder trying to load previews of ALL of the files whenever a directory request is made, so that bouncing through the previews takes less time?  I sort of doubt that, because even after a directory listing finally comes up, it seems to churn a bit on each photo before the preview comes up, which I take as an indication that it's creating each preview only after a request is made for that particular file.  Either way, I will say that in old WinXP and even in the newer Windows 7, if you want to view files in a Detailed setting where you can see other metadata (called "Attributes"), it definitely prioritizes giving you a directory listing, and then continues filling in the various selected Attributes one-by-one after that.  Thus, if you want to sort by the date a photograph was taken (as opposed to its modified or created date, which seem to be default attributes that load as quickly (or nearly as quickly) as the filename), or by the photo's dimensions, it might take a few minutes to load in those attributes for a folder of a couple thousand pictures.  But, critically, if you are not planning on using those attributes, but rather, merely want to see how many files you have in that folder, or select them all and load them into a photo viewer, you won't have to wait for the file system to load the file attributes before you get a listing of the folder's contents.  It seems to me like the Finder, however, might actually be forcing you to wait until it has loaded all of those attributes.
    Does the foregoing sound like a plausible explanation of the problem to those out there with knowledge of how Finder actually works?  And if so, does that bring to mind any potential settings that could be turned off or any other work-arounds (since those I've tried have not fixed the issue)?
    If anyone has other ideas, I am all ears.  I am pretty annoyed that I sunk time into switching over to a Time Capsule on the assumption that Apple couldn't have had a bug this bad, only to find out that I was wrong.  The biggest irony is that my old WinXP computer used to rip through the folder structures with ease on the MyBook, but my fully updated Air is practically crippled by the same task.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Why does Photoshop CC running slow when using Mixer brush tool

    Why does Photoshop CC and Photoshop C6 running SOOO slowly when using Mixer brush tool??
    Only to create one stroke it takes several seconds.
    I have to wait a long time to do next stroke. I can't work with this. How do I fix this??
    I have a new computer, a Mac Book Pro with 16 GB ram, so I have plenty of ram.

    You really have to keep your brush size small with the Mixer Brush tool.  And that necessitates keeping your canvas failry small as well.
    Back a few years ago I did a whole painting with the Mixer Brush once and some of the bristle brushes - just to see if I could - and I found I had to really limit the brush size (e.g., to 50 to 75) in order to get enough responsiveness to keep painting.  In that case my canvas was 4096 x 5120.  It's not impossible to get a good, professional result, but you have to be careful about sizing things right.
    -Noel

  • My iPad has started running slow when using YouTube how do I fix it?

    When I play vids on YouTube it's started taking forever to buffer! Never had this problem before but tried few things like restoring iPad, turning it on and off and turning my Internet modem off. Can anyone help pleas?

    I also have this problem and have search the support boards at apple and other websites. I have tried the suggestions and nothing so far has helped...changed DNS, tried YouTube using safari, rebooted my iPad..killed all apps, etc.  I use iPad at my library and Internet here is great. I can't make changes to their routers as some sites have suggested. Funny thing is I end up using my Samsung Galaxy SII to view these same YouTube videos and it's lightening fast at my library...a little slower using my data plan but not by much. Wish I could use my iPad as the screen detail would be better but too slow, lags to the point of not even being fun.  This is my 1st apple product and it's leaving a bad taste in my mouth....from what I see posted on the boards this is a BIG problem for many, many users...can't even believe apple doesn't know about it and have an official solution!

  • Query running slow when using case inside when

    Hi All,
    I am in the process of creating a query as per the following conditions:
    select count(*) from Alpha A, Beta B
    where
    (case
    when
    A.col1='Pete' and substr(A.col2,1,12)=substr(B.col2,1,12)
    then 1
    else
    -- for all other cases when A.col1 is not equal to 'Pete', substr 1-15 needs to be checked on A and B
    when A.col1 != 'Pete' and substr(A.col2,1,15)=substr(B.col2,1,15)
    then 1
    else 0
    end)=1
    When i run the whole query together, it continues to run forever and i have to eventually kill it. However, when i run the 2 WHEN clauses seperately, it runs within a second and fetches me the correct data. What goes wrong while merging these two inside 2 WHEN clauses that it causes the query to drag?
    Please advise.
    Thanks in advance.

    Not sure,
    Are you saying that you need both the counts seperately? or a combined count?
    how are you joining alpha and beta tables? what is the join condition?
    you need to do something like this,
    SELECT COUNT(CASE WHEN
                        (A.col1 = 'Pete' AND SUBSTR(A.col2,,1,12)=SUBSTR(B.col2,,1,13))
                     OR ( A.col1 != 'Pete' AND SUBSTR(A.col2,,1,15)=SUBSTR(B.col2,,1,15))
                    THEN 1 ELSE 0
                 END)
    FROM alpha A, beta b
    WHERE alpha.join_cloumn= beta.join_columnG.

  • My MacBook Pro is running very slow when using the internet and sometimes gives the pinwheel of death, any suggestions on how to fix?

    My MacBook Pro is running very slow when using the internet and sometimes gives the pinwheel of death, any suggestions on how to fix?

    <http://www.thexlab.com/faqs/sbbod.html>

  • Using network drive with time machine.  IS IT POSSIBLE?

    There are lots of discussion on using network drives with time machine. I have not been able to make them work. Could somebody tell me if this is possible

    Time Machine does not back up to network drives, except Time Capsules or USB drives connected to an Airport Extreme, or a drive on a Mac running Leopard.
    Here's the official word: http://support.apple.com/kb/HT1733
    You may find some "hacks" that might make it work, in some cases, to a degree. But use them at your own risk.
    First, since this is *unsupported by Apple,* there's nowhere to go when there's trouble.
    Second, you're risking a future update preventing it from working, and perhaps rendering your backups useless.
    If you still think this is a good idea, do yourself a favor before you bet your backups on it: be sure it really works, at least for now:
    1. Get a copy of CarbonCopyCloner or SuperDuper! or the like, and make a full bootable clone of your internal HD, on an external disk. Test it by booting from it. Then reboot from your internal HD.
    2. Let TM do it's first, full, initial backup.
    3. Attempt a full system restore (like you'll need when, not if, your internal HD fails), via the instructions in item 14 of the of the Frequently Asked Questions post at the top of this forum.
    Again, even if it works today, tomorrow is another day . . .

  • Mac running slow when cut and paste

    Hi,
    recently I noticed that my mac is running slow when I cut and paste (there is a delay of approx 1-2 secs). I thought it might be some kind of spyware which is trying to steal sensitive information such as passwords, credit cards and others. That would be surprising as I thought those were still rare in Mac. Any thought on this? Suggestions on how to protect my mac from these security issues? Thanks in advance!
    Mauro

    Morning smartasso,
    Thanks for using Apple Support Communities.
    If you find your Mac is running slowly, there are a number of potential causes that you can check.
    For more information on this, take a look at this article:
    OS X Mountain Lion: If your Mac runs slowly
    http://support.apple.com/kb/PH10798
    Best of luck,
    Mario

  • Acrobat XI pro - Slow when using 'save as' or saving merged pdf

    System:
    Windows 7 pro 64-bit
    AMD FX 6300 processor
    HD 7770 1 GB video card
    1 TB disk space
    16 GB RAM
    MS Office 2013 Plus
    Adobe Acrobat XI Pro
    Issue:
    Saving pdf is very slow. Regardless if the location is a network location or desktop. Using the 'save as' option is also very slow. It's super slow when using the 'merge' option.
    Troubleshooting: 
    - uninstalled adobe, rebooted system, reinstalled adobe, installed updates - no changes
    - tried using optimize pdf option  when saving- no changes
    - ran adobe in compatiblity mode - no changes

    All available updates have been applied/installed.

  • My Macbook Pro 2011 runs slower when charger is connected

    idk why but my macbook pro runs slower when its charging for example im in windows 7 using bootcamp playing nintendo ds on it it runs perfectly when the charger is not connected but then the emulator starts running slower when i connect the charger and the computer heads up my computer is on a table so i know my computer ventilation is working normally idk why my computer getting so slow and hot when i connect the charger it gets so hot that it turns off by itself well it goes to sleep mode can anyone tell me why is that thanks in advance.

    Try resetting the SMC and PRAM:
    SMC
    http://support.apple.com/kb/ht3964
    PRAM
    http://support.apple.com/kb/PH14222
    For the SMC, use the method "for a battery you should not remove yourself."

  • HP Photosmart 8750 prints slow when using Photo Gray Cartidge

    HP Photosmart 8750 prints slow when using Photo Gray Cartidge ... sometimes indicates Black Cartridge failed, however upon reinserting works slow

    Welcome to the HP Forums ButchG,
    I see by your post that when printing with the photo gray cartridge the black cartridge will indicate that it has failed.
    I can help you with this issue.
    I would do a power reset to see if that will resolve the issue.
    With the printer still turned on, disconnect the power cable from the back of the printer, if the printer has external power module with a detachable power cord disconnect it for 15 seconds and then reconnect it.
    Hold down the power button for 10 seconds to drain the power.
    Then disconnect the power cable from the wall outlet.
    Wait 10 seconds and reconnect the power cable back to the wall outlet first, then the back of the printer and power it on again.
    Make sure the printer is connected directly to wall outlet. (don't use a power hub or a surge protector)
    I have provided a document for the cleaning the contacts and reseating the cartridge.
    'Cartridge Failed' or 'Cartridge Not Compatible' Error Message.
    What are the ink levels?
    Are you using Genuine HP Cartridges?
    Check the date on the cartridges to make sure they are still in warranty. (not old stock)
    If you need further assistance, let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • DatabaseMetaData.getTypeInfo ()=NULL when use JDBC Driver 9.2.0.5

    Why DatabaseMetaData.getTypeInfo () is NULL when use JDBC Driver 9.2.0.5 to connect Oracle 9.0.1.1.1 database?
    In the following links
    http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.htm#02_02
    the segment "Which JDBC drivers support which versions of Oracle Database?" tells us that JDBC Driver 9.2.0.5 can support Oracle 9.0.1.1.1 database.
    thanks!

    ERROR --- java.sql.SQLException: ORA-01722: &#26080;&#25928;&#25968;&#23383;

  • Macbook running slow when not connected to charger

    My Macbook Pro 13" is running slow when not connected to energy.
    Does anyone know why is that happening, how can I fix it?
    Thank you very much.
    if you have any idea.
    Att
    Raissa
    <Email Edited By Host>

    Reset SMC.     http://support.apple.com/kb/HT3964
    Choose the method for:
    "Resetting SMC on portables with a battery you should not remove on your own".
    Best.

  • Why is quicktime slower when using multiple mdat atoms

    Hi,
    I've been trying to generate a mov file and I noticed that the more mdat atoms I put in my mov file the more the file takes time to load on QuickTime, iTunes.
    Even worst, on the iPhone the file takes more than 3 minutes to load.
    If there are too many mdat atoms quicktime even says that the file is invalid ( error -2004 or -2002, I don't remember exactly).
    Why is quicktime/iTunes slower when using multiple mdat atoms ?
    Thanks,

    Yeah! Problem solved: It's a QT issue.
    Cause: Mac Update Software downloaded a faulty QT.
    Solution: Download QT from Apple's QT site.
    Great to have the Video back

Maybe you are looking for

  • Converting XML Document Message (xsd string) to BPEL

    Hello, I have written a BPEL flow that takes input from a client (a query) then Invokes a scynchronous data service (passes some parameters to run a federated query) that returns an xsd string that is a set of records in XML (see below). I want to un

  • What are some useful apps for school work on the iPad?

    I am a middle school student and I need some apps to do school work on my iPad Mini. Do you know any?

  • Data From SD

    Hi Experts Could you please update me briefly What is line item,Header Data,Scheduled Line Item....etc different types data avaliable in SD for a PO

  • Is it legal to use garageband loops to make apps?

    is  it ok to use several loops layered on top of each other to make game's music and sell it on the app store.

  • Http, advice about instalation please.

    Could somebody who as had FTTP installed clarify something for me. I'm waiting for mine to be installed and believe that where the fibre comes into the building there will be a box like the master phone socket. I have had the Home Hub 5 delivered so