Help finding production server information

Hello,
I work on a univeristy campus and I've started to try and test our app, but have run into download issues. When using the Adobe Content Viewer app I am able to download the folios fine. When using the app from app builder I am not able to download on our network. Is there a change in server? How can we resolve this, or find a port to open?
The folios download fine once I am off of the university servers, so there must be something being blocked. Has anyone else run into something like this?
I saw one thread mention port 443 and these domains:
https://origin.adobe-dcfs.com
http://edge.adobe-dcfs.com
I need to send whatever useful information there is to our network service team. Thank you!

First thing I would look at is the capabilities of the
printer. Good
quality network printers meant for the job should have all
you need
built in. You will just need to send the file to be printed
to a
specified directory, URL:port, email address or other network
protocol
the printer has been designed to monitor and print anything
that comes
its way.
If your printer is a desktop printer doing a network job you
will have
more work to do. The next thing to check out is the printer
driver
capabilities, can it be run from the command line or some
other method
that is automate-able. ColdFusion can fairly easy send
command line
instructions in this type of situation.
If that is not an option you may be down to the hardest
choice. If you
can run some application that can print the document you may
be able to
use COM objects to do this programatically. This is a
challenging task
and usually very fragile. For example, using COM objects to
interact
with MS Word is very difficult - since Word will often
generate dialog
boxes that can only be responded to by a user directly
interfacing with
the server.
HTH
Ian

