Hosting web service on one Xserve and Profile Manager on another?

Hello.
I'm trying to get Profile Manager running on a second Xserve in our studio but I'm having an issue making connections to it from the WAN because I already have HTTP and HTTPS running on a different Xserve.
The set up is something like this:
Xserve001 (xs1.mydomain.com)
- DNS
- Web service hosting a secure site (via SSL) on port 443
- Web service hosting a non-secure site on port 80
Xserve002 (xs2.mydomain.com)
- Open Directory Master
- Profile Manager on ports 80, 443, 1640
Since the router/firewall (between the WAN and be two Xserves on the LAN) handles port forwarding, right now, http and https connections (i.e., ports 80 & 443) are forwarded to Xserve001 for the web hosting.
I would like to enable Profile Manager on Xserve002, but connections won't work from the WAN (via xs2.mydomain.com) because ports 80 & 443 are forwarding to Xserve001 (from within the LAN we're fine because DNS handles everything without going through the router).
So, what would I need to do to get this to work when attempting connections from the WAN?
Thanks,
Kristin.

This is tricky to do, especially since you have multiple SSL certificates involved.
Ordinarily I'd say the easist option is to have xs1 proxy the connection to xs2 - that way all requests come into xs1 which then determines specific requests are for the profile manager and sends them across the local network.
This will work well enough for port 80 requests, but the SSL requests will fail unless you either have a wildcard SSL certificate (e.g. for *.mydomain.com) or you have a certificate that includes both hostnames.
Without one of these options on your server you're doomed to failure because clients will warn of a hostname mismatch in the SSL certificate (you asked for xs2.mydomain.com but I got a certificate from xs1.mydomain.com) and I don't think iOS or Mac OS X will allow you to connect in this manner.
The other solution hinges around your internet connection, and whether you only have a single IP address or multiple. If you have multiple then you can setup a different public IP address to map to xs2. This is probably the all-round easiest solution, especially when dealing with NAT networks.

