Using Workspaces as publication-management

Hi
We are considering using the Workspaces and the features available as a kind of publication-management like a VERY scaleddown WoodWing or alike. In the middle of these considerations, some questions pop up:
- would it be possible to dump images ONLINE and link to these from InDesign?
- would it, in time, be possible to get more space than the 5GB?
- would it, in time, be possible to get the paid plans in Europe?
- could you, in theory, use the folders with documents and word-counter to make a visual page overview in relations to a publication?
The idea is, from the above, to have an online Workspace for editors, management and art directors where articles can be posted, edited and where the art director can get hold of the content for the publications. When the editor updates, the AD could update the links in InDesign, and everything would be updated.
Possible?
Cheers
Bo Dudek
Webdeveloper
Denmark

Hi Bo,
Thank you for your post - it sounds like you're planning an interesting workflow with Acrobat.com. Let me answer your questions as best I can:
1. Linking to images online is not yet possible for InDesign (I don't believe it is, anyway). If you're storing all of your images online with Acrobat.com, they'll be downloadable by multiple parties - that is, whoever on your team needs the image can easily download it from the workspace. I know that it's not exactly what you need, but unfortunately it's the best we can offer at the moment. If it's any consolation, the new InDesign (CS5) will allow for text placed from Buzzword! We're very excited about that feature, and all the other collaborative features available in the new Creative Suite. More information here: http://www.adobe.com/products/indesign/whatsnew/
2. For extra storage, you'd want a subscription to Premium services: the Basic plan gets you 10GB, and the Plus plan allows you 100GB. This brings us to the next point...
3. ...Subscriptions outside of North America. We realize that it is very inconvenient for those who don't have access to a North American credit card; unfortunately, there are certain legal and business issues that prevent us from making the Premium services available globally. The team is working hard to resolve these issues, and we will make no secret of it when they become available.
4. I'm not exactly sure what you mean by "visual page overview"; would you mind clarifying your request?
Another thing to think about is making the final product available through Acrobat.com (if that makes sense for your group). Once you're finished with the editing process, make the resulting document open access ("publish" it) and then provide a link to that document; people will be able to view it and, if they like, download it to their personal computers.
It sounds like there is an interesting conversation to be had here; if you'd like to keep the discussion going, please feel free to message me directly. We'd love to hear about how you'd like to use the services for your ideal publishing workflow!
Kind regards,
Rebecca Staley
Acrobat.com Community Manager

Similar Messages

  • Using workspaces for "ALMOST" static data

              Hi,
              The application that we are developing has the following requirement:
              We have a whole bunch of data that is ALMOST static as far as the application is concerned.
              However this data can change infrequently.
              We have two solutions in mind
              1) We are planning to have a StaticDataManager component that will handle the reading/updation of this data.
              All the other components of the application will get the static data from the StaticDataManager
              and cache this data to avoid communication between the components.
              The application will be hosted on a clustered WLS configuration.
              Now suppose an updation takes place, how best can we update all the components that have the cached data?
              2) In case we use Workspaces to cahce this static data, does the cluster configuration take care of
              updating the workspaces in the machines in the cluster?
              TIA!
              Sreeja
              

    If you do like you say and specify servera and then specify serverb
              respectively, then yes the workspace doesn't show the same information
              across the cluster. However, if you always specify the cluster, serverc,
              then no matter which side you update or read from the data is the same. So
              yes, if you specifiy a specific server in the cluster, and not the cluster,
              the data will not replicate across the cluster, and you lose concurrency.
              Let me paste in the output to show you what I am seeing which proves the
              data is being replicated with a single write.
              Tester ver. 1.00.00 ----> Test started...
              Connected successfully using http to ethouic97/198.171.100.107:80
              ws.store(DOG, FIDO)
              Connected successfully using http to ethouic97/198.171.100.106:80
              ws2.fetch(DOG)
              DOG = FIDO
              These are some system outs from the test app below with a few extra system
              outs. Notice if the cluster is always your connection point and not an
              individual server, in this case ethouic97. Then the answer to the original
              first question is YES, you can store near static data in workspaces on a
              cluster to have the data replicated across the cluster. However, you must
              always address the cluster and not the individual servers, in this case
              address ethouic97 never server 106 or 107 directly.
              Jonathon Cano
              "Mike Reiche" <[email protected]> wrote in message
              news:[email protected]...
              >
              > Well, it does look like it works, doesn't it?
              >
              > Now try running the first half on one WLS instance and the other half of a
              different WL instance and
              > specify servera in the first half and serverb in the second half. If the
              workspace is replicated it should
              > work.
              >
              > It's broken now. Not really. Regardless of where the t3 connection is
              made, the workspace is
              > in the local WL instance.
              >
              > Mike
              >
              >
              > "Jonathon Cano" <[email protected]> wrote:
              > >Details:
              > >We are using a DNS cluster where serverc actually maps to servers a and
              b.
              > >If you set the workspace to SCOPE_SERVER, and use a t3client connection
              to
              > >the serverc, it can not be servera or serverb directly, then the
              workspace
              > >is updated or read from the data is persisted across both sides of the
              > >cluster. All reads and writes must be done using the cluster name for
              this
              > >to work. I use this to manage fail-over for some Vitria subscribers I
              have
              > >runnig at startup. I have a tester I wrote which works, here is the
              code:
              > >
              > > private void testWorkSpaces() {
              > >
              > > try {
              > >
              > > T3User userInfo = new T3User("system","password");
              > >
              > > T3Client t3 = new T3Client("http://cluster:80",userInfo);
              > > t3.connect();
              > >
              > > WorkspaceDef ws =
              >
              >t3.services.workspace().getWorkspace().getWorkspace("test",WorkspaceDef.OPE
              N
              > >,WorkspaceDef.SCOPE_SERVER);
              > > ws.store("DOG", "FIDO");
              > >
              > > t3.disconnect();
              > >
              > > T3Client t32 = new T3Client("http://cluster:80",userInfo);
              > > t32.connect();
              > >
              > > WorkspaceDef ws2 =
              >
              >t32.services.workspace().getWorkspace().getWorkspace("test",WorkspaceDef.OP
              E
              > >N,WorkspaceDef.SCOPE_SERVER);
              > > String dogName = (String) ws2.fetch("DOG");
              > >
              > >
              > > t32.disconnect();
              > >
              > > System.out.println(dogName);
              > >
              > > } catch (Exception e) {
              > > System.out.println("Test Work Spaces Failed.);
              > > e.printStackTrace();
              > > }
              > >
              > > }
              > >
              > >The first t3client connection echos out that it is connecting to servera.
              > >The second t3client connection echos out that it is connecting to
              serverb.
              > >However, the data being returned is the name FIDO which was written to
              the
              > >workspace when connected to servera. Thus, as long as you are connecting
              to
              > >the cluster, you get replication of data across cluster for workspaces.
              > >
              > >WLS 5.1
              > >
              > >Jonathon Cano
              > >
              > >
              > >"mreiche" <[email protected]> wrote in message
              > >news:[email protected]...
              > >>
              > >> >I am confused.
              > >>
              > >> Yes.
              > >>
              > >> >So why was the original answer to workspaces being used for clustering
              > >near static data NO?
              > >>
              > >> Because that's what the documentation says?
              > >>
              > >> Are you really, really sure it's being propagated? Or perhaps it's just
              > >being updated identically on both instances?
              > >>
              > >> Mike
              > >>
              > >> "Jonathon Cano" <[email protected]> wrote:
              > >> >I am confused. I am storing data in the workspaces right now, and I
              am
              > >> >using this data in a cluster. I can update the data in the cluster
              just
              > >> >fine, and both sides of the cluster are being updated. So why was the
              > >> >original answer to workspaces being used for clustering near static
              data
              > >NO?
              > >> >
              > >> >Jonathon Cano
              > >> >
              > >> >"Tao Zhang" <[email protected]> wrote in message
              > >> >news:[email protected]...
              > >> >>
              > >> >> But the problem is whether you want Exactly-once-per-cluster data or
              > >not.
              > >> >> If not, you can deploy the data object into each server in the
              cluster,
              > >> >but in the data object, it contains the logic of updating itself.
              > >> >> Otherwise, you have to make it a pinned service.
              > >> >>
              > >> >> It's hard to describe here.
              > >> >>
              > >> >> Hope the document can solve your problem.
              > >> >>
              > >> >> http://www.weblogic.com/docs51/classdocs/API_jndi.html#user
              > >> >>
              > >> >> Good Luck.
              > >> >>
              > >> >> Tao Zhang
              > >> >>
              > >> >> "Sreeja" <[email protected]> wrote:
              > >> >> >
              > >> >> >Thanks. Can you please elaborate on the solutions 1 and 2. We are
              > >trying
              > >> >to eliminate the
              > >> >> > usage of 3 - entity beans - since we do not want the components
              using
              > >> >the data to contact
              > >> >> >the entity bean every time they need the static data - as this
              would
              > >> >result in remote calls
              > >> >> >for every usage.
              > >> >> >Sreeja
              > >> >> >
              > >> >> >"Tao Zhang" <[email protected]> wrote:
              > >> >> >>No, the workspace can't be clustered, the data can't be propagated
              to
              > >> >other
              > >> >> >>servers in the cluster.
              > >> >> >>Of course , you can select one server as the data holder and other
              > >> >servers
              > >> >> >>will be t3 client. But it's time consuming to
              > >> >> >>connect to the data holder server.
              > >> >> >>Possible solutions:
              > >> >> >>1. RMI.
              > >> >> >>Deploy the rmi as pinned service which hold the data.
              > >> >> >>2. jndi
              > >> >> >>The data can be propagated by jndi's default behavior.
              > >> >> >>3. database or entity bean.
              > >> >> >>
              > >> >> >>Hope this can help.
              > >> >> >>
              > >> >> >>Tao Zhang
              > >> >> >>
              > >> >> >>Sreeja <[email protected]> wrote in message
              > >> >> >>news:[email protected]...
              > >> >> >>>
              > >> >> >>> Hi,
              > >> >> >>>
              > >> >> >>> The application that we are developing has the following
              > >requirement:
              > >> >> >>> We have a whole bunch of data that is ALMOST static as far as
              the
              > >> >> >>application is concerned.
              > >> >> >>> However this data can change infrequently.
              > >> >> >>> We have two solutions in mind
              > >> >> >>> 1) We are planning to have a StaticDataManager component that
              will
              > >> >handle
              > >> >> >>the reading/updation of this data.
              > >> >> >>> All the other components of the application will get the static
              > >data
              > >> >from
              > >> >> >>the StaticDataManager
              > >> >> >>> and cache this data to avoid communication between the
              components.
              > >> >> >>> The application will be hosted on a clustered WLS configuration.
              > >> >> >>> Now suppose an updation takes place, how best can we update all
              the
              > >> >> >>components that have the cached data?
              > >> >> >>>
              > >> >> >>> 2) In case we use Workspaces to cahce this static data, does the
              > >> >cluster
              > >> >> >>configuration take care of
              > >> >> >>> updating the workspaces in the machines in the cluster?
              > >> >> >>>
              > >> >> >>> TIA!
              > >> >> >>> Sreeja
              > >> >> >>>
              > >> >> >>
              > >> >> >>
              > >> >> >
              > >> >>
              > >> >
              > >> >
              > >>
              > >
              > >
              >
              

  • Using workspaces with large tables

    Hello
    I've got a few large tables (6-10GB+) that will have around 500k new rows added on a daily basis as part of an overnight batch job. No rows are ever updated, only inserted or deleted and then re-inserted. I want to stop the process that adds the new rows from being an overnight batch to being a near real time process i.e. a queue will be populated with requests to rebuild the content of these tables for specific parent ids, and a process will consume those requests throughout the day rather than going through the whole list in one go.
    I need to provide views of the data asof a point in time i.e. what was the content of the tables at close of business yesterday, and for this I am considering using workspaces.
    I need to keep at least 10 days worth of data and I was planning to partition the table and drop one partition every day. If I use workspaces, I can see that oracle creates a view in place of the original table and creates a versioned table with the LT suffix - this is the table name returned by DBMSMW.GetPhysicalTableName. Would it be considered bad practice to drop partitions from this physical table as I would do with a non version enabled table? If so, what would be the best method for dropping off old data?
    Thanks in advance
    David

    I've just spotted the workspace manager forum, I'll post there. :-)

  • Workspace Database Connection Manager error 8001

    In workspace, when I use the database connection manager to add a new connection I get the following error:
    *8001: The Database Connection could not be found: 6c1c06bf_129b3ad1455_-7ee9*
    Since this is a reinstallation over a previous installation, there are no reports to run to test if they will run.
    Any ideas?

    Hi,
    Yes i was able to solve it. Actually what happened was i remember registering Reporting and Analysis using the same database reusing the same old repository. And after that this issue came up.
    So i took the back up of repository database and also luckily still on testing environment and had not much to loose. So i reconfigured the relational database dropping all the databases. It resolved the issue.
    But why it happened and the real cause is not know even Oracle support was unable to answer this.
    Peace

  • How do I reformat an IPod Touch for Windows that has been formatted for a Mac?  All instructions I have been able to find use ITunes or Device Manager to reformat.  My IPod is not being recognized by ITunes or in Device Manager.

    I have an IPod Touch that has been formatted for a Mac.  All instructions I have been able to find use ITunes or Device Manager to reformat the device for Windows.  This cannot be done if Windows doesn't recognize the device.  Is there another way to set the device back to the factory settings directly on the device without using ITunes?

    Ipod touch is not formatted one way or the other at all.
    Just sync it to the new computer using itunes.
    iPod touch User Guide (For iOS 5.1 Software)

  • How do I setup multiple users to use one source but manage playlists separately?  For example, play counts are specific to each user.

    How do I setup multiple users to use one source but manage playlists separately?  For example, play counts are specific to each user.

    Hi,
    Thank you for posting in Windows Server Forum.
    Here adding to the words of “Tim”, a forwarder is a DNS server on a network used to forward DNS queries for external DNS names to DNS servers outside of that network. You can also forward queries according to specific domain names using conditional forwarders.
    A DNS server on a network is designated as a forwarder by having the other DNS servers in the network forward the queries they cannot resolve locally to that DNS server. You can refer information regarding forwarders and how to configure from beneath link.
    Understanding forwarders
    http://technet.microsoft.com/en-us/library/cc782142(v=ws.10).aspx
    Configure a DNS Server to Use Forwarders
    http://technet.microsoft.com/en-us/library/cc754941.aspx
    Hope it helps!
    Regards.

  • I am not able to open iPhoto, when I have used the iPhoto Library Manager, I get the message that "the iPhoto Library folder could not be found" Help!

    Help!  I can't open the iPhoto!  I have os x 10.5.8 and I have tried using the iPhoto Library Manager only to find out that the folder for the iPhoto Library could not be found.
    I have also tried the Fix #1 from the user Old Toad who said to delete the preference file :com.appleiPhoto.plist - I could do that, but I couldn't figure out how to delete iPhoto's cache fie, Cache.db because I couldn't find it?  I'm not sure how to find the file by it's directory path name of HD/User/Home/Library/Caches/com.apple.iPhoto .
    Help is very much appreciated! 
    vernawithav

    Download and use  Find Any File  to search for "Library6.iPhoto".  It's a file that is present in every iPhoto library.  If you don't find one on your hard drive then your library has gone missing entirely. 
    Another thing you can try is to use the Search For - All Images feature in the Finder window to see if you can see any of your photos.
    That will tell you if they are on your hard drive but somewhere other than the library.
    What do you see when you insert the DVD into the optical drive?  Can you open it and any folders on the disk?  If the disk is titled iPhoto Library  then open the disk, the the iPhoto Library folder and finally the Originals folder.  Check the subfolders to see if your photos are there.
    Your original photo files will be in the Originals subfolders.

  • Invalid signature when trying to install Photoshop CC extension using the Adobe Extension Manager CC and default installed Photoshop CC extensions won't load

    I have a Creative Cloud subscription for Photoshop CC. All Creative Clouds products are updated to the latest versions. When I tried to install Tony Kuyper's TKActionv3 Photoshop extension using the Adobe Extension Manager CC on my PC desktop, I received an error message that the extension contained an invalid signature and wouldn't be installed. I had previously installed the extension on my laptop without any problems. At the same time, I also noticed the default installed Photoshop CC extensions (e.g., Adobe Exchange, Kuler, Mini Bridge, Behance) could not be loaded using the Windows/Extension command. I receive an error message that the command could not be completed because the extension could not be loaded. After contacting Tony Kuyper, he suggested that I try the steps mentioned in the following weblink: https://forums.adobe.com/message/6029768. The steps basically consist of uninstalling and reinstalling all the Creative Cloud apps associated with Photoshop CC. I tried the steps multiple times, but I am still having the same problems. I can find the default installed Photoshop CC extensions on my machine, so I don't know why they can't be loaded.
    Thanks for your assistance,
    Mark Curtis

    Hi Mark
    You say everything is up to date?  And you have tried reinstalling all the CC apps?  Is Windows also fully up to date?  Hmmm...  That could be tricky.
    What version of Windows are you using?  Have a look in Task Manager > Processes and see if 'CEPServiceManager.exe *32' is listed as running?
    If not, I don't know where it would be installed from, and we'd need someone like Chris Cox to join the thread to tell us, but my guess is that it would install along with the CC Desktop Application Manager.  Windows 8.1 can be problematic, and a bit fussy about the order of things, and it is definitely worth adopting best practice when installing your CC apps.  That means restarting your computer, and right clicking the Desktop Application manager and running as Administrator.
    How many CC apps are you running?  If just Photoshop, Bridge, Expansion manager etc. then - and I hate to say this - perhaps have another go at reinstalling, but run the Cleaning tool after uninstalling.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Try some other Extensions before the Tony Kuyper's TKActionv3.  GuideGuide is a favourite of mine, as well as Dmonzon tools, and maybe Russell Brown's Flypaper Textures. 
    I have to say that I have had problems with the CC Extension Manager a while back, but simply reinstalling just the Extension Manager fixed it.  Perhaps CEPServiceManager.exe *32 installs with Extension Manager?  Heck, maybe start with just trying that before reinstalling all your CC apps.
    If you are still stuck, I'd risk sending Chris Cox a PM, but not until you triple check that your video card driver is up to date from the card maker's website.
    Good luck, and be sure to let us know how you get on.

  • Identifing duplicate master data records using the MDM Import Manager

    hi all
    I read the Topis "How to identify duplicate master data records using the MDM Import Manager</b>"
    i tried to create import maps and to set rules. but when i import them it creates the new vendor records for each rule with rest of the fields blank.
    when i import vendor data all the three fields i.e Match rate , match type and match group are blank.
    My Question is :
    I am getting vendor data from SAP R/3.
    In which source (in lookup xml file or data xml file) do i have to include these above three fields and how all the rules will be reflected in repository?

    Hi Sheetal
      Here we go when do you Import any data (vendor master) please follow the following steps;
    1. First of all apply the map to the source data
    2. In the Match Record tab there are 3 possiblities
       a.[Remote Key] : Checks the current source rec with
         repository along with all the fields - This is
         default
       b.Remove [Remote key] - by double click the same; and
         choose any single fields like Vendor Number or
         name - Then the current record will be matched
         with the repository based on the field.
       c.Instead of single field you can choose combination
         also.
    3. Based on the Match results, match class will be set
       automatically;
       a. None
       b. Single
       c. Multiple
    4. Then Match Type
        a.Exact-All the individual value matches are Equal.
        b.Partial-At least one value match is Equal and at least one Undefined; no value matches are Not Equal.
        c.Conflict-At least one value match is Equal and at least one value match is Not Equal.
    5. then chek the Import status and Execute the import.
    Hope this helps you.
    cheers
    Alexander
    Note: Pls dont forget reward points.

  • How to apply  special right  to the PDF  file using the LiveCycle Rights Management Server.?

    How to apply special right to the PDF  file using the LiveCycle Rights Management Server.?
    I want  to edit bar code field data using Adobe Reader. Bar Code field was designed and data was changing using Acrobat X1 Professional (Trial Version). But can't do so in adobe reader.

    I think that product has nothing to do with it. You would use LiveCycle Reader Extensions.

  • I can't see the Reporting Workspace in Service Manager Console PLEASE HELP

    I can't see the Reporting Workspace in Service Manager Console PLEASE HELP

    Hello,
    If you don't have an entry like "SQL Server Reporting Services (InstanceName)" in Windows Service Manager (Services.msc) then because SSRS service not installed on that machine. Install it, then you will see such an entry.
    Olaf Helper
    This is not an SQL issue it's a SC Service Manager issue. Reporting Services is installed and running on the SQL side. The problem is that as I am now aware I cannot get the Data Warehouse Server to register in the Service Manager consoles to connect that
    with the canned reports and turn on Reporting Workspace. Any thoughts?
    [ Blog] [ Xing] [ MVP]

  • Using Workspaces and Chat without OCS E-mail

    What are the limitations if I to use all the other OCS components except E-Mail ?
    For example, can I still use Workspaces and Chat without OCS E-mail ?

    Hello,
    To see if it's your provider, What's my ip...
    http://www.whatismyipaddress.com/
    Start with these three, check SpamCop or SpamHaus to see if your IP is there...
    http://spamcop.net/bl.shtml
    http://www.spamhaus.org/lookup.lasso
    http://www.spamhaus.org/zen/
    Sometimes an ISP will bloc a whole other ISP too, if it's the source of too much SPAM.
    Might also see this post by Gallomimia...
    http://discussions.apple.com/message.jspa?messageID=9465359#9465359
    If none of those are it, then report back please.

  • HT4970 May i use my PC to manage the reminder of my ipad and iphone?

    May i use my PC to manage the reminder of my ipad and iphone?
    And how can I do it?

    Why install the control panel on your PC when you can just as easily go to the iCloud website?
    Because you can't access your photo stream photos from the iCloud website.  I iCloud control panel gives you the ability to have those same pictures streaming between your iPhone/iPad (your photo stream), sync to your local pc. 
    I too use gmail exchange so my mail, contacts, notes, and calendar are already sync'd.  Like I said, I only use the photo stream sync'ing aspect of the iCloud control panel.

  • Can I use Microsoft SQL Server Management Studio version 11.0 to write SQL queries for "SQL Server Compact 4.0 Local Database"

    Hi, Can I use Microsoft SQL Server Management Studio version 11.0 to write SQL queries for "SQL Server Compact 4.0 Local Database" ?
    When I use Connect Object Explorer, the "Connect to Server" dialog box which pops up has only 4 selections in the Server Type Drop Down List. They are Database Engine, Analysis Services, Reporting Services & Integration Services. I have read
    somewhere that there should be a compact database option. but I do not see it.
    What I would like to do is use free form SQL Queries against the tables in "SQL Server Compact 4.0 Local Database" .
    Once I have validated these queries, then I will use them in my Visual Studio 2012 C#, ASP.NET application. I created the Local Database using Visual Studio 2012 for use by my application.
    Thank you for your help..
    diana4

    Hello,
    With SSMS 2005 we have had the Option to work with SQL CE database files, but not with higher Version of SSMS.
    You can use the free SQL CE Toolbax instead; see
    http://sqlcetoolbox.codeplex.com/
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Using dcmctl and enterprise manager with OracleAS 10.1.2.0.2

    Hi
    I know that in OracleAS 9.0.2 there were problems when you tried to use dcmctl and Enterprise Manager at the same time. Does OracleAS 10.1.2.0.2 has the same problem.

    hello,
    somewhere (i really don't remember where, but it was in the oracle documentation) i'm sure i read that already in 9.0.4 you could use dcmctl when enterprise manager was up. but i've never experienced it and i prefer not to try!!!
    fabrizio

Maybe you are looking for

  • Printer Driver issue for CM1312nfi MFP

    I have a MFP CM1312nfi, which has worked great when using OS Windows XP, recently upgraded to Windows 7 Home Edition and downloaded the complete driver from HP - unable to get the printer to print in anything other than mono.  Totally unable to print

  • C:forEach and logic:iterate tags repeating elements of a collection

    I have an issue that makes absolutely no sense to me. Basically I am using struts, and I am returning a form that contains a List of customers. I am simply trying to iterate that list into a simple table for each customer. The end result will have ro

  • Key focus is not visible for all objects when tabbing

    I'm using LabView 5.1. The key focus is not visible for all objects when tabbing through a "disabled and grayed-out" object. For example, let's say I create a panel with 3 buttons. If I create a "disabled" attribute for button 2 and assign the value

  • Add 90s date stamp from "date created" to photos

    Hi I'm about to order a photobook (christmas gift for some relatives). The book have nearly 300 pictures in it, The pictures need to have dates. I could add a date manually for each picture but I havent really got time for it. All photos have proper

  • Error -8 - There was a communication error....

    Hi Trying to set up ichat for my Dad (My ichat set up with out a problem). I have been trying to get my own answer from reading the forum - but I am not making any progress... I think that i turned the firewall on??? Following is the error log... I w