Proxy Administrator doesn�t work...

Hi all
I have just instaled iPlanet Web Proxy 3.6 in a Windows machine and when i try to connnect to the Administrator Web page, it returns an error page. At the error log file, i saw this failure:
"the CGI program C:\Netscape\SuiteSpot\bin\admin\admin\bin\index.exe did not produce a valid header (program terminated without a valid CGI header (check for core dump or other abnormal termination)".
Can anyone help-me? Thanks.

Windows 2003 and XP are not supported platforms. Please see http://docs.sun.com/source/817-6778-10/relnotes36sp5_win.html#wp19243
for the list of supported platforms.
Thx!
Srikanth

Similar Messages

  • Iplanet Proxy Administrator doesn�t work...

    Hi all
    I have just instaled iPlanet Web Proxy 3.6 in a Windows machine and when i try to connnect to the Administrator Web page, it returns an error page. At the error log file, i saw this failure:
    "the CGI program C:\Netscape\SuiteSpot\bin\admin\admin\bin\index.exe did not produce a valid header (program terminated without a valid CGI header (check for core dump or other abnormal termination)".
    Can anyone help-me? Thanks.

    You may want to also post this to Proxy Server forum:
    http://swforum.sun.com/jive/forum.jspa?forumID=112

  • My simple Inbound ABAP Proxy code doesn't work in PI 7.1 EHP1 SP3 ?

    Hi,
    I just installed and configure new PI 7.1 EHP 1 SP3 and i tried some simple abap proxy but seems like doesn't work.
    Please advise what is missing base on my simple abap code below :
    =================================================================================================
    METHOD zpi711ii_si_syn_in_aaeproxy~si_syn_in_aaeproxy.
    **** INSERT IMPLEMENTATION HERE **** ***
    DATA: inputdata TYPE ZPI711MT_REQ_1,
    outputdata TYPE ZPI711MT_RES_1.
    CONCATENATE inputdata-mt_req_1-firstname ' ' inputdata-mt_req_1-lastname INTO outputdata-mt_res_1-fullname.
    ENDMETHOD.
    =================================================================================================
    i have put some break on the CONCATENATE seems like inputdata-mt_req_1-firstname is empty ? why ?
    The sample xml input is :
    =================================================================================================
    <n0:MT_REQ_1 xmlns:n0="http://www.abeam.com/sample/pi" xmlns:prx="urn:sap.com:proxy:ST6:/1SAI/TAS1190827B531A473B357B:700:2008/06/25">
    <FIRSTNAME>This is a string 4</FIRSTNAME>
    <LASTNAME>This is a string 5</LASTNAME>
    </n0:MT_REQ_1>
    =================================================================================================
    Please advise
    Thank You and Best Regards
    Fernand

    Hi Fernand ,
    Few things to check :
    1. hope you are accessing the correct node of proxy structure and the correct message type too.
    2.. If the occurrence of node is 1 to many than it will be a table type in that case your need to use a loop to access row values.
    Make sure that you have used the correct message types for creating variables..
    DATA: inputdata TYPE ZPI711MT_REQ_1,
    outputdata TYPE ZPI711MT_RES_1.
    --->inputdata-mt_req_1-firstname ' ' inputdata-mt_req_1-lastname
    >once you have created the variable of particular messagetype than you have to use in this format inputdata-firstname and inputdata-lastname. seems some thing fishy here...inputdata-mt_req_1-firstname/lastname.
    Regards ,

  • The administrator doesn't work for my computer

    I've never changed any information on my computer, but for whatever reason, my administrator password doesn't work - therefore, I cannot update anything! I've changed the password using the install disc, but it still didn't work. I have no idea what to do, and I want to avoid having to erase my harddrive and start over again. Any suggestions?

    You could enable the root account then create a new administrator account.
    See:
    http://www.spy-hill.com/~myers/help/apple/EnableRoot.html
    http://docs.info.apple.com/article.html?artnum=106290
    Once you have enable the root account. Logoff your account.
    Click on the blue apple icon > log out
    This will bring up the logon screen. Enter root & your root password.
    If you have trouble enabling the root account, you will have to use the sudo method in the first article. You will have to boot in single user mode. Hold down the command-s key when you poweron your machine. Follow the instructions that come up in single user mode to enable write access to the harddrive. Then, follow the instruction for enable root from the command line in the first article ( the third set of instructions ). You may not have to put sudo before the commands.
    I have not tried this. It is what I got from reading the above pages.
    Most people would advise disabling the root account once you are done with it.
    Robert

  • ABAP Proxy outbound doesn't work

    Hi All,
    I want to develop an  ABAP Proxy to SQL server scenario.
    So, I created a  interface in Integration Builder and created a proxy on outbound message interface in SPROXY.
    When i execute sender program in R3 , it works fine, but It doesn´t reach the PI system.
    Outbound message t doesn´t appear in SXMB_MONI in R3 nor Pi system.
    What  is wrong?
    Thanks, in advance
    Carme

    Our basis team has changed the hostname of our  R3 QAs system , but no changes are made in SLD of Pi system.
    I think this could be the cause of this issue.
    ¿can anyone confirm this point?
    If yes, ¿what must i do to recover this functionality?
    Thanks,
    Carme

  • After setting the reverse proxy, SSO doesn't work

    Hi,
    We are facing a problem after setting a reverse proxy. ITS&SSO is working fine for internal users but the problem is with the external users;ITS is working fine for external users but SSO is not working. Does anyone can help us out with this problem ? It is kind of urgent.
    Thanks
    Serkan

    Eric,
    Sorry for misunderstanding,
    The domain for internal/external users are the same https://external.global.rexam.<b>net</b>/irj/portal
            internal.global.rexam.net/irj/portal
    But the ITS goes through:
    bca.rexam.<b>com</b>

  • Proxy authentication doesn't work with JSSE

    Hello,
    Seems like there is no common way to authenticate with proxy for HTTP and HTTPS.
    Connecting to http://... - works fine, but https://... returns error message:
    Unable to tunnel through 111.111.111.111:8080. Proxy returns "HTTP/1.0 407 Proxy Authentication Required"
    (IP address is intentionally changed in the message above)
    I'm using JSSE with VAJ JDK 1.2 and here is a Java code snippet that works well with HTTP connections:
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    System.setProperty("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    System.setProperty("https.proxyHost", proxyHost);
    System.setProperty("https.proxyPort", proxyPort);
    System.setProperty("http.proxyHost", proxyHost);
    System.setProperty("http.proxyPort", proxyPort);
    try {
    URL url = new URL("https://www.sun.com");
    URLConnection connection = url.openConnection();
    String authString = proxyUserID + ":" + proxyPasswd;
    String encodedAuthString =
    "Basic " + new sun.misc.BASE64Encoder().encode(authString.getBytes());
    connection.setUseCaches(false);
    connection.setRequestProperty("Proxy-authorization", encodedAuthString);
    Listening to the network traffic helped me to understand that there is a difference between the way HTTP and HTTPS is handled. For some reason HTTPS ignores all the headers that I specify using setRequestProperty().
    Here is example of request and responses sent by HTTPS handler:
    Request:
    CONNECT 198.175.98.32:443 HTTP/1.0
    User-Agent: JSSE
    Proxy response:
    HTTP/1.0 407 Proxy Authentication Required
    Date: Wed, 07 Nov 2001 22:04:11 GMT
    Content-Length: 233
    Content-Type: text/html
    Server: NetCache (NetApp/5.1R2D4)
    Proxy-Authenticate: basic realm="NETCACHE2"
    Please note that there is no Proxy-authorization header in the request above.
    Compare it with HTTPS request sent by Netscape browser:
    Request to proxy:
    CONNECT www.sun.com:443 HTTP/1.0
    Proxy-authorization: Basic am0vbDphrGxHa22lLg==
    User-Agent: Mozilla/4.76 [en] (Windows NT 5.0; U)
    Response:
    HTTP/1.0 200 Connection established
    Proxy-Agent: NetCache NetApp/5.1R2D4
    So, the question is:
    What is the best way to pass "Proxy-authorization" header to proxy server??
    Thanks in advance for your time.

    Hi Guys,
    Just like, i assume, all of you, i've had my battles with javas' handling of https comms from behind a firewall. I'm actually amazed at how something that is a simple combination of protocol and security should become so messy.
    Luckily , i managed to get all my requirements met, but the sad thing is after all that hard work, i'm not much closer to understanding why the standard java sdk (im using 1.4) forces us to endure such painful tasks.
    Really, Java is quite a mature language now, and one of its touted benefits is its applicability to web and internet technologies... so why the messy proxy code when dealing with ssl?
    Anyway, i didn't really come here to b**tch, but rather to point you all to a handy library from apache - httpClient - http://jakarta.apache.org/commons/httpclient.
    After implementing ssl proxy tunnelling and all the fun that goes with it, i found this tool, and subsequently deleted all that ugly code, and let http client deal with all that for me.
    Its seriously simple, heres a snippet:
    httpClient = new HttpClient();
    httpClient.setTimeout(responseTimeoutMillies);
    Protocol myHttps = new Protocol("https", new SSLContextBasedSocketFactory(sslContext), targetServerPort);
    httpClient.getHostConfiguration().setHost(targetServerHost, targetServerPort, myHttps);
    if (useProxy)
         httpClient.getHostConfiguration().setProxy(proxyHost, proxyPort);
            httpClient.getState().setProxyCredentials("my-proxy-realm", proxyHost, new UsernamePasswordCredentials(proxyUser, proxyPassword));
    }This initialises the client, and after this, making http requests is simple:
    String response = null;
    PostMethod postMethod = new PostMethod("/secure/blah.jsp"); // A HTTP Post
    postMethod.setRequestBody("Hello there"); // this is the data in the http post body
    int responseCode = httpClient.executeMethod(postMethod);
    if(responseCode == 200)
        response = postMethod.getResponseBody();...
    As you can see, its alot less painful. It certainly makes me feel better, knowing i don't have to support/maintain the ugly proxy tunnelling code. Give it a shot on your next project.
    Hope it helps.
    Regards
    Marcus Eaton

  • Proxy authorization doesn't work with JSSE 1.02

    Hello,
    Seems like there is no common way to authenticate with proxy for HTTP and HTTPS.
    Connecting to http://... - works fine, but https://... returns error message:
    Unable to tunnel through 111.111.111.111:8080. Proxy returns "HTTP/1.0 407 Proxy Authentication Required"
    (IP address is intentionally changed in the message above)
    I'm using JSSE with VAJ JDK 1.2 and here is a Java code snippet that works well with HTTP connections:
         Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
         System.setProperty("java.protocol.handler.pkgs",
              "com.sun.net.ssl.internal.www.protocol");
         System.setProperty("https.proxyHost", proxyHost);
         System.setProperty("https.proxyPort", proxyPort);
         System.setProperty("http.proxyHost", proxyHost);
         System.setProperty("http.proxyPort", proxyPort);
         try {
              URL url = new URL("https://www.sun.com");
              URLConnection connection = url.openConnection();
              String authString = proxyUserID + ":" + proxyPasswd;
              String encodedAuthString =
                   "Basic " + new sun.misc.BASE64Encoder().encode(authString.getBytes());
              connection.setUseCaches(false);
              connection.setRequestProperty("Proxy-authorization", encodedAuthString);
    Listening to the network traffic helped me to understand that there is a difference between the way HTTP and HTTPS is handled. For some reason HTTPS ignores all the headers that I specify using setRequestProperty().
    Here is example of request and responses sent by HTTPS handler:
    Request:
    CONNECT 198.175.98.32:443 HTTP/1.0
    User-Agent: JSSE
    Proxy response:
    HTTP/1.0 407 Proxy Authentication Required
    Date: Wed, 07 Nov 2001 22:04:11 GMT
    Content-Length: 233
    Content-Type: text/html
    Server: NetCache (NetApp/5.1R2D4)
    Proxy-Authenticate: basic realm="NETCACHE2"
    Please note that there is no Proxy-authorization header in the request above.
    Compare it with HTTPS request sent by Netscape browser:
    Request to proxy:
    CONNECT www.sun.com:443 HTTP/1.0
    Proxy-authorization: Basic am0vbDphrGxHa22lLg==
    User-Agent: Mozilla/4.76 [en] (Windows NT 5.0; U)
    Response:
    HTTP/1.0 200 Connection established
    Proxy-Agent: NetCache NetApp/5.1R2D4
    So, the question is:
    What is the best way to pass "Proxy-authorization" header to proxy server??
    Thanks in advance for your time.

    Hi, I am also facing same problem
    Software : Weblogic jdk1.3.1
    If anyone know the solution ,Please help me
    Thanks,
    Suneel

  • How do ABAP Proxy and XI adapter work?

    Hi everybody,
    I have a general question about the ABAP proxy and XI adapter.
    In order to use the ABAP proxy and XI adapter, I must configure the HTTP Destination between the R/3 system and the XI server. I must also maintain the SLD.
    After several hours configurations with our administrator, it failed. At least the HTTP Destinations on both servers don't work correctly. We got always HTTP error message. But a scenario with an ABAP Receiver proxy works! It is really strange and laughable. We're very happy about that but don't know why and what happened. Today we tested the ABAP Sender proxy, it doesn't work.
    So we decide to ask the XI experts in this forum to give us a general lessen about the ABAP proxy: how it works, why we should create the HTTP destinations, how do the destinations work and so on.
    Thanks a lot in advance!
    With best regards
    Xiang

    Hi
    Once you create the interface in XI, you generate the proxies on your R3 system.
    Client Proxies -->
    This is done for outbound interfaces. You generate the proxy and then write a report that fills in the proxy class with the data and pushes it to XI.
    Server proxies -->
    Generated for inbound interfaces. Generate the proxy and write the implementation for the exectue method that deals with the data sent from XI to the R3 system
    Abap Proxy
    ABAP Proxies in XI(Client Proxy)
    Smarter Approach for coding ABAP Proxies
    The specified item was not found.
    ABAP Proxy - XML to ABAP Transformation
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/f21a403233dd5fe10000000a155106/frameset.htm
    why we should create the HTTP destinations, how do the destinations work and so on.
    we create http destiantio because in proxies , adapter is not use so who is goin to send the message to integration server ...by creating http destinatio we create integration engine which send messg to IS . then messg is routed .and all
    error in HTTP to file scenario http to file
    hope this help's  you
    Regard's,
    Chetan Ahuja

  • Automatic Proxy Configuration URL doesn't work on some computers, but Manual proxy can work

    It seems that the Automatic Proxy Configuration URL doesn't work, I use the command netstat -a, can't see the connection to proxy server, but manual proxy is ok, and I tested on some others computers, most of these computers can work normally with Automatic Proxy Configuration URL.
    For the computer can't work normally with Automatic Proxy Configuration URL, I did below actions
    1.Clear the cache
    2.update the version of firefox
    3.reinstall the firefox
    4.use the safemode to run firefox
    but unfortunately, still doesn't work.
    Can some dear friends give me a big favor for this? Thanks a million in advance!

    I have the same problem, just showed up recently - very fricking annoying!!

  • Simple Inbound ABAP Proxy doesn't work in my new PI 7.1 EHP 1 SP3 ?

    Hi,
    I just installed and configure new PI 7.1 EHP 1 SP3 and i tried some simple abap proxy but seems like doesn't work.
    Please advise what is missing base on my simple abap code below :
    METHOD zpi711ii_si_syn_in_aaeproxy~si_syn_in_aaeproxy.
    **** INSERT IMPLEMENTATION HERE **** ***
    DATA: inputdata TYPE ZPI711MT_REQ_1,
                outputdata TYPE ZPI711MT_RES_1.
      CONCATENATE inputdata-mt_req_1-firstname ' ' inputdata-mt_req_1-lastname INTO outputdata-mt_res_1-fullname.
    ENDMETHOD.
    i have put some break on the CONCATENATE seems like inputdata-mt_req_1-firstname is empty ? why ?
    The sample xml input is :
    <n0:MT_REQ_1 xmlns:n0="http://www.abeam.com/sample/pi" xmlns:prx="urn:sap.com:proxy:ST6:/1SAI/TAS1190827B531A473B357B:700:2008/06/25">
    <FIRSTNAME>This is a string 4</FIRSTNAME>
    <LASTNAME>This is a string 5</LASTNAME>
    </n0:MT_REQ_1>
    Please advise
    Thank You and Best Regards
    Fernand

    Hi,
    it's empty because you just declared the inputdata structure locally in the method.
    I think you shoud refer to the methods's interface.
    T.

  • IPlanet Web Proxy Server 3.6 SP 5 Persistent Connection doesn't work

    I use iPlanet-Web-Proxy-Server/3.6-SP5 on Soloaris. and trying to use persistenet connection functions in forward proxy through setting keep alive to "ON". But I found this functions doesn't work at all. The following trace is the HTTP Header info i got from receiver.
    1. The HTTP Header info without using Proxy Server
    Request headers :
    proxy-authorization: Basic YXBwLWVtcXVzZXI6MTIzNDU2Nzg=
    connection: Keep-Alive
    proxy-connection: Keep-Alive
    server: IBM WebSphere MQ internet pass-thru V1.3.2
    accept: application/octet-stream
    host: 10.1.13.43:1414
    user-agent: 10.1.72.254:1414
    content-type: application/octet-stream
    content-length: 132
    accept-encoding: identity
    2. The HTTP Header info using Proxy Server
    Request headers :
    server: IBM WebSphere MQ internet pass-thru V1.3.2
    accept: application/octet-stream
    host: 10.1.72.254:1414
    user-agent: 10.1.72.254:1414
    content-type: application/octet-stream
    content-length: 132
    accept-encoding: identity
    date: Mon, 06 Sep 2004 18:04:12 GMT
    forwarded: by http://iaccess.mor.cr:8085 (iPlanet-Web-Proxy-Server/3.6-SP5)
    via: 1.1 S1PS,1.1 S1PS
    I found Kepp-Alive information ( "connection: Keep-Alive" and " proxy-connection: Keep-Alive")
    was taken out by proxy server.
    Is a proxy server bug? Can I do something to make it work?
    Regards,
    songtao

    Hi
    This as per the HTTP/1.1 RFC (RFC2616)
    The Connection general-header field allows the sender to specify options that are desired for that particular connection and MUST NOT be communicated by proxies over further connections.
    The Connection header has the following grammar:
    Connection = "Connection" ":" 1#(connection-token)
    connection-token = token
    HTTP/1.1 proxies MUST parse the Connection header field before a message is forwarded and, for each connection-token in this field, remove any header field(s) from the message with the same name as the connection-token. Connection options are signaled by the presence of a connection-token in the Connection header field, not by any corresponding additional header field(s), since the additional header field may not be sent if there are no parameters associated with that connection option.
    Read the following at
    http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.1.3
    and
    http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.10
    Regards
    Nagendra HK

  • GNOME Proxy Doesn't Work ?

    Hey There,
    Because of my work, I sometimes have to join some networks that I have to use some proxies to connect to the internet.. Because of this, I generally have to set all programs' settings seperately and then back when I'm home let's say... Instead I really would like to use GNOME Proxy settings so that each program that I use would use those settings.. Is this possible ?
    Even Pidgin, Firefox etc.. doesn't work with it..

    Make sure you have FAM enabled in your /etc/rc.conf.  Look for this line in your rc.conf
    DAEMONS=(syslog-ng network crond hal fam)
    and just make sure FAM is included in that line. Fam is needed by gnome.

  • I'm using firefox version 4 in my network and i want the clients can't change my network proxy that we are using i did it in previous version but it doesn't work in version 4, so how can i do it?

    I've network in my company and installing internal web proxy that allow clients to connect to the internet (ISA 2004). i'm using the Firefox as default browser in my network. so what i need that no one in my network clients can't change the proxy settings or it just be dimmed. i did it in the previous version but when i try the steps in version 4 it doesn't work so I'm asking for solution for that.
    many thanks for help,
    Ahmed Khairy

    Leliforever, cheek you list of installed add-ons, the Ask toolbar can be installed without the users knowledge.
    For checking other extensions that may cause this, follow the procedure in this link - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Adobe premiere element 12 doesn't work without administrator right

    adobe premiere element 12 doesn't work without administrator right.
    I have these 2 messages after i had selected a New project:
    Premiere elements debug event
    premiere elements has encountered an error
    [..\Src\Core\Preferences.cpp-347]
    Microsoft visual C++ Runtime library
    Runtime Error
    Programm:C:\Program Files\A..
    This application has requested the Runtime to terminate it in an unusual way

    then start as administrator.
    if you want to automate that: http://technet.microsoft.com/en-us/magazine/ff431742.aspx

Maybe you are looking for

  • Can't back up iPhone 5 to iTunes

    Thanks for reply , I have checked other way , re-install the iTunes , checked the folder , search the other way from Google also can't . My laptop is windows 8 , and only my iPhone 5 can't back up to my laptop , other device like my iPhone 4S , iPad

  • CA / NDES Virtual Directory Structure Missing in IIS 7 unable to implement SSL for ADMIN sites

    We've recently finiallized both an Enterprice 2008 R2 CA and NDES service installtion configuration.  All services are running, to include web enrollment for both.  CA sits on a DC, as required, and the NDES roll sits on a standalone machine.  All se

  • How do I find out easily what our group policy settings are?

    To cut a long story short we had a third party implement ZCM and GPs. We have too many and need to amalgamate them, but there is no documentation about what the settings are. I know there are various tools for AD that will give you a summary of appli

  • Can't access my wish list

    I receive an "unkown error occurred (-1202)" message.  Don't know how to resolve the matter. Need help.

  • Match not sharing all albums

    I set up Match last night at home (with iTunes 11 on Lion). This morning I came into work and my copy of iTunes 11  on Snow Leopard is only displaying about 2000 of my 20K+ songs. My iPhone 5 is seeing all the shared songs. Also on my work Mac, iTune