Similar Messages

  • Host Web services on a second server

    Hello everyone, maybe it's a silly question.. but I don't know how to do that.
    I've 2 server on a single network, one Xserve (with leopard server) and one Mac Mini (with Snow Leopard server). The xserve is connected to the router and offers DNS, NAT and dhcp services; Mac Mini is connected to the internal network created by Xserve, and I'd like to host the web services (like site, wiki and blog) on the mac mini. How can I do that?
    I've a public IP but I think that points directly to the Xserve. How do I ensure that web services are accessible from outside using a browser?
    thanks in advance for your advice, any help is welcome!
    -a.

    External domains are a prerequisite here, and a minimum of one public static IP address.
    You can set that up with a reverse proxy (Apache reverse proxy) through the Xserve box, allowing connections from outside to reach the Xserve and the Xserve communicating with the Mac Mini box. This is basically a web pass-through, were Apache running on your Xserve can hand off to your Mac Mini. This involves reading the [web manual|http://www.apple.com/server/macosx/resources/documentation.html] and using Server Admin to establish the reverse proxy.
    You can also set up a mid-level server-grade external firewall (using an external firewall and not a Mac is locally preferred for various reasons) to have it port-forward connections based on IP address, for instance. This is a more traditional set-up for a web server, and is covered in various IP network configuration discussions around the Internet. This involves setting up your network with a reasonable mid-range commercial or open-source firewall, and establishing port-forwarding on the firewall.
    You must expect your servers to be attacked, and you will be attacked. The servers I administer are attacked many times a day, with XSS and SQL injection attempts and probes for various other known vulnerabilities, dictionary attacks against passwords, and attempts to post spam on the web sites are also very common. This involves monitoring your logs, watching for attacks, and staying current on all your software and keeping your archives current; your (trusted) backups are the path back from a server breach.
    You may want to consider a DMZ for your public-facing services, which is another feature of a typical server-grade firewall, as a web breach can get hairy for the rest of your LAN. Using a properly-configured DMZ usually isolates a breach.
    Here's an old [write-up on the various network pieces|http://labs.hoffmanlabs.com/node/275] that can be involved in a small server-oriented network configuration.

  • Using UTL_DBWS to contact IIS hosted Web Service

    Hello-
    A generous No-Prize to anyone with insight on this issue...
    I am using UTL_DBWS to contact an IIS hosted web service, relevant code here:
    FUNCTION call_gnr ( p_name IN varchar2 ) return varchar2 IS
    l_wsdl_url varchar2 ( 1024 ) := 'http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL';
    l_service_name varchar2 ( 200 ) := 'GNRDService';
    l_port varchar2 ( 200 );-- := 'GNRDServiceSoap';
    l_operation_name varchar2 ( 200 ) := 'Search';
    l_service utl_dbws.service;
    l_call utl_dbws.call;
    l_xml xmltype;
    l_xml_result xmltype;
    BEGIN
    l_service := utl_dbws.create_service (
    wsdl_document_location => urifactory.getURI(l_wsdl_url),
    service_name => l_service_name );
    l_call := utl_dbws.create_call (
    service_handle => l_service,
    port_name => l_port,
    operation_name => l_operation_name );
    l_xml := xmltype.createXML(
    '<urn:Search xmlns:urn="urn:GNRDService">' ||
    '<id>1</id>' ||
    '<name>' || p_name || '</name>' ||
    '<maxReply>1000</maxReply>' ||
    '<minPercent>1</minPercent>' ||
    '</urn:Search>' );
    l_xml_result := utl_dbws.invoke (
    call_handle => l_call, request => l_xml );
    utl_dbws.release_call ( call_handle => l_call );
    utl_dbws.release_service ( service_handle => l_service );
    return l_xml_result.getstringval;
    END call_gnr;
    This works like a charm a few times in a row, but once I get a few simultaneous sessions going, I get the following error:
    ORA-29532: Java call terminated by uncaught Java exception: java.lang.IllegalAccessException: error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
    ORA-06512: at "SYS.UTL_DBWS", line 193
    ORA-06512: at "SYS.UTL_DBWS", line 190
    Checking the stack trace in my Oracle dump file yields the following:
    ServiceProxy.get(-1261915448) = oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy@73f04687
    ServiceFacotory: oracle.j2ee.ws.client.ServiceFactoryImpl@3c74ef49
    WSDL: http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL
    ERROR: error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
    error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:180)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:178)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:160)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:99)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    CAUSE:
    oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:180)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:178)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:160)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.buildServiceInfo(ServiceInfoBuilder.java:99)
         at oracle.j2ee.ws.client.dii.ConfiguredService.<init>(ConfiguredService.java:54)
         at oracle.j2ee.ws.client.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:43)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy$ServiceProxy.<init>(Unknown Source)
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    Caused by: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.j2ee.ws.common.processor.modeler.wsdl.WSDLModeler.buildModel(WSDLModeler.java:166)
         at oracle.j2ee.ws.common.processor.config.ModelInfo.buildModel(ModelInfo.java:171)
         at oracle.j2ee.ws.client.dii.ServiceInfoBuilder.getModel(ServiceInfoBuilder.java:175)
         ... 8 more
    java.lang.IllegalAccessException: error.build.wsdl.model: oracle.j2ee.ws.common.tools.api.WsdlValidationException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://localhost/GNRD/GNRD.dll?Handler=GenGNRDWSDL: HTTP connection error code is 403
         at oracle.jpub.runtime.dbws.DbwsProxy.createService(Unknown Source)
    I'm totally stumped. Why do I suddenly get an HTTP connection error code 403 after a dozen valid calls? Any help appreciated.
    Dave

    Hello
    I think that something has changed in your environment between the moment the system was working and now that you get the HTTP-403 error.
    As you probably know the DB call is doing a simple HTTP call, so I believe the issue is coming from the URL that you are using that is probably now invalid.
    Could you take the furl URLs (WSDL and endpoint) and see from the server what will be the HTTP call result ? (directly from a browser or telnet session)
    Regards
    Tugdual Grall

  • Multiple Web Services in one Jdeveloper project

    Hi all,
    I'm currently trying to implement a series of web services, all relating to one application. I'm using the top-down approach, where I generate the web service from a WSDL file, and add my implementation to the generated classes. The WSDL file imports all sorts of XML Schemas (xsd-files) and Jdeveloper correctly generates all the necessary java-classes for me. Lets call the first web service I create WS-1.
    This all works fine and I'm a happy panda. I can call the web service, it works, I can modif the wsdl and regenerate the web service to e.g. change the input etc. All this works.
    Just until the point where I want to create a second web service (lets call this WS-2). This new web service doesn't use all the XML Schemas that the first web service does, it is more simple with regards to in-/output. The problem arises when I modify WS-2 and Jdeveloper regenerates the Web service files (.java and the files in the WEB-INF/wsdl-directory). When I do this, it deletes the imported xsd-files that WS-1 uses (removes them from WEB-INF/wsdl).
    And when I regenerate WS-1 to get my xsd-files in again, then when I regenerate WS-2 it imports all the unnecessary xsd-files into the wsdl for WS-2.
    Something tells me, that there is a connection or shared library between all web services in one Jdeveloper project. That they all imports and uses the xsd-files in WEB-INF/wsdl.
    Is this true? Can't I have multiple web services (and wsdl-files) using different types (schema definitions) in the the same Jdeveloper project?
    One solution I can think of, is to have all my web services in different projects under the same application. But is this really necessary?
    I'm using Jdeveloper 10.1.3.3.0.

    Hi,
    pure from a coder instinct I think I would prefer them to be in separate projects for better reuse and clean separation. If I need project 1 to access aclass from Project 2, I can check the dependency check box in the project properties. Is there any business requirement that makes you think having all of these in a single project will help ?
    Frank
    Btw.: I agree that JDeveloper shouldn't constraint developers from doing what they want and if this is a limitation the feel free to file a bug

  • Free - J2EE and Web Services Workshops by Oracle and TheServerSide

    Oracle and TheServerSide are pleased to invite you to a free SOA developer workshop. This one-day event includes technical sessions, an install fest, hands-on labs, and a hacker's contest. (Attendees must bring their own laptops to participate in the labs and contest.) Topics will include:
    * Overview of Service Oriented Architectures (SOA)
    Discover what it means to move to SOA and learn about key SOA technologies, including J2EE 1.4, Web Services, BPEL, EJB, JSP, and Struts.
    * Constructing the Services Layer
    Develop back-end business services using the latest J2EE technologies.
    * From Web Services to Business Processes
    Learn about key J2EE 1.4 technologies used to implement Web services, and find out how to build Web services-based business processes using the industry standard Business Process Execution Language (BPEL).
    * User Interfaces for SOA
    Use Struts and design patterns to bind business services to user interfaces.
    The hands-on labs take developers through the different stages of building an SOA based application. Developers must bring their own laptop to participate in the workshop, and they will get CDs with the software they need to develop and run the labs.
    Hacker’s Event - Social and Coding Competition
    Following the workshop, attendees will be treated to free pizza and beer and will have the opportunity to compete for additional prizes. Experts from TheServerSide will join the session to discuss SOA best practices.
    Oracle Developer Days are free, but space is limited, so register now.
    Locations, Dates, and registration at:
    http://www.oracle.com/go/?&Src=1587968&Act=43
    Here is what some developers had to say about the events that ran last year:
    http://otn.oracle.com/events/otnworkshop/testimonials.html

    Here are the cities and dates for this developer roadshow. The workshops in Redwood Shores and New York are almost full, the others have more seats available, so check out http://otn.oracle.com/odd and register soon.
    Redwood Shores, CA - 4 Aug
    New York, NY - 10 Aug
    Dallas, TX - 12 Aug
    Dearnborn, MI - 17 Aug
    Miami, FL - 19 Aug
    Denver, CO - 24 Aug
    Atlanta, GA - 26 Aug

  • J2EE and Web Services Workshops by Oracle and TheServerSide

    Oracle and TheServerSide are pleased to invite you to a free SOA developer workshop. This one-day event includes technical sessions, an install fest, hands-on labs, and a hacker's contest. (Attendees must bring their own laptops to participate in the labs and contest.) Topics will include:
    * Overview of Service Oriented Architectures (SOA)
    Discover what it means to move to SOA and learn about key SOA technologies, including J2EE 1.4, Web Services, BPEL, EJB, JSP, and Struts.
    * Constructing the Services Layer
    Develop back-end business services using the latest J2EE technologies.
    * From Web Services to Business Processes
    Learn about key J2EE 1.4 technologies used to implement Web services, and find out how to build Web services-based business processes using the industry standard Business Process Execution Language (BPEL).
    * User Interfaces for SOA
    Use Struts and design patterns to bind business services to user interfaces.
    The hands-on labs take developers through the different stages of building an SOA based application. Developers must bring their own laptop to participate in the workshop, and they will get CDs with the software they need to develop and run the labs.
    Hacker’s Event - Social and Coding Competition
    Following the workshop, attendees will be treated to free pizza and beer and will have the opportunity to compete for additional prizes. Experts from TheServerSide will join the session to discuss SOA best practices.
    Oracle Developer Days are free, but space is limited, so register now.
    Locations, Dates, and registration at:
    http://www.oracle.com/go/?&Src=1587968&Act=43
    Here is what some developers had to say about the events that ran last year:
    http://otn.oracle.com/events/otnworkshop/testimonials.html

    Here are the cities and dates for this developer roadshow. The workshops in Redwood Shores and New York are almost full, the others have more seats available, so check out http://otn.oracle.com/odd and register soon.
    Redwood Shores, CA - 4 Aug
    New York, NY - 10 Aug
    Dallas, TX - 12 Aug
    Dearnborn, MI - 17 Aug
    Miami, FL - 19 Aug
    Denver, CO - 24 Aug
    Atlanta, GA - 26 Aug

  • (261680070) Q SYNCH-11 How do my web service methods accees EJBs and java classes?

    A<SYNCH-11> How do my web service methods accees EJBs and java classes?
    A<SYNCH-11> It is simple to use java classes, just do it as you would ordinarily.
    The .jws file really contains a simple class so you can program with it in the same
    way that you would use a regular Java class.
    To use an EJB you can go and access it directly as you would with any EJB remote
    client (lookup home stub, create, etc) or if the EJB is deployed to WLS you can use
    a control to provide a very simple wrapper to the EJB. We will see this in detail
    on Thursday in the ADVC module.

    Futher information about the possibility of callback:
    It may be possible for a synchronous only web service (i.e. MS .net) to even paticipant
    in the callback functionality of asynchronous web services. If the client implements
    the appropriate methods for the callback but listens for them on a different port
    or binding than the SOAP request, then web service may be able to build a response
    if the client's "callback URL" is submitted as the beginning part of a conversation.
    Watch the BEA developer forum (http://dev2dev.bea.com) for more information about
    this approach and other tips and techniques for building web services.
    "Adam FitzGerald" <[email protected]> wrote:
    >
    Q<SYNCH-03> I heard that MS .net only implements synchrnonus method? If
    this is true.
    Does it means my async methods will only work with J2EE clients?
    A<SYNCH-03> I do not know the limitations of .net but let me point out that
    is very
    difficult to provide asynchronous web service method invocation (this is
    different
    from an asynchronous web service). HTTP as a general communication protocol
    is based
    on a request and response paradigm so your client libraries will mostly
    likely be
    expecting a response even if it is empty (check the asynchronous example
    from today
    to see that the start method still returns an empty response). You must
    distinguish
    this from the notion of an asynchronous web service which is a business
    operation
    that occurs on the server whose return value/result is not directly associated
    with
    building response to the client. An asynchronous web service can (and generally
    will)
    be started and stopped with web service operations that are invoked synchronously.
    Thus MS .net clients can still be client to WLS hosted web services.

  • Create a web service from java bean and map exceptions to SOAP faults

    Hi,
    We have to expose our Session stateless EJB3 as web services. I've tried to use annotations and jdev wizard "java bean to web service" and it works fine.
    Our problem now is that our methods can throw a business exception that contains a list of error message strings to be presented on the client.
    I did not find any way to use annotations to make it build a wsdl with soap fault mapped to our exception class. Neither I could to make the wizard to create wsdl with faults.
    As we are exposing already designed and implemented classes as web services, I think the bottom-top (java->wsdl) approach is better that top->botton (wsdl->java). Therefore, I'm looking for a possibility to generate the web services from the java beans and have the exception be mapped to a soap fault message.
    We are using jdev 10.1.3.1 and OAS 10.1.3.1., is there a way to map exceptions to soap faults using bottom->top approach?
    thank you

    A couple of links that may be of help:
    http://www.netbeans.org/servlets/ReadMsg?listName=nbj2ee&msgNo=1218
    My last question concerning web services:
    I have already written a session bean and I'd like to add some methods
    as a web service to it, how do I do that?
    Or I can only create another bean for a webservice and cannot modify the
    original one?You might create web service with existing sources and select you bean. New web services with appropriate lookup method will be generated.
    All web service method, that will be exposed in web service, you
    should add itself (Pop-up menu Web Service -> Add operation)
    http://usersguide.netbeans.org/files/documents/40/73/Chapter9-WebServices.pdf

  • Are there are no weblogic hosted web services on the internet?

    I want to find a weblogic hosted web service for a demo. But I can't find a single internet based example that is explicitly hosted on weblogic.
    Does anyone have an example web service I can use ?
    Surely BEA would benefit from publishing a few examples...

    ONLY the carrier to which it is locked can legally unlock it.
    No one else at all can do this.
    As far as I know the Verizon iphone will only work with Verizon or foreign carriers if unlocked by Verizon.

  • HT204053 What are the pros and cons of 1) choosing to use the SAME Apple ID for iCloud services on one side, and purchases on the iTunes Store, App Store, and iBookstore, on the other side; or 2) to have and use two separate Apple Ids for these "two sides

    All is in the title, so I repeat it below with a better identation.
    What are the pros and cons of
    1) choosing to use the SAME
                                                  Apple ID for iCloud services on one side, and
                                                  purchases on the iTunes Store, App Store, and iBookstore, on the other side; or
    2) to have and use two separate Apple Ids for these "two sides"?
    P.S.
    I have loads and loads of free podcasts in iTunes in my iMac, that are certainly more thant the 5 gigas the iCloud provides for free, so I don't want those to go to the cloud. But this is perhaps a different question...
    Also need to mention that I have itunes on a mac, a pc and an iphone.
    Sorry to look so silly with this question, but I don't get the "big picture".

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • The server at Mac OS X Server Web Services requires a username and password

    I am running SL Server 10.6.2, wiki works but when a person clicks an attached file in a wiki and then selects "open" they get a login popup with the notification The server at Mac OS X Server Web Services requires a username and password. It doesn't matter what they put into the login/pass it comes back. If they hit cancel then the document opens. If they click save then it saves with no issue. I can type in the admin login/pass of the server and it works. Does this mean the security settings to the location of the files is wrong? Any help is greatly appreciated!

    By the way they are using Internet Explorer 7 when opening these documents.

  • How to create A web services step by step and their uses

    How to create A web services step by step and their uses with their T-Codes
    pls dont send any links
    thank you
    Regards,
    Jagrut Bharatkumar Shukla

    Hi
    Use the Tcode <b>WFWS</b> to create the Web service
    enter the Transaction to whih you wants create the web service and save
    Regards
    Anji

  • Is it always this hard to order a PPV on one tv and watch it on another?

    I just had FiOS tv installed over the weekend.  I ordered the UFC Fight on my kitchen receiver and then went down to watch it in my basement - only to find out that it wasn't available on that TV.  I had this resolved eventually, but it was a pain.  I had to wait around for 20 minutes until a customer service agent could refund the event from one receiver and order it on another.
    I don't remember having this issue with Directv.  I seemed to be able to order an event and watch it on any TV in the house.  Is it always going to be this difficult?

    ox1111 wrote:
    It's terrible, really really bad. At&t is way better at the moment customer service wise, but in truth verizon and at&t are true money ****** and both stick it to you till it hurts and both do it till they lose so many customers they can't no more. Then they start some multimillion dollar ad campaign, basically saying they are better and please give them another try and the cycle starts all over again. Oh, or they get sued, like they have and lost so many many many times before, right now most phone companies are breaking a minimum of fifteen laws on billing, charging, advertizing and services.
    I'm curious, can you name one law they are currently breaking? I really have no concept of the law when it comes to billing, marketing, or advertising.

  • Is there a way to copy a face off one photo and paste it onto another photo

    Is There a way to copy a face off one photo and paste it onto another photo.

    Sure using a stronger photo editing program than iPhoto - <a href="http://web.me.com/larryhn/iPhoto_08_(version_7.x.x)_FAQ/Graphic_programs.html"> click here for links to some to consider.</a>
    LN

  • Can I  "Inactivate" Adobe CS5 Production Premiere on one PC and re-install on another PC?

    I'd like to "Inactivate" Adobe CS5 Production Premiere on one PC and re-install on another PC (in the same room).  I have the serial numbers.  Plus, what steps need to be done to Inactivate?
    Alan

    you can have two concurrent installations/activations.
    to deactivate, open an adobe program>click help>click deactivate.
    to install, start the installation file and enter your serial number when prompted.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

