Browser URL 127.0.0.1?

Hi,
we will take a look to the Service Desk virt. Appliance.
But after first install i got the hint on Appliance Managment Screen, the Browser URL for Service Desk is 127.0.0.1?
Where can i change it to the correct URL/IP?
Thx
Thomas

Sorry, my Mistake.
I can open the URL: with correct IP after a System Reboot und waiting a few Seconds.....

Similar Messages

  • HT1677 In safari browser cookies is working fine. But when I add the browser url to the screen then the cookies concept is not working. In safari setting cookies is always open only. Can you please provide any information regarding to this?

    In safari browser cookies is working fine. But when I add the browser url to the screen then the cookies concept is not working. In safari setting cookies is always open only. Can you please provide any information regarding to this?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that turns off some settings and disables most add-ons (extensions and themes).
    ''(If you're using an added theme, switch to the Default theme.)''
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu by clicking on the '''Restart with Add-ons Disabled...''' menu item:<br>
    [[Image:FirefoxSafeMode|width=520]]<br><br>
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.
    Thank you.

  • How to show a nice URL in Browser URL navigator?

    How to show a nice URL in Browser URL navigator?
    Hello
    Arquitecture:
    Internet --- Machine1 (Apache like Proxy Reverse and rewrite) --- MAchine2 (GLASSFISH-APEX LISTENER 2.0.1) --- DATABASE
    That application will be like a directory of products, we need a nice indexation inside google, yahoo, etc...
    We want to build an application with APEX, with a nice custom URL. like http:\\domain\pagina1\pagina2\pagina3
    Limitations:
    * We can not use frame
    Actually, We obtained that when we write in a browsers URL domain "the domain" redirect to "http://domain/apex/f?p=600", and that appear in "browser url" but we want to know if is posible to change that without use frames.
    Thanks.

    Interesting Morten states that "You can use Apache with mod_rewrite to set up mapping between REST-style URLs to your Apex pages...", I've seen no working examples of how to do this with Apache because mod_rewrite is very limited in it's ability to process the query string part of the URL, with all the APEX stuff we need to refer to.
    Morten if you are reading this, what's the secret man?

  • Launching Browser from Java when Browser URL is very  long

    Hi,
    I am trying to launch a browser from Java.
    I am doing the following.
    String command = "cmd" + "/c" + "start" + " browserURL";
    Process p = Runtime.getRuntime()exec(command);
    Note: My browserURL is very long.
    Now the browser is invoked. But the URL shown is incomplete and hence
    browser is unable to open the required application.
    Can someone help me in this.
    One way is to increase the buffer size on the command prompt?
    Is there any java command for this?
    Is there any other way to solve this issue.
    Thanks,
    AR

    this is my second time posting this, take note of it. I can't remember where i got it from, but credits go to the person that wrote it. It has helped me out thousands of times!!!
    to use, compile, then call from your program:
    org.newio.utils.BrowserLauncher.openURL("your url here")dfwtc
    package org.newio.utils;
    import java.io.File;
    import java.io.IOException;
    import java.lang.reflect.*;
    public class BrowserLauncher
        private static int jvm;
        private static Object browser;
        private static boolean loadedWithoutErrors;
        private static Class mrjFileUtilsClass;
        private static Class mrjOSTypeClass;
        private static Class macOSErrorClass;
        private static Class aeDescClass;
        private static Constructor aeTargetConstructor;
        private static Constructor appleEventConstructor;
        private static Constructor aeDescConstructor;
        private static Method findFolder;
        private static Method getFileType;
        private static Method makeOSType;
        private static Method putParameter;
        private static Method sendNoReply;
        private static Object kSystemFolderType;
        private static Integer keyDirectObject;
        private static Integer kAutoGenerateReturnID;
        private static Integer kAnyTransactionID;
        private static final int MRJ_2_0 = 0;
        private static final int MRJ_2_1 = 1;
        private static final int WINDOWS_NT = 2;
        private static final int WINDOWS_9x = 3;
        private static final int OTHER = -1;
        private static final String FINDER_TYPE = "FNDR";
        private static final String FINDER_CREATOR = "MACS";
        private static final String GURL_EVENT = "GURL";
        private static final String FIRST_WINDOWS_PARAMETER = "/c";
        private static final String SECOND_WINDOWS_PARAMETER = "start";
        private static final String NETSCAPE_OPEN_PARAMETER_START = " -remote 'openURL(";
        private static final String NETSCAPE_OPEN_PARAMETER_END = ")'";
        private static String errorMessage;
        private BrowserLauncher()
        private static boolean loadClasses()
            switch(jvm)
            default:
                break;
            case 0: // '\0'
                try
                    Class aeTargetClass = Class.forName("com.apple.MacOS.AETarget");
                    macOSErrorClass = Class.forName("com.apple.MacOS.MacOSError");
                    Class osUtilsClass = Class.forName("com.apple.MacOS.OSUtils");
                    Class appleEventClass = Class.forName("com.apple.MacOS.AppleEvent");
                    Class aeClass = Class.forName("com.apple.MacOS.ae");
                    aeDescClass = Class.forName("com.apple.MacOS.AEDesc");
                    aeTargetConstructor = aeTargetClass.getDeclaredConstructor(new Class[] {
                        Integer.TYPE
                    appleEventConstructor = appleEventClass.getDeclaredConstructor(new Class[] {
                        Integer.TYPE, Integer.TYPE, aeTargetClass, Integer.TYPE, Integer.TYPE
                    aeDescConstructor = aeDescClass.getDeclaredConstructor(new Class[] {
                        java.lang.String.class
                    makeOSType = osUtilsClass.getDeclaredMethod("makeOSType", new Class[] {
                        java.lang.String.class
                    putParameter = appleEventClass.getDeclaredMethod("putParameter", new Class[] {
                        Integer.TYPE, aeDescClass
                    sendNoReply = appleEventClass.getDeclaredMethod("sendNoReply", new Class[0]);
                    Field keyDirectObjectField = aeClass.getDeclaredField("keyDirectObject");
                    keyDirectObject = (Integer)keyDirectObjectField.get(null);
                    Field autoGenerateReturnIDField = appleEventClass.getDeclaredField("kAutoGenerateReturnID");
                    kAutoGenerateReturnID = (Integer)autoGenerateReturnIDField.get(null);
                    Field anyTransactionIDField = appleEventClass.getDeclaredField("kAnyTransactionID");
                    kAnyTransactionID = (Integer)anyTransactionIDField.get(null);
                    break;
                catch(ClassNotFoundException cnfe)
                    errorMessage = cnfe.getMessage();
                    return false;
                catch(NoSuchMethodException nsme)
                    errorMessage = nsme.getMessage();
                    return false;
                catch(NoSuchFieldException nsfe)
                    errorMessage = nsfe.getMessage();
                    return false;
                catch(IllegalAccessException iae)
                    errorMessage = iae.getMessage();
                return false;
            case 1: // '\001'
                try
                    mrjFileUtilsClass = Class.forName("com.apple.mrj.MRJFileUtils");
                    mrjOSTypeClass = Class.forName("com.apple.mrj.MRJOSType");
                    Field systemFolderField = mrjFileUtilsClass.getDeclaredField("kSystemFolderType");
                    kSystemFolderType = systemFolderField.get(null);
                    findFolder = mrjFileUtilsClass.getDeclaredMethod("findFolder", new Class[] {
                        mrjOSTypeClass
                    getFileType = mrjFileUtilsClass.getDeclaredMethod("getFileType", new Class[] {
                        java.io.File.class
                    break;
                catch(ClassNotFoundException cnfe)
                    errorMessage = cnfe.getMessage();
                    return false;
                catch(NoSuchFieldException nsfe)
                    errorMessage = nsfe.getMessage();
                    return false;
                catch(NoSuchMethodException nsme)
                    errorMessage = nsme.getMessage();
                    return false;
                catch(SecurityException se)
                    errorMessage = se.getMessage();
                    return false;
                catch(IllegalAccessException iae)
                    errorMessage = iae.getMessage();
                return false;
            return true;
        private static Object locateBrowser()
            if(browser != null)
                return browser;
            switch(jvm)
            case 0: // '\0'
                try
                    Integer finderCreatorCode = (Integer)makeOSType.invoke(null, new Object[] {
                        "MACS"
                    Object aeTarget = aeTargetConstructor.newInstance(new Object[] {
                        finderCreatorCode
                    Integer gurlType = (Integer)makeOSType.invoke(null, new Object[] {
                        "GURL"
                    Object appleEvent = appleEventConstructor.newInstance(new Object[] {
                        gurlType, gurlType, aeTarget, kAutoGenerateReturnID, kAnyTransactionID
                    return appleEvent;
                catch(IllegalAccessException iae)
                    browser = null;
                    errorMessage = iae.getMessage();
                    return browser;
                catch(InstantiationException ie)
                    browser = null;
                    errorMessage = ie.getMessage();
                    return browser;
                catch(InvocationTargetException ite)
                    browser = null;
                    errorMessage = ite.getMessage();
                    return browser;
            case 1: // '\001'
                File systemFolder;
                try
                    systemFolder = (File)findFolder.invoke(null, new Object[] {
                        kSystemFolderType
                catch(IllegalArgumentException iare)
                    browser = null;
                    errorMessage = iare.getMessage();
                    return browser;
                catch(IllegalAccessException iae)
                    browser = null;
                    errorMessage = iae.getMessage();
                    return browser;
                catch(InvocationTargetException ite)
                    browser = null;
                    errorMessage = ite.getTargetException().getClass() + ": " + ite.getTargetException().getMessage();
                    return browser;
                String systemFolderFiles[] = systemFolder.list();
                for(int i = 0; i < systemFolderFiles.length; i++)
                    try
                        File file = new File(systemFolder, systemFolderFiles);
    if(file.isFile())
    Object fileType = getFileType.invoke(null, new Object[] {
    file
    if("FNDR".equals(fileType.toString()))
    browser = file.toString();
    return browser;
    catch(IllegalArgumentException iare)
    browser = browser;
    errorMessage = iare.getMessage();
    return null;
    catch(IllegalAccessException iae)
    browser = null;
    errorMessage = iae.getMessage();
    return browser;
    catch(InvocationTargetException ite)
    browser = null;
    errorMessage = ite.getTargetException().getClass() + ": " + ite.getTargetException().getMessage();
    return browser;
    browser = null;
    break;
    case 2: // '\002'
    browser = "cmd.exe";
    break;
    case 3: // '\003'
    browser = "command.com";
    break;
    case -1:
    default:
    browser = "netscape";
    break;
    return browser;
    public static void openURL(String url)
    throws IOException
    if(!loadedWithoutErrors)
    throw new IOException("Exception in finding browser: " + errorMessage);
    Object browser = locateBrowser();
    if(browser == null)
    throw new IOException("Unable to locate browser: " + errorMessage);
    switch(jvm)
    case 0: // '\0'
    Object aeDesc = null;
    try
    try
    aeDesc = aeDescConstructor.newInstance(new Object[] {
    url
    putParameter.invoke(browser, new Object[] {
    keyDirectObject, aeDesc
    sendNoReply.invoke(browser, new Object[0]);
    catch(InvocationTargetException ite)
    throw new IOException("InvocationTargetException while creating AEDesc: " + ite.getMessage());
    catch(IllegalAccessException iae)
    throw new IOException("IllegalAccessException while building AppleEvent: " + iae.getMessage());
    catch(InstantiationException ie)
    throw new IOException("InstantiationException while creating AEDesc: " + ie.getMessage());
    break;
    finally
    aeDesc = null;
    browser = null;
    case 1: // '\001'
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    break;
    case 2: // '\002'
    case 3: // '\003'
    Runtime.getRuntime().exec(new String[] {
    (String)browser, "/c", "start", url
    break;
    case -1:
    Process process = Runtime.getRuntime().exec((String)browser + " -remote 'openURL(" + url + ")'");
    try
    int exitCode = process.waitFor();
    if(exitCode != 0)
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    catch(InterruptedException ie)
    throw new IOException("InterruptedException while launching browser: " + ie.getMessage());
    break;
    default:
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    break;
    static
    loadedWithoutErrors = true;
    String osName = System.getProperty("os.name");
    if("Mac OS".equals(osName))
    String mrjVersion = System.getProperty("mrj.version");
    String majorMRJVersion = mrjVersion.substring(0, 3);
    try
    double version = Double.valueOf(majorMRJVersion).doubleValue();
    if(version == 2D)
    jvm = 0;
    } else
    if(version >= 2.1000000000000001D)
    jvm = 1;
    } else
    loadedWithoutErrors = false;
    errorMessage = "Unsupported MRJ version: " + version;
    catch(NumberFormatException numberformatexception)
    loadedWithoutErrors = false;
    errorMessage = "Invalid MRJ version: " + mrjVersion;
    } else
    if(osName.startsWith("Windows"))
    if(osName.indexOf("9") != -1)
    jvm = 3;
    } else
    jvm = 2;
    } else
    jvm = -1;
    if(loadedWithoutErrors)
    loadedWithoutErrors = loadClasses();
    suck my balls

  • How get browser URL from portlet JSR-168?

    I use Oracle Portal. And I have problem.
    How get browser URL from portlet JSR-168?

    Normaly it is
    http://server:port/portletContextRoot
    Did you create the portlet with JDeveloper? When you dpeloy the portlet to your application server, JDeveloper should output the URL of the portlet test page in the deployment output feedback.

  • Get browser url from 11g form?

    Is there any function to get the current url of the browser that the 11g form applet is running in?
    Or at least the server:port part?
    Thanks

    In version 11 you can use javascript to extract the browser url. For example:
    Declare
         JS_in      varchar2(32767);
         rtn     varchar2(1024);
    Begin
         -- JS_in is the javascript funtion you want to call.
         JS_in := 'location.href';
         rtn := WEB.JAVASCRIPT_EVAL_FUNCTION (JS_in);
         -- "rtn" should contain the complete URL as seen in the browser address bar.
         -- Do something with rtn.       
    End;

  • Update a browser URL without reloading the page

    Is there any way to update the browser url from flash without
    reloading the page?
    My main interest is in being able to use flash to change the
    url variables to reflect what is currently being displayed in the
    swf.
    ie.
    http://www.blah.com?frame=0 might be set to
    http://www.blah.com?frame=10 when the swf reaches frame 10,
    allowing the user to go directly to frame 10 if they return to the
    page later.
    Thanks
    Rick

    You can try a technique that is used by web designers to
    prevent back button actions. Through JavaScript you can write
    strings after hash "#" - like bookmarking (anchors) and then read
    this variables. The advantage is that page doesn't reload and
    bookmarks are saved in the browser history (back button issues).
    Hope it helps.

  • Find out the browser url in forms10g

    Hi Pal,
    How to find out the browser url(full path) in forms10g
    whether it is possible to get it or any workaround is their.
    Please send the logic as soon as possible.
    Working Environment
    Forms10g : Developer suite 10g
    Database : Oracle 11g
    Operating system :Window XP
    With regards
    Nathan

    This information is very complicated to obtain. I think that it could be possible with Forms 11g, and only if the Form is displayed in the browser window (separateFrame=false).
    I'm sure that it would be easyer to store the url in an environment variable on the AS, then request this variabel withi Forms via the TOOL_ENV.Getvar() builtin.....
    Francois

  • Browse URL in FM11 won't allow input of any kind.  I need to connect either to a CMS, or WebDav, or checkout from Sharepoint, but nothing works.

    Any one in FrameMaker 11 having ANY luck of any kind with a check out rev controlled doc management system for a team?  So far, CMS won't work with FM11.  SharePoint 12 doesn't work with FM11.  And the Browse URL won't allow input of any kind no matter what direction I approach at.  I have been to preferences, allowing checkout of HTTP files on open, and upload HTTP files on save, but nothing works yet.
    I can check out and return from SP13 from the web, but all links are lost, and only embedded information carries over.
    Any suggestions and input would be valued.
    I didn't want to go Ditta simply because the company has SharePoint and it was supposed to be compatible. It isn't, so I need a back door.
    I would rather not run two systems for Doc Control if I don't have to.  There is much to do, and dividing resources is a waste that I would prefer to avoid.
    Thanks
    A

    I didn't want to go Ditta simply because the company has SharePoint and it was supposed to be compatible. It isn't, so I need a back door.
    If you mean DITA and structured documentation, take a look at DITA Exchange – sad disclaimer, I'm no wise affiliated and I haven't yet managed to persuade the powers that be to try this level of integration.

  • I changed my browser url to blank now I cannot find bookmarks or menu toolbar, pls can someone tell me how to restore to original url setting?

    I tried to remove thumbnails from Firefox & following online advice went to browser.newtab.url and changed it to "blank", now when I open Firefox the menu bar with bookmarks etc is missing, but when I open a new tab the thumbnail images are still there, I don't have much experience & would appreciate advice as to how to restore. I tried restoring computer to earlier time but that didn't not restore the browser url to the state before I started messing with it. Please help!

    Make sure that you do not run Firefox in full screen mode (press F11 or Fn + F11 to toggle; Mac: Command+Shift+F).
    *https://support.mozilla.org/kb/how-to-use-full-screen
    If you are in full screen mode then hover the mouse to the top of the screen to make the Navigation Toolbar and Tab bar appear.<br>Click the Maximize button (top right corner of the Navigation Toolbar) to leave full screen mode or right-click empty space on a toolbar and choose "Exit Full Screen Mode" or press the F11 key.
    You can use one of these to set which toolbars to show.
    *"3-bar" Firefox menu button > Customize > Show/Hide Toolbars
    *View > Toolbars<br>Tap the Alt key or press F10 to show the Menu Bar
    *Right-click empty toolbar area
    What is the current value of the browser.newtab.url pref?
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved
    You can create a new Boolean pref on the about:config page to prevent Firefox from generating thumbnails for the about:newtab page.
    *name: browser.pagethumbnails.capturing_disabled with value: true
    Delete the thumbnails folder in the Firefox profile folder to remove already stored web page thumbnails.

  • Getting browser URL from form

    Dears,
    I'm running some forms 10gr2, I would like to get the browser URL inside my form. How could I do something like this?
    Thanks in advance.

    Also with PJC bean is possible..
    http://peterv6i.blogspot.com/2012/04/reading-applet-parameters-in-oracle.html
    or
    package in2.client;
    import java.io.PrintStream;
    import java.net.InetAddress;
    import oracle.forms.handler.IHandler;
    import oracle.forms.properties.ID;
    import oracle.forms.ui.VBean;
    public class ClientInfo extends VBean
      private static final ID CLIENT_IP = ID.registerProperty("CLIENT_IP");
      private static final ID CLIENT_NAME = ID.registerProperty("CLIENT_NAME");
      private static final ID CLIENT_OS = ID.registerProperty("CLIENT_OS");
      private static final ID CLIENT_USER = ID.registerProperty("CLIENT_USER");
      private static final ID HOST_URL = ID.registerProperty("HOST_URL");
      private IHandler mHandler;
      private String hostAddress = "";
      private String hostName = "";
      private String hostOs = "";
      private String hostUser = "";
      private String hostURL = "";
      public ClientInfo()
        try
          System.out.println("+----------------------+");
          System.out.println("+  ClientInfro PJC     +");
          System.out.println("+  Peter Valencic      +");
          System.out.println("+----------------------+\n");
          this.hostAddress = InetAddress.getLocalHost().getHostAddress();
          this.hostName    = InetAddress.getLocalHost().getHostName();
          this.hostOs      = System.getProperty("os.name");
          this.hostUser    = System.getProperty("user.name");
          System.out.println("Host   adress: " + this.hostAddress);
          System.out.println("Host     name: " + this.hostAddress);
          System.out.println("Host op. syst: " + this.hostOs);
          System.out.println("Host username: " + this.hostUser);
          System.out.println("+----------------------+\n");
        catch (Exception e)
          System.out.println("Init error: " + e.toString());
      public void init(IHandler handler)
        super.init(handler);
        this.mHandler = handler;
      public Object getProperty(ID pid)
        if (pid == CLIENT_IP) {
          System.out.println("Client IP: " + this.hostAddress);
          return "" + this.hostAddress;
        if (pid == CLIENT_NAME) {
          System.out.println("Client Name: " + this.hostName);
          return "" + this.hostName;
        if (pid == CLIENT_OS) {
          System.out.println("Client os: " + this.hostOs);
          return "" + this.hostOs;
        if (pid == CLIENT_USER) {
          System.out.println("Clientuser: " + this.hostUser);
          return "" + this.hostUser;
        if (pid == HOST_URL) {
          hostURL = this.mHandler.getApplet().getDocumentBase();
          System.out.println("Host Url: " + this.hostURL);
          return "" + this.hostURL;
        return super.getProperty(pid);
    }

  • Changing Client Browser URL

    How can I change the client browser URL after a request ?
    Example:
    Browser => HTTP/POST to "www.google.com" with the keywords included in the form
    Browser <= receive the response of the "www.google.com" but the url in the browser now contains "http://www.google.be/search?q=test&ie=UTF-8&oe=UTF-8&hl=nl&meta=".
    Thanks in advance,
    Geof

    In your example, Google.com does a redirect to that URL. You can do that like so:response.sendRedirect(response.encodeRedirectURL(newURL));If you are using level 2.2 or later of servlets, newURL can contain a URL relative to the current one, otherwise it has to be a full URL.

  • WebDav Server Access: Workgroup vs. Browse URL

    Greetings,
    I am trying to set up WebDav access for a distributed authoring group.  Reading the user guide, it appears that the "Browse URL" approach is the newer and preferred access method.  The Workgroup functionality is older.
    When I attempt to use "Browse URL" and I enter in the URL of my WebDav server, it immediately says, "Cannot find the URL path..."  Using the Workgroup approach with the exact same URL works great with no problems.  I've tried other WebDav servers and in each case I get exactly the same result--Workgroup works fine and Browse URL says it cannot find the URL path.  I would prefer to use the Browse URL approach because it seems more streamlined, but there appears to be some kind of issue.
    Has anyone else experienced this issue?  Does anyone have any other suggestions?
    Thank you,
    Adam
    FM 9.0p255
    WinXP, SP3

    Hi Adam,
    Browse URL approach is the newer and the more preferred method to access WebDAV enabled CMS's starting from FrameMaker 9. The Browse URL functionality should work fine for IIS, Tomcat, Alfesco CMS and Documentum WebDAV configurations.
    - What WebDAV server configuration are you trying to access?
    - Please check whether you are able to browse the same WebDAV URLs in a browser as well.
    However unrelated it may seem, as you have been successful in connecting through the Workgroup route, you might try to map the WebDAV directory to a network drive. I am aware of a Microsoft update for Windows Vista (I notice that the applicable OS include WinXP as well) which enables access to mapped Web folders. Might be helpful.
    Here's the link:
    http://www.microsoft.com/downloads/details.aspx?FamilyId=17C36612-632E-4C04-9382-987622ED1 D64&displaylang=en
    Regards,
    Nakshatra

  • Use the CHECKIN_NEW service in the browser url

    Hi,
    I use UCM 10gR3.
    I am wondering if it is possible to use the CHECKIN_NEW service by just entering a url into the http path. I was checking the postCheckInStandard() function that is being called when the user is clicking the checkin button in the ucm administration webpage. All it does is checking the input values and setting the IdcService to "CHECKIN_NEW" and then submitting the form. So from my understanding I should also be able to use the CHECKIN_NEW service in my browser url which would make a GET request instead of a POST request.
    So what I did was that I entered the following URL in my browser
    http://<serverName>/<instanceName>/idcplg?IdcService=CHECKIN_NEW&dDocType=Picture&dDocTitle=TestCheckin&dDocAuthor=http_checkin&dSecurityGroup=Secure&primaryFile=C:/Work/Chrysanthemum.jpg&IsJava=1Why is this not working? Is this not working because the input type of the primaryFile is 'file' instead of 'text'?
    Greetings
    Bodhy

    You should see some sort of error on either the page or Server Output or Server logs. That would help narrow this down.
    From the Services Guide:
    If you attempt to set the author (dDocAuthor) to someone other than the currently
    logged in user, you must have Admin permission to the security attributes being
    assigned to the document.
    If the content uses entity security, the user must have at least Write permission
    granted by the entities, unless the user has Admin rights to the security group
    being assigned to the document.
    The most likely error is when the content item was not properly defined.
    This service executes the subservice CHECKIN_NEW_SUB. This subservice
    checks in a new content item revision.
    Additional Required Service Parameters
    dDocName: The Content ID for the content item. If Content ID auto generation is enabled, this parameter is not required. If dDocName is defined, it overrides the auto generated Content ID. The Content ID cannot contain spaces or invalid characters ;/ \?:@&=+"#%<>*~|[ ].
    dDocAuthor: The content item author (contributor).
    dDocTitle: The content item title.
    dDocType: The content item Type.
    dSecurityGroup: The security group such as Public or Secure.
    dDocAccount: The account for the content item. Required only if accounts are
    enabled.
    primaryFile: The absolute path to the location of the file as seen from the server. Use the slash as the file separator. A primary file must be specified unless checking in metadata only. If an alternate
    file is specified with the primary file, the content refinery converts the alternate
    file. Otherwise, the primary file is converted.
    Required custom fields: Custom metadata fields that are required must also be
    specified.
    Example
    IdcService=CHECKIN_NEW
    dDocName=test1111
    dDocTitle=test information
    dDocAuthor=john
    dSecurityGroup=public
    primaryFile=c:/test.txt
    doFileCopy=1
    doFileCopy: 1 (true): The file is not deleted from the hard drive after checkin.

  • In browser- URL of PDF where it imports FDF data

    I want to bring up my browser - put the URL of a PDF on a server that has fillable fields - and have the PDF automatically bring in the contents of an FDF file to populate the fields defined in the FDF file.
    There is ADOBE documentation of doing something like this:
    http://www.mydomain.com/abc.pdf#fdf=datafile.fdf
    That's all I want to do.  Simple.
    In detail - in a PHP program I want to create the FDF file just using fopen and fwrites - no additional packages - then my JavaScript calls an already created PDF file on the web with the PDF when brought up on the server side automatically imports the FDF my program created a few seconds ago.
    I do know about fdf_create in PHP but unfortunately the server I'm on is cpanel based and the hosting company cannot load a library for fdf_create related calls.
    I cannot seem to get this working.  I've called Adobe tech support.  A few months ago I reached someone who actually said "You've reached the right person.  Yes that is doable." and they confirmed what I wanted to do.   But since then the Adobe people I call don't seem to understand what an FDF file is even though that is what Adobe uses to communicate and has it in their documentation as     http://......abc.pdf#fdf=xxx.fdf
    Now I've even eliminated the step/chance that I've not created my FDF file properly.  I've gone into Acrobat Pro and done an extract to an .FDF file.   Then I've tried  http://www.myweb.com/abc.pdf#fdf=theAcrobatExtractedFile.fdf  and it still ignores the contents of the FDF file.
    I've also tried http://www.myweb.com/abc.pdf#fdf=http://www.myweb.com/extractedfile.fdf   fully qualifying the location of the FDF file.
    Help!  This is important.   Thank you.
    Jay

    I appreciate your help.  My Chrome brower was saying that.
    I started this quest of FDF into PDF because I had done it years ago successfully and because the Adobe Tech Support fellow told me that still worked (http://www.myweb.com/abc.PDF#fdf=xyz.FDF ) when I called him last October.  But let me pose the question in a different way  - is there a datafile (any format) that I can use as a parameter to a URL that is of a PDF?  XML, flat file, GIFF format, csv, pipe delimited, etc.   If there is a data file that I can do
    http://www.myweb.com/document.PDF#inputdata=filex   -or- another way to pose the question - if I'm going from PHP to browser PDF is there an example of calling the PDF from PHP where it loads PDF and data values from an outside source.... doing this without involving any other system/package?  Just PDF in a browser.
    The fdftk library for PHP is not accessible in my normally used host and also GoDaddy said they wouldn't load fdftk either.
    Note: If you go to the last page of this Adobe document:
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
    you'll see their example http://example.org/doc.pdf#fdf=http://example.org/doc.fdf
    Thanks!  Help!

Maybe you are looking for

  • Need Help to Prevent DDOS at application layer to protect Web server ?

    Please guide the solutions for DDOS attack. I am facing this attack and after some investigation I  found some details what is up against me Here are some details of the attack which is most similar in my situation. In considering the ramifications o

  • I want to upgrade the 500gb HDD to an SSD on an S230u with windows 8 but want clone the drive

    I want to upgrade the 500gb HDD to an SSD on an Thinkpad Twist S230u with windows 8 but don't want to lose the data and programs installed on the drive and have to start over. I tried to clone it but no software could do it. I tried acronis and EasyT

  • Oc4j 9.0.4/10g R1 and JSF

    Hi, I'm having serious problems with the OC4J container 9.0.4 and JSF. I have tried several sample applications in addition to the one that I have created myself, but none of them will work in the 9.0.4 release of OC4J, even though they all work in R

  • Macbook pro will not restart from sleep

    My MacBook Pro Intel fails to restart from sleep mode. The color beach ball just keeps spinning. The software is up to date and the computer is running Snow Leopard. Please help.

  • Re: (forte-users) Same Environment variables?

    If you will be connecting the environments in the future, then you will need to make sure that the environment names are unique. Both the Name Server Addresses and the Environment Names need to be unique in connected environments. Mark Musgrove Senio