Similar Messages

  • How do you find outgoing server information in mail 1.1.1 on OS10.1?

    My ISP tells me I need to verify my Outgoing SMTP is secure SSL. I know in Tiger you can access this by clicking the server settings button, but I need to do this for OS 10.1 and the only option that old version has is for the incoming under Account options. CLick on the link for a screenshot of what I have. I had no luck finding help topic about this
    any suggestions?
    [IMG]http://i107.photobucket.com/albums/m293/tcarter_02/Misc/options.jpg[/IMG]

    Maybe ctrl+F -> Search in the entire site -> Code view
    and search for example: style="the inline style;"
    That could be a solution...
    Cheers!

  • Need Help Finding a Server-Side printing solution - CFMX 7.0.2

    I would like some help in figuring out how I can print PDFs
    to a specified server-side printer. I am running MX 7.0.2.
    Simplifying my process a bit, I would like to create a pdf,
    send that pdf to a server-side printer, then write to a database
    the date&time of when that pdf was printed (actually when it
    was sent to the printer).
    Any advice or a good place to look to help me?
    Thanks.

    First thing I would look at is the capabilities of the
    printer. Good
    quality network printers meant for the job should have all
    you need
    built in. You will just need to send the file to be printed
    to a
    specified directory, URL:port, email address or other network
    protocol
    the printer has been designed to monitor and print anything
    that comes
    its way.
    If your printer is a desktop printer doing a network job you
    will have
    more work to do. The next thing to check out is the printer
    driver
    capabilities, can it be run from the command line or some
    other method
    that is automate-able. ColdFusion can fairly easy send
    command line
    instructions in this type of situation.
    If that is not an option you may be down to the hardest
    choice. If you
    can run some application that can print the document you may
    be able to
    use COM objects to do this programatically. This is a
    challenging task
    and usually very fragile. For example, using COM objects to
    interact
    with MS Word is very difficult - since Word will often
    generate dialog
    boxes that can only be responded to by a user directly
    interfacing with
    the server.
    HTH
    Ian

  • Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"

    Can not receive Mac mail -error Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct.  Account name: "MacMail"
    What are the correct mail account settings and more importantly the correct DNS settings
    Thank you for any help you may be able to provide
    Cheers
    Chris (iMac i7)

    Do not delete the old account yet. sign up for an iCloud account if you haven't.
    I understand .mac mail will still come through. Do not delete the old account yet.
    You cannot use .mac or MobileMe as type of Account, you have to choose IMAP when setting up, otherwise Mail is hard coded to change imap.mail.me.com to mail.me.com & smtp.mail.me.com to smtp.me.com, no matter what you try to enter.
    iCloud Mail setup, do not choose .mac or MobileMe as type, but choose IMAP...
    On second step where it asks "Description", it has to be a unique name, but you can still use your email address.
    IMAP (Incoming Mail Server) information:
              •          Server name: imap.mail.me.com
              •          SSL Required: Yes
              •          Port: 993
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    SMTP (outgoing mail server) information:
              •          Server name: smtp.mail.me.com
              •          SSL Required: Yes
              •          Port: 587
              •          SMTP Authentication Required: Yes
              •          Username: [email protected] (use your @me.com address from your iCloud account)
              •          Password: Your iCloud password
    Also, you must upgrade your password to meet the new criteria:  8 characters, including upper and lower case and numbers.  If you have an older password that does not meet these criteria, when you try to setup mail on your mac, using all of the IMAP criteria listed above, it will still give a server error message.  Go to   http://appleid.apple.com         then follow directions to change your password, then go back to setting up your mail using the IMAP instructions above.
    Thanks to dpepper...
    https://discussions.apple.com/thread/3867171?tstart=0

  • Need help in writinf a stop script for a production server

    can somebody help me with a stop script which stops a jrun
    production server.
    jrun -stop production
    this command should work but how do i use this in a script .
    Thanks

    Hi,
    I highly recommend that you skip VBScript and learn PowerShell instead. This is pretty trivial in PowerShell:
    If ($env:COMPUTERNAME.Length -le 15) {
    # Do stuff
    # HINT: Look into Start-Service
    Write-Host "Under limit: $env:COMPUTERNAME"
    } Else {
    # Do optional stuff
    Write-Host "Over limit: $env:COMPUTERNAME"
    (OT: jrv - happy? =])
    If you must stick with VBScript for some odd reason, here's an example to get you started:
    Set wshNetwork = WScript.CreateObject( "WScript.Network" )
    strComputerName = wshNetwork.ComputerName
    If Len(strComputerName) <= 15 Then
    'Do stuff here when the name is short enough
    WScript.Echo "Under limit: " & strComputerName
    Else
    'Do stuff here when the name is too long (only if you want to)
    WScript.Echo "Over limit: " & strComputerName
    End If
    http://www.activexperts.com/activmonitor/windowsmanagement/adminscripts/services/
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • HT4972 I keep getting a message unable to find update server. Can someone help me. I am tryig to update my Iphone

    I have been trying to update my phone for weeks. I keep getting the message "Unable to find update server. I have the latest I phone. Please help.

    This is asked and answered many times every day.  The forum search bar is on the right side of this page.
    Disable your firewall/security software and try again.

  • When I click on my gmail to get a wall post from FB I get this message..SERVER NOT FOUND FIREFOX CAN'T FIND SERVER AT permalink.php . PLS help me fix this. Thanks Firefox can't find the server at permalink.php.

    ''''''When I click on my gmail to get a wall post I get this message ...Server not found Firefox can't find the server at permalink.php. PLEASE HELP ME FIX THIS! I just updated to firefox 6.0. THANK YOU

    Try resetting your proxy server. Go to Tools, Options, Advanced, Settings and select one. I must do this every time I restart Firefox -- but at least after that, I'm okay until the next restart.

  • Can some one explain me on Exchange server / CAL licesing & where I can find current cost information?

    Can some one explain me on Exchange server / CAL licesing & where I can find current cost information?

    Hi,
    As far as I know, every user need a license to use Exchange server and we can choose User CAL or Device CAL.
    For more information about license, you can refer to the following articles:
    Licensing Basics: What are CALs (Client Access Licenses):
    http://blogs.msdn.com/b/mssmallbiz/archive/2007/11/06/5942350.aspx
    Exchange Server 2013 licensing:
    http://office.microsoft.com/en-001/exchange/microsoft-exchange-server-licensing-licensing-overview-FX103746915.aspx
    Exchange Licensing FAQ:
    http://office.microsoft.com/en-001/exchange/microsoft-exchange-licensing-faq-email-for-business-FX103934581.aspx
    For the cost issue, I recommend you call Microsoft Licensing for useful information. And they will be able to give you an estimate based on your requirement.
    http://www.microsoft.com/licensing/
    If you have any question, please feel free to let me know.
    Best regards,
    Angela Shi
    TechNet Community Support

  • How to find the date when object is moved from quality to production server

    Hi Experts,
    I am working with BADI ZMM_PUR_REQ_PROC_001-Method Check and BADI ZME_PROCESS_PO_CUST-Method Check.
    I need to add a check that a particular logic should be implemented only after this object is moved to the production server.
    How can i check the date when an object (in my case this BADI) is moved to the production server?
    <Removed by moderator>
    Thanks in advance.
    Edited by: Vinod Kumar on Aug 1, 2011 10:55 AM

    Hi Sakshi,
    So your reqt is that the documents created after your Transport implementation date should pass the check and others (old ones) should ignore.
    I will recommend, if at all possible, to make all the old documents compatible to your check by doing a separate initial loading /one time activity to avoid this kind of hardcoding.
    IF not at all possible to do so, then I think you should better hardcode your Transport req number and fetch date (AS4DATE) from E070 table and only if any entry exists, use that date as your required date. I believe this will be the date of transport imported in the target system.
    You can avoid hardcoding Transport number by picking latest transport with respect to your object (BADI) using E071 table, but that will go wrong once you send any future changes in this BADI to Prod, so better to hardcode the transport.
    BR,
    Diwakar

  • How to find Server Information and MIME

    I'm working on a simple http server and was wondering how I could obtain the Server information?
    Example Server informations are:
    CERN/3.0
    or
    Server:�Apache/1.3.26�(Unix)�PHP/4.1.2�mod_ssl/2.8.10�OpenSSL/0.9.6(CR)
    something like this...
    and how do i obtain the mime information?
    Example MIME info is:
    MIME-Version: 1.0
    Thanks in advance!

    Please clarify: are you working on an HTTP server or an HTTP client? If the former, are you wanting to know what your server should output in response to a request? If the latter, are you wanting to know how to parse the response?

  • Creating Indexes in Production Server.

    Hi All,
    1. We have master data table in Production server with 2 million records.This master data table doesn't have
    any Indexes created which causes the delay in Loading process. How to create indexes in production
    2. This table have Index created in DEV but was created as $tmp package so cannot be transported.So if i
    create the Index for this master data table which already having the data what could be the impact like loss of
    data or any other way.Please post your valuable comments.
    Thanks & Regards
    Kranthi.
    Edited by: Arun Varadarajan on Apr 15, 2009 11:54 PM

    Hi Kranti,
    Creating Secondary Indexes 
    Procedure
    1.     In the maintenance screen of the table, choose Indexes.
    If indexes already exist on the table, a list of these indexes is displayed. Choose  .
    2.     In the next dialog box, enter the index ID and choose 
    The maintenance screen for indexes appears.
    3.     Enter an explanatory text in the field Short text.
    You can then use the short text to find the index at a later time, for example with the R/3 Repository
    Information System.
    4.     Select the table fields to be included in the index using the input help for the Field name column.
    The order of the fields in the index is very important. See What to Keep in Mind for Secondary Indexes.
    5.     If the values in the index fields already uniquely identify each record of the table, select Unique index.
    A unique index is always created in the database at activation because it also has a functional meaning
    (prevents double entries of the index fields).
    6.     If it is not a unique index, leave Non-unique index selected.
    In this case you can use the radio buttons to define whether the index should be created for all database
    systems, for selected database systems or not at all in the database.
    7.     Select for selected database systems if the index should only be created for selected database
    systems.
    Click on the arrow behind the radio buttons. A dialog box appears in which you can define up to 4 database
    systems with the input help. Select Selection list if the index should only be created on the given database
    systems. Select Exclusion list if the index should not be created on the given database systems. Choose  .
    8.     Choose  .
    Regards,
    Prabhudas
    Edited by: Arun Varadarajan on Apr 15, 2009 11:53 PM
    Edited by: Arun Varadarajan on Apr 15, 2009 11:54 PM

  • Sudden Kernal Panics with Production Server

    I was called in today because a departmental supervisor had to manually restart their production server today and the application that ran on it didn't restart properly. After some looking and then another controlled restart to get the application going again, the server kernal paniced. From actualy examination, it appears this is what happened the first time.
    As the server is in production mode, I've not taken any steps with Dr. Smoke's troubleshooting list, but I have pulled the panic.log and I'm posting it here. If someone has any clue where I should start, that would be helpful!
    Wed Nov 16 13:58:32 2005
    panic(cpu 0 caller 0x000E7FF4): vnode_put(1d95210): iocount < 1
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095698 0x00095BB0 0x0002683C 0x000E7FF4 0x000E7FA0 0x000D4A18 0x002A9BF4 0x000ABE30
    0xFF5DB3C2
    Proceeding back via exception chain:
    Exception state (sv=0x2F8F6280)
    PC=0x9001C240; MSR=0x0000F030; DAR=0xE0E9CB38; DSISR=0x02200000; LR=0x90B14554; R1=0xF1425710; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.3.0: Mon Oct 3 20:04:04 PDT 2005; root:xnu-792.6.22.obj~2/RELEASE_PPC
    Could this be a processor flaking out? I'm sure I'll have to do this after hours, so any head start I can get would be greatly appreciated!
    PowerBook G4 17   Mac OS X (10.3.9)   1.5G RAM

    Hi, L.
    The panic cited, i.e.
    panic(cpu 0 caller 0x000E7FF4): vnode_put(1d95210): iocount < 1</tt>
    implies something is amiss either with affected Mac's hard drive directory (potentially affecting either file information or virtual memory swap files) or your RAM. Processor or programming errors are also possible, but I'd say less likely.
    A vnode is defined here as "An in-memory data structure containing information about a file."
    The particular message sited in the panic comes from the vfs_subr.c component of the operating system, concerned with "External virtual filesystem routines."
    I suggest you troubleshoot this off-hours using my "Resolving Kernel Panics" FAQ, as you noted. This FAQ includes step-by-step instructions for identifying and resolving some of the most common causes of kernel panics.
    My FAQ is a roadmap: start at the beginning and work through to the end, following the instruction in the order specified, including the "If all else fails..." section if a cause or resolution is not found in an earlier troubleshooting step therein.
    If you look at this Google search you'll find some similar reports that find issues with hard drive files, RAM, bad NIC, and related things that the troubleshooting steps in my FAQ would help you isolate. However, follow my FAQ step-by-step rather than skipping around as it's designed to find high-probability / low-effort causes up front.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • Unable to find product oracle.swd.jre[1.1.6, 1.1.7.27] in oracle inventory

    while installing workflow server 2.6 I got an error saying that "unable to find product oracle.swd.jre[1.1.6, 1.1.7.27] in oracle inventory"
    I tried installing it using oracle universal installer 2.2 but still it is giving the same error as above.
    so please help me.

    Thanks Allison for your help.
    I am installing wf server on windows 2000
    The other products installed in the same ORACLE_HOME are Oracle database 9i version 9.2.0.1.0
    I am not using any CD, but I have downloaded it from web and have the licence to use the software.
    I hope you can help me
    Janak

  • PI-7.0(xi-7.0) as production server - wrongly abap client(001)

    Hi all,
    We are using PI-7.0(xi-7.0) as production server, we ran the post installtion successfuly  last  6month before and now server status is live production system.
    Our issue is we ran wrongly abap client(001)as default client in the  post-installation step. Now only we identified this. So we need to change from client(001) to production client(576).
    Please guide us to how to change the client..what are the solution to change .
    Thanks in advance.
    Regards
    Lakshminarayanan M

    Hi,
    >Any updates ?
    Do you realise that I'm not paid by my employer to do your work ?
    Is it so dificult to search for SAP OSS note with "client"  as keyword in BC-XI area ?
    I took me 2 minutes  to find notes 1115280 and 940309
    It is possible to use an other client instead of the default 001 client but there is no advantage and you have to reconfigure a lot of thing which can lead to a lot of trouble.
    PS :
    [Mode rant on]
    Why are so many people on these forums asking to be spoon fed ?
    They need to learn how to search information. It's so easy with the internet age and search engines !
    [Mode rant off]
    Regards,
    Olivier

  • Time out error in production server  for alv grid report

    hi. i have developed alv grid report using nested select statments. when i testing in development  server it is giving the output but in production server if i give 4 months then it is showing time out error.please help me out..its urgent.
    Thanks in advance.

    Hi Manu,
    Don't use Nested selected statements.
    Use the Following  Performance Tuning Options that i have given below so that your problem can be solved.
    1)  Always check the driver internal tables is not empty, while using FOR ALL ENTRIES
    2) Avoid for all entries in JOINS
    3) Try to avoid joins and use FOR ALL ENTRIES.
    4)   Try to restrict the joins to 1 level only ie only for tables
    5)   Avoid using Select *.
    6)   Avoid having multiple Selects from the same table in the same object.
    7)  Try to minimize the number of variables to save memory.  
    8)   The sequence of fields in 'where clause' must be as per primary/secondary index ( if any)
    9)   Avoid creation of  index as far as possible
    10) Avoid operators like  <>, > , < & like % in where clause conditions
    11) Avoid select/select single statements in loops.
    12) Try to use 'binary search' in READ internal table. Ensure table is sorted before using   BINARY SEARCH.
    13) Avoid using aggregate functions  (SUM, MAX etc) in selects ( GROUP BY , HAVING,)  
    14) Avoid using  ORDER  BY in selects
    15) Avoid Nested Selects
    16) Avoid Nested Loops of Internal Tables
    17) Try  to  use FIELD SYMBOLS.
    18) Try to avoid into Corresponding Fields of
    19) Avoid using Select  Distinct, Use DELETE ADJACENT
    <b>
    Reward Points for sure if you find it useful. </b>
    Regards
    Babu

Maybe you are looking for

  • Schedules & Users in Security Center  is not enable in BI Publisher OBI10g

    Hi All Experts, *1.* I want to create a new user in Oracle BI Publisher but in security center there is no option to create user, with the name Users I am getting below options . Admin --> Security Center 1. Security Configuration 2. Roles and Permis

  • ITunes refuses to open after software update

    So i recently had my macbook updated to OS X 10.7, but in the process all my information was wiped. Luckily i saved it all on my harddrive. When i then tried to re-install all my applications, the only one i had a problem with was iTunes. I installed

  • Cross Domain XML not working

    Greetings, I recently obtained two different domains that point to a subdirectory of another domain server. The swf file I created does not show up when I use the domains that are pointing to the subdirectory of the original domain. I placed an xml f

  • Compiling Client for SessionBean

    on compilation of client program : javac -classpath {$CLASSPATH}:ejb.jar Client.java it is giving me the error showing that program is not able to locate EJB classes containg ejb.jar. please help me on this

  • How to use get() method of hashmap in jsp

    Hi, Iam using hashMap in action form from which I want to retrieve the value by giving the key in jsp page. ex: HashMap m = new HashMap(); m.add("key", "value"); String v = m.get("key"); I want to know how implement m.get("key") in jsp without doing