Maybe you are looking for

  • APEX Links in Flash

    Hi I have a flash animation in my APEX application. I want to be able to click on the flash animation and goto the another page in my APEX app. I've tried putting the link in the flash file but it loses the APEX variables, so doesnt work. Any ideas h

  • MDM 5.5 SP03 - Error while connecting EP to MDM server

    Hello colleagues, I've deployed the following content of MDM 55 SP03 delivery to portal: a. com.sap.mdm.tech.mdm4j.sda b. com.sap.mdm.tech.connector.sda c. BPMDMTECHN00_0.sca d. BPMDMAPPLI00_0.sca Then I created MDM system in Portal, arranged mapping

  • IB Keyboard Shortcut to NSButton calls increment: method twice

    I have an increment: IBAction method that gets called when a keyboard shortcut in Interface Builder triggers a button. This method only has one line: [speedSlider setFloatValue:[speedSlider floatValue] + incrementValue]; that increments an NSSlider c

  • Evaluate formula option in number

    Is there an option to evaluate a formula like in excel, so you can see each step in a formula so to check it works correctly?

  • Missing workflow history link of "In Progress" workflow!!!

    I recently get complaint from customer that they lost their "In Progress" workflow history link on documents. I searched on internet and found that "Workflow Auto Clean" job will remove only "Completed" workflow link for document. So Why SharePoint h