AMF work in Localhost, but not work in Remote server

I am using zend's amf to connect the flex with backend.
I have this service-config:
<?xml version="1.0" encoding="UTF-8"?>
<services-config>
    <services>
        <service id="zend-service"
            class="flex.messaging.services.RemotingService"
            messageTypes="flex.messaging.messages.RemotingMessage">
            <destination id="zend">
                <channels>
                    <channel ref="zend-endpoint"/>
                </channels>
                <properties>
                    <source>*</source>
                </properties>
            </destination>
        </service>
    </services>
    <channels>
    <channel-definition id="zend-endpoint" class="mx.messaging.channels.AMFChannel">
        <endpoint uri="http://www.domain.com.br/flex" class="flex.messaging.endpoints.AMFEndpoint"/>
    </channel-definition>
    </channels>
</services-config>
When I run my app in localweb this work nice, but when I upload my app to the host, this erro show:
[RPC Fault faultString="Send failed" faultCode="Client.Error.MessageSend" faultDetail="Channel.Connect.Failed error NetConnection.Call.Failed: HTTP: Failed: url: 'http://www.domain.com.br/flex'"]
    at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::faultHandler()[C:\autobuild\3.x\frameworks\pro jects\rpc\src\mx\rpc\AbstractInvoker.as:290]
    at mx.rpc::Responder/fault()[C:\autobuild\3.x\frameworks\projects\rpc\src\mx\rpc\Responder.a s:58]
    at mx.rpc::AsyncRequest/fault()[C:\autobuild\3.x\frameworks\projects\rpc\src\mx\rpc\AsyncReq uest.as:103]
    at mx.messaging::ChannelSet/faultPendingSends()[C:\autobuild\3.x\frameworks\projects\rpc\src \mx\messaging\ChannelSet.as:1446]
    at mx.messaging::ChannelSet/channelFaultHandler()[C:\autobuild\3.x\frameworks\projects\rpc\s rc\mx\messaging\ChannelSet.as:1056]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.messaging::Channel/connectFailed()[C:\autobuild\3.x\frameworks\projects\rpc\src\mx\mes saging\Channel.as:1069]
    at mx.messaging.channels::PollingChannel/connectFailed()[C:\autobuild\3.x\frameworks\project s\rpc\src\mx\messaging\channels\PollingChannel.as:388]
    at mx.messaging.channels::AMFChannel/statusHandler()[C:\autobuild\3.x\frameworks\projects\rp c\src\mx\messaging\channels\AMFChannel.as:411]
Please, somebody can help-me, please?

RESOLVED!
The problem was on the server: http resquest return 301... I turn off the "mod_security" on the server and all works perfect now!

Similar Messages

  • Tomcat 5.5, struts, AJAX - Works on localhost but not on online web-server

    Hello,
    I'm trying to add some functionality from Ajax to my client's web application. And I'm stuck on this problem for the past 4 days now.
    To make a long story short, the application works perfectly on my localhost, but once I deploy it to the online server it pops a Page Not Found message (written in the JavaScript of Ajax engine). Though I have worked with servlets and struts a bit, I still consider myself very new.
    Here are some specifications:
    - The jar files are in tomcat-5.5/common/lib
    - The servlets (compiled correctly) are in webapps/ROOT/WEB-INF/classes/javaClasses
    - My web.xml and struts-config.xml are in WEB-INF, both of which I believe are configured correctly:
    web.xml
    =======
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    <web-app>
         <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              <init-param>
              <param-name>config</param-name>
              <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
         </servlet>
         <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>/index.jsp</welcome-file>
         </welcome-file-list>
    </web-app>
    struts-config.xml
    ==============
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">
    <struts-config>
    <action-mappings>
    <action path="/signup" type="org.apache.struts.actions.ForwardAction" parameter="/signup.jsp" />
    <action path="/countries" type="javaClasses.GetCountries" />
    </action-mappings>
    </struts-config>
    I noticed when I type "countries.do" on my localhost, the action is processed perfectly, however on the online server, it displays me the 404 error page.
    I thought it wasn't seeing the struts-config.xml so I played around with the directory path struts-config.xml and replaced it with:
    <param-value>/home/shaghig/webapps/ROOT/WEB-INF/struts-config.xml</param-value>
    but still no luck.
    What is it that I am not doing right? Any input or guidance would be very much appreciated.

    Have you resolved your problem? I am running into the SAME EXACT issues with my application. The only difference is I'm not deploying to webapps/ROOT/; I'm deploying to my own directory based on my WAR file name (webapps/<web_application_name>/WEB-INF....blah blah). If you figured out your problem (believe me, I wish I could be of some help) I would LOVE to hear what you did/figured out.
    -C

  • MySQL error on localhost, but not remote!!

    I am getting an error of:
    Warning: mysql_free_result() expects parameter 1 to be resource, null given in /Users.... line 848
    But I am only getting this on my dev machine. It doesn't show on the remote site. I have taken the remote DB and put it inplace of my local one just in case I had inadvertantly deleted something, but still no joy.
    I have closed the recordset using:
    mysql_free_result($rs_reg_domain);
    But have had to use the following to hide the error:
    //if (is_resource($rs_reg_domain)) mysql_free_result($rs_reg_domain);
    and finally this is the recordset:
    mysql_select_db($database_conn_mrs, $conn_mrs);
    $query_rs_domain = "SELECT * FROM tbl_settings WHERE fld_settingsNAME = 'domain'";
    $rs_domain = mysql_query($query_rs_domain, $conn_mrs) or die(mysql_error());
    $row_rs_domain = mysql_fetch_assoc($rs_domain);
    $totalRows_rs_domain = mysql_num_rows($rs_domain);
    'domain' has a value.
    What's wrong?
    Thanks

    The reason you get an error locally, but not on the remote server is almost certainly because the remote server has the PHP display_errors configuration setting turned off. The error still occurs, but it's not displayed. Most hosting companies turn off the display of errors for security reasons.
    Looking at the code you have given here, it looks as though the error is caused by using the wrong variable name for the recordset. The recordset is $rs_domain, but you're passing $rs_reg_domain to mysql_free_result().

  • Sockets work on localhost but not remotely?

    hi there,
    I have created a simple multithreaded client / server program.
    The Server listens on port 2222 for clients. When a client connects - the client sends its ip address to the server and then disconects. More than 1 client can connect at the same time to the server and the server also listens continuasly. I have 2 problems with the program...
    a) the programs work on localhost but not on remote machines? (Well not over my LAN anyway).
    b) I am getting 2 lots of 'datain' when the server recieves an ip address from the client when the client should only send it once.
    The code is below - any help would be greatly appreciated.
    //TCPServer.java
    import java.io.*;
    import java.net.*;
    class TCPServer {
         public static void main (String args[]) throws IOException {
              ServerSocket serverSocket = null;
              boolean listening = true;
              try {
                   serverSocket = new ServerSocket(2222);
              } catch (IOException e) {
                   System.err.println("Could not listen on port: 2222");
                   System.exit(-1);
              System.out.println("Server Started...\n");
              while (listening)
              new TCPServerThread(serverSocket.accept()).start();
              serverSocket.close();
    //TCPServerThread.java
    import java.net.*;
    import java.io.*;
    public class TCPServerThread extends Thread {
        public Socket socket;
        public TCPServerThread(Socket socket) {
         super("TCPServerThread");
         this.socket = socket;
        public void run() {
                   try {
                   BufferedReader datain = new BufferedReader (new InputStreamReader
                        (socket.getInputStream()));
                        System.out.println("ip address recieved");
                        System.out.println (datain.readLine () + "\n");
                   } catch (IOException e) {
                        System.err.println("Cannot read in ip address\n");
                        e.printStackTrace(); // show the error
                        System.exit(-1);
         } //TCPClient.java
    import java.io.*;
    import java.net.*;
    class TCPClient {
         public static void main (String args[]) throws Exception
              String hostname;
              int portNumber;
              String portString;
              BufferedReader inFromUser =
                   new BufferedReader (new InputStreamReader(System.in));
                   System.out.println("What host would you like to connect to?");
                   hostname = inFromUser.readLine();
                   System.out.println("What port would you like to connect to?");
                   portString = inFromUser.readLine();
                   portNumber = Integer.parseInt(portString);
                   System.out.println("Connecting to port " + portNumber + " of " + hostname + "....\n");
                        Socket clientSocket = new Socket(hostname, portNumber);
                        Socket sock = new Socket (InetAddress.getLocalHost(), portNumber);
                        BufferedWriter dataout;
                        java.net.InetAddress i = java.net.InetAddress.getLocalHost();
                        System.out.println("Sending ip address...\n" + i.getHostAddress());
                             dataout = new BufferedWriter (new OutputStreamWriter (sock.getOutputStream()));
                                  dataout.write (i.getHostAddress());
                                  dataout.flush();
                                  sock.close();
                                       clientSocket.close();
                             }Oh, yeah - check out my site below, I am trying to write an audio streaming client / server in Java if anyone is interested in getting involved or just being nosey....
    http://www.projectg.dsl.pipex.com

    In your client you are creating two sockets (why?). One connected to localhost, the other connected to the host specified using readLine.
    If your client runs on the same machine you have started your server, you have two connects to your server instead of one.
    The ip adresse is sent using the socket connected to localhost. That is why it does not work on remote machines.
    Hope this helps.
    J&ouml;rg

  • Disp+work.exe is running but not conneceted to message server

    Hi All
    disp+work.exe is running but not conneceted to message server
    Regards
    Blue

    Hi,
    Did you tried restarting the server ?
    is there any error related to the shared memory ?
    I suggest you to  restart and check ..if still no luck..
    better post the query in SAP Basis Forum with all the dump you are getting ..you willget quicker responses..
    HTH
    Rajesh

  • Dispatcher running but not connecd to message server

    hi..
    iam trying to start my server, in process list iam getting dispatcher  is not getting start.first iam getting 'DISPATCHER IS RUNNING BUT NOT CONNETED TO MESSAGE SERVER' it is in yellow color, after some time , it is changing to green color but the message is ' MESSAGE SERVER IS OK BUT DIALOG QUEUE IS STAND STILL' afere some time its getting stop.
    can any one help me pls what is the problem?

    thanku for your advise..
    ok.. the following the are developer traces for 0,1,2.
    0.
    trc file: "dev_w0", trc level: 1, release: "620"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Wed Jul 11 16:54:32 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll) Error 126 [dlnt.c       226]
    M          Error 126 = "The specified module could not be found."
    B  *** ERROR => Couldn't load library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll'
    [dbcon.c      3789]
    M  systemid   560 (PC with Windows NT)
    M  relno      6200
    M  patchlevel 0
    M  patchno    251
    M  intno      20020600
    M  pid        4872

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4872) [dpxxdisp.c   1016]
    I  MtxInit: -2 0 0

    X Wed Jul 11 16:54:33 2007
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation std
    M  <EsNT> Memory Reset enabled as NT default
    X  ES initialized.

    M Wed Jul 11 16:54:39 2007
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll) Error 126 [dlnt.c       226]
    M          Error 126 = "The specified module could not be found."
    B  *** ERROR => Couldn't load library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll'
    [dbcon.c      3789]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 008192) [thxxhead.c   1098]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   8277]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server pandu_DEV_00 on host pandu (wp 0)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Wed Jul 11 16:54:39 2007
    M  *  RELEASE     620
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        8408
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   672]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  235]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 4872) [dpnttool.c   345]
    1.
    trc file: "dev_w1", trc level: 1, release: "620"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Wed Jul 11 16:54:35 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' ...

    M Wed Jul 11 16:54:36 2007
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll) Error 126 [dlnt.c       226]
    M          Error 126 = "The specified module could not be found."
    B  *** ERROR => Couldn't load library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll'
    [dbcon.c      3789]
    M  systemid   560 (PC with Windows NT)
    M  relno      6200
    M  patchlevel 0
    M  patchno    251
    M  intno      20020600
    M  pid        4244

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 1 4244) [dpxxdisp.c   1016]
    I  MtxInit: -2 0 0

    X Wed Jul 11 16:54:37 2007
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 1 initializing ....
    X  Using implementation std
    M  <EsNT> Memory Reset enabled as NT default
    X  ES initialized.

    M Wed Jul 11 16:54:39 2007
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll) Error 126 [dlnt.c       226]
    M          Error 126 = "The specified module could not be found."
    B  *** ERROR => Couldn't load library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll'
    [dbcon.c      3789]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 008192) [thxxhead.c   1098]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   8277]

    M  Info for wp 1

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server pandu_DEV_00 on host pandu (wp 1)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Wed Jul 11 16:54:39 2007
    M  *  RELEASE     620
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        8408
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   672]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  235]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    B  dbtbxbuf: Buffer TBX_SINGLE not available
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 1 4244) [dpnttool.c   345]
    2.
    trc file: "dev_w2", trc level: 1, release: "620"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Wed Jul 11 16:54:37 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll) Error 126 [dlnt.c       226]
    M          Error 126 = "The specified module could not be found."
    B  *** ERROR => Couldn't load library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll'
    [dbcon.c      3789]
    M  systemid   560 (PC with Windows NT)
    M  relno      6200
    M  patchlevel 0
    M  patchno    251
    M  intno      20020600
    M  pid        5888

    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 2 5888) [dpxxdisp.c   1016]

    I Wed Jul 11 16:54:39 2007
    I  MtxInit: -2 0 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 2 initializing ....
    X  Using implementation std
    M  <EsNT> Memory Reset enabled as NT default
    X  ES initialized.

    M Wed Jul 11 16:54:40 2007
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    B  Loading DB library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll' ...
    M  *** ERROR => DlLoadLib: LoadLibrary(C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll) Error 126 [dlnt.c       226]
    M          Error 126 = "The specified module could not be found."
    B  *** ERROR => Couldn't load library 'C:\usr\sap\DEV\SYS\exe\run\dboraslib.dll'
    [dbcon.c      3789]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 008192) [thxxhead.c   1098]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   8277]

    M  Info for wp 2

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    rfc_req = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server pandu_DEV_00 on host pandu (wp 2)
    M  *  ERROR       tskh_init: db_connect
    M  *
    M  *  TIME        Wed Jul 11 16:54:40 2007
    M  *  RELEASE     620
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          13
    M  *  MODULE      thxxhead.c
    M  *  LINE        8408
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   672]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  235]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 2 5888) [dpnttool.c   345]

  • 'DISPATCHER IS RUNNING BUT NOT CONNETED TO MESSAGE SERVER'

    hi..
    iam trying to start my server, in process list iam getting dispatcher  is not getting start.first iam getting 'DISPATCHER IS RUNNING BUT NOT CONNETED TO MESSAGE SERVER' it is in yellow color, after some time , it is changing to green color but the message is ' MESSAGE SERVER IS OK BUT DIALOG QUEUE IS STAND STILL' afere some time its getting stop.
    can any one help me pls what is the problem?

    Dear friend
    Your database is notworking
    shailesh Tiwari

  • Edge Animation not woking on remote server?

    Hi I'm new to Edge, and am having problems getting my animated file to work on a remote server its a simle animation (moving background image).
    It works ok on my local computer in Dreamweaver and Preview in Browser(s) ok? I thought it may be something to do with the .js files linking from the html file? but ime not clever enough to work that out??
    Any help / pointers would be much appreciated..
    Lee.
    This is where the files are located..
    http://bondagetips.co.uk/stew/

    Thanks for your response - much appreciated. I've done that and it's done something! although its still not finding the 3 images?
    Lee.
    Re: Edge Animation not woking on remote server?
    created by heathrowe in Edge Animate CC - View the full discussion
    You did not upload the sub folder(s).
    There should be a required subfolder called /edge_includes with a few files in it.
    If your project uses images then there should also be another sub folder called /images.
    As it stands now, it loos like you copied the images and the edge.1.5.0.min.js files out of their respective folders and placed them into the root.
    Darrell
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5709041#5709041
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5709041#5709041
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5709041#5709041. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Edge Animate CC by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • "file does not exist on remote server" when uploading image

    As the title says, when uploading an image im getting the
    message "file does not exist on remote server"......yet dreamwever
    has uploaded the file, its there. All other pages on my website
    work fine when uploading images. Any ideas?

    What image type is it? Is it in an images folder or the root
    directory? It would be helpful to post a link.

  • Premiere Elements 8 "Could not connect to remote server" when sharing to YouTube

    I'm trying to share my Adobe Premiere Elements 8 video to YouTube through the task panel, but I get a "Could not connect to remote server" message. My computer is connected to the Internet. I notice at the bottom of the message there is "Open the Opera Help" and "Go to Opera's on-line support desk." I don't have Opera on this computer, so maybe that's it?

    No. You don't need Opera.
    Have you gone to Edit/Preferences and ensured that your Web Services are up to date?
    Otherwise, it could be that YouTube changed settings on us again. If that's the case, you'll need to post to it manually, per the FAQs to the right of this forum.
    http://forums.adobe.com/thread/390608?tstart=30

  • Flash site works locally but not online (uploaded to server)

    We have bought a flash portfolio template and have customized it with our pictures, video, etc.
    When we test it locally on our computer (using different web browsers) it all works perfectly well. We have uploaded the finished website to our server and when you go to the address online, it doesn't work (a loader progress shows but it is stopped and nothing happens).
    We have however uploaded the original template we bought and it works perfectly online.
    The template consists of and index.html, various .swf, and various .xml that we have modified according to the template instructions (it also contains a java script folder we haven't touched).
    What is it wrong with our modified template - it works locally without problem…!
    Thanks for your help

    When a Flash file works locally but not on-line, it's almost always a pathing issue (provided you did upload ALL files and do not have something missing... as suggested by Ned).
    A "pathing issue" results when the main .swf cannot find one or more of the associated Flash files...like an xml file or images.
    It can be something as simple as using switching file names to all lower case. Local machine is not case sensative... most servers are. So "My Photo.JPG" is not the same as "my_photo.jpg". When naming files, best to use all lower case, no spaces in any file or folder names... use_underscore_instead.
    But the most common cause is that those associated files (xml, images, etc.) are not pathed relative to the Web page where the main .swf is embedded. Pathing to the .xml and image files should be as though the .swf was located in the same folder as the Web page... NOT the actual location of the .swf file.
    And that includes paths to the xml file and paths to image files coded into those xml files. Everything need to be coded relative to the Web page.
    This topic has been covered a number of times here:
    http://forums.adobe.com/message/4368273#4368273
    http://forums.adobe.com/message/4294529#4294529
    http://forums.adobe.com/message/4280086#4280086
    http://forums.adobe.com/message/4267408#4267408
    Best wishes,
    Adninjastrator

  • Time Capsule-  does it or NOT work as remote server?  Not seeing benefits I was sold by the salesperson.

    Hi!  I'm hoping you can help eliminate my frustrations....
    I purchased a macbook pro 13 inch because my other macbook 2009 was already low on memory and I thought it best to upgrade.  I needed more space but wanted also the ability to access remotely and not worry about computer being stolen with all the information on it because I travel A LOT.
    I asked the salesperson if I purchased the 128g MBP and the time capsule would i be able to access all my information remotely?  The thought process was:
    1. With over 500GB already in my previous MB i would transfer all that information from the old MBP to the time capsule where it would be at home safe
    2. set up the time capsule to access all files remotely (including iphoto, itunes, videos, etc)
    Because my information already was over 500Gb, buying the 2TB was going to be plenty of space.  So I went with purchasing the MBP with lower space (128G) + the 2TB Time Capsule.
    Now I'm trying to set everything up, was on the phone for 2.5 hours, spoke to 5 reps and finally received an answer: CAN'T DO IT.  DOESN'T WORK THAT WAY.
    I kept searching online and see that
    1. the Time Capsule can only be used as a time machine for backups.  Can't use as a remote server but others say you set up a server file and works.
    2. I can't place the iphoto library or itunes library there to access remotely because I risk it being corrupted (sales person said it would run slow but worked well)
    SO, the big question...can SOMEONE please help me determine if this was worth the $350 purchase because right now it feels like i'm better off sticking with my external drive from WD that i have been working with.  I'm seeing ZERO value add for this device....
    PLEASE...if someone knows if i can really get it to work for what I need, I would truly appreciate your advice because right now FRUSTRATION is at it's max...especially after 2.5 hours on the phone with little to no solutions.

    Some of this depends on your home internet speed.. do you have a fancy 1Gbit link.. with 100Mbps uplink.. well that is faster than rest of the internet.. so you can well support some sort of home cloud device.
    I would also strongly recommend business level internet accounts with static Public IP address.. not dynamic.
    For most people with limited upload speed.. 1mbit is standard where I live.. and real throughput is 800Kbps. Forget it.
    I would never advise anyone to depend on remote access.. for anything with 1Mbps upload.. and even 5Mbps is going to be a struggle.. Maybe 10 or 25Mbps you can function.
    It is simply not the right way to do things. You are far better off carrying around a 500GB thunderbolt drive.. which weighs next to nothing and is as fast as the internal drive.. or use a standard cheap 2.5" USB hard disk which you can get up to 2TB now.
    Backup to TC but not by Time Machine.. or backup to the cloud.. for sure..
    You can also access some files in the cloud. That is much better than using a TC at home.. where you then have a domestic quality link to the internet.
    Apple specifically say not to use iphoto on network drives.. that means any network setup.
    iTunes you can use from a network drive.. but if you have a massive library and slow upload speed it will never finish loading.
    The internet for the most part is just not there yet.. maybe another 20years. In Australia that will be 100years with the current bunch of Philistines running the place. And if you do international travel and depend on networks in hotels or cafes.. well forget it.. they are going to give you enough bandwidth to load your email as long as it is pure text.
    Apple have a 2week return period.. just take it back if you are unhappy with it.

  • Already logged in message but not showing up in Server Admin

    Running server software 10.3. Most clients are 10.4.
    I have several students that can't log in because it says they are already logged in elsewhere. Normally I go to Server Admin and disconnect them and they can then log in. But I've got about 4 students right now that are NOT showing up in Server Admin, so I can't disconnect them. Any ideas of what might cause this, and more importantly, how to fix it?

    I have this issue as well. Rebooting the router and server? I'm glad that works but that should not be necessary. Neither should checking allow simultaneous login on multiple computers in WGM.
    I will continue to look for an answer. thanks for the tip.

  • Dispatcher running but not connected to message server :(  please help .

    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      00
    sid        DEV
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    144
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        3744
    Mon Oct 26 12:37:38 2009
    kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 3744) [dpxxdisp.c   1243]
         shared lib "dw_xml.dll" version 144 successfully loaded
         shared lib "dw_xtc.dll" version 144 successfully loaded
         shared lib "dw_stl.dll" version 144 successfully loaded
         shared lib "dw_gui.dll" version 144 successfully loaded
         shared lib "dw_mdm.dll" version 144 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Mon Oct 26 12:37:50 2009
    WARNING => DpNetCheck: NiHostToAddr(www.doesnotexist0211.qqq.nxst) took 12 seconds
    Mon Oct 26 12:38:06 2009
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 16 seconds
    ***LOG GZZ=> 2 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5371]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >noptqas_DEV_00                          <
    DpShMCreate: sizeof(wp_adm)          25168     (1480)
    DpShMCreate: sizeof(tm_adm)          5652128     (28120)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    DpShMCreate: sizeof(comm_adm)          552080     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1864)
    DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000EE70050, size: 6348592)
    DpShMCreate: allocated sys_adm at 000000000EE70050
    DpShMCreate: allocated wp_adm at 000000000EE72150
    DpShMCreate: allocated tm_adm_list at 000000000EE783A0
    DpShMCreate: allocated tm_adm at 000000000EE78400
    DpShMCreate: allocated wp_ca_adm at 000000000F3DC2A0
    DpShMCreate: allocated appc_ca_adm at 000000000F3E2060
    DpShMCreate: allocated comm_adm at 000000000F3E3FA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000F46AC30
    DpShMCreate: allocated gw_adm at 000000000F46ACB0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000F46ACE0
    DpShMCreate: allocated wall_adm at 000000000F46ACF0
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    ThTaskStatus: rdisp/reset_online_during_debug 0
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 16383MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 16384MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 4095 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1633]
    Mon Oct 26 12:38:07 2009
    ***LOG Q0K=> DpMsAttach, mscon ( noptqas) [dpxxdisp.c   11822]
    DpStartStopMsg: send start message (myname is >noptqas_DEV_00                          <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 144
    Release check o.K.
    Mon Oct 26 12:38:47 2009
    ERROR => DpHdlDeadWp: W0 (pid 276) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W1 (pid 5532) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W2 (pid 3696) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W3 (pid 4928) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W4 (pid 6040) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W5 (pid 3892) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W6 (pid 3860) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W7 (pid 4564) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W8 (pid 3940) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W9 (pid 3288) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => DpHdlDeadWp: W10 (pid 5136) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => DpHdlDeadWp: W11 (pid 5128) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => DpHdlDeadWp: W12 (pid 4452) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W13 (pid 4680) died [dpxxdisp.c   14532]
    ERROR => DpHdlDeadWp: W14 (pid 5664) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => DpHdlDeadWp: W15 (pid 5540) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => DpHdlDeadWp: W16 (pid 4312) died [dpxxdisp.c   14532]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=309
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Oct 26 12:38:57 2009
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Mon Oct 26 07:08:57 2009
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA      276 Ended         no      1   0        0                                                                         
    1 DIA     5532 Ended         no      1   0        0                                                                         
    2 DIA     3696 Ended         no      1   0        0                                                                         
    3 DIA     4928 Ended         no      1   0        0                                                                         
    4 DIA     6040 Ended         no      1   0        0                                                                         
    5 DIA     3892 Ended         no      1   0        0                                                                         
    6 DIA     3860 Ended         no      1   0        0                                                                         
    7 DIA     4564 Ended         no      1   0        0                                                                         
    8 DIA     3940 Ended         no      1   0        0                                                                         
    9 DIA     3288 Ended         no      1   0        0                                                                         
    10 UPD     5136 Ended         no      1   0        0                                                                         
    11 ENQ     5128 Ended         no      1   0        0                                                                         
    12 BTC     4452 Ended         no      1   0        0                                                                         
    13 BTC     4680 Ended         no      1   0        0                                                                         
    14 BTC     5664 Ended         no      1   0        0                                                                         
    15 SPO     5540 Ended         no      1   0        0                                                                         
    16 UP2     4312 Ended         no      1   0        0                                                                         
    Dispatcher Queue Statistics               Mon Oct 26 07:08:57 2009
    ===========================
    SiSelNRemove: removed sock 196 (pos=2)
    SiSelNRemove: removed sock 196
    NiSelIRemove: removed hdl 2
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/17
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 2 / sock 196
    NiBufIClose: clear extension for hdl 2
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 3744) [dpxxdisp.c   10421]
    Good Bye .....
    Thanks in advance
    Shakeel.

    Please check this forums subject.  It is SAP Business One System Administration - dedicate to SAP Business One System only.
    Close your thread and post to a proper forum.  To make other members read your message easily, at least some line breaks are needed in your message.
    Thanks,
    Gordon

  • Workflow Start "Failed But Not Blocking Correlation" - Project Server workflow for Demand Management

    Hi,
    I'm trying to "Create a Project Server workflow for Demand Management" with project server 2013 just like is explained
    here.
    But when I try to create a new project the implemented workflow failed to start with the follow state message in the job queue: Failed But Not Blocking Correlation.
    The detailed error display the follow message:
    Exception Starting Workflow: The scope _/SharePoint/default/139e833f-7a85-4ccf-b7a2-b3fea9ce50b9/6799b7e5-e519-40f4-9371-0b3bc3d5c208_ has no workflows under it. HTTP headers received from the server - ActivityId: 52fef415-409b-4545-a9f6-ed75519b425c.
    NodeId: My-Computer-Name. Scope: /SharePoint/default/139e833f-7a85-4ccf-b7a2-b3fea9ce50b9/6799b7e5-e519-40f4-9371-0b3bc3d5c208. Client ActivityId : 9ded4d9c-7733-7004-2661-c8977270af98.. Trace:    at Microsoft.Workflow.Client.ClientHelpers.SendRequest[T](HttpWebRequest
    request, T content)   at Microsoft.Workflow.Client.WorkflowManager.StartInternal(String workflowName, WorkflowStartParameters startParameters)   at Microsoft.SharePoint.WorkflowServices.FabricWorkflowManagementClient.StartInstance(String
    serviceGroupName, String workflowName, String monitoringParam, String activationKey, IDictionary`2 payload)   at Microsoft.SharePoint.WorkflowServices.FabricWorkflowInstanceProvider.StartWorkflow(WorkflowSubscription subscription, IDictionary`2 payload)  
    at Microsoft.Office.Project.Server.BusinessLayer.Workflow.StartWorkflow(Guid projectGuid, Guid enterpriseProjectTypeUid, Boolean isNewProject, Guid previousEntepriseProjectTypeUid, Boolean skipStage, Guid stageToSkipTo):
    WorkflowExceptionStartingWorkflow (35115). Details: id='35115' name='WorkflowExceptionStartingWorkflow' uid='e3bbb06b-1d38-e311-940a-001cc094718e'.
    Error:
    WorkflowCannotStartWorkflow (35100). Details: id='35100' name='WorkflowCannotStartWorkflow' uid='e4bbb06b-1d38-e311-940a-001cc094718e'.
    Queue:
    GeneralQueueJobFailed (26000) - WorkflowStartWorkflow.WorkflowStartWorkflowMessage. Details: id='26000' name='GeneralQueueJobFailed' uid='e5bbb06b-1d38-e311-940a-001cc094718e' JobUID='68ee1040-1d38-e311-940a-001cc094718e'
    ComputerName='90f7432c-fbc8-4ebd-86f3-0236ce62661c' GroupType='WorkflowStartWorkflow' MessageType='WorkflowStartWorkflowMessage' MessageId='1' Stage='' CorrelationUID='9ded4d9c-7733-7004-2661-c8977270af98'. For more details, check the ULS logs on machine
    90f7432c-fbc8-4ebd-86f3-0236ce62661c for entries with JobUID
    68ee1040-1d38-e311-940a-001cc094718e.
    with this detailed entries in the log file
    10/18/2013 13:47:57.38  Microsoft.Office.Project.Server (0x0948) 0x14F0 Project Server                 Queue                        
     ad3fy Critical Standard Information:PSI Entry Point: <unknown>  Project User: <unknown>  Correlation Id: <unknown>  PWA Site URL:   SA Name: <unknown>  PSError: <unknown> A queue job
    has failed. This is a general error logged by the Project Server Queue everytime a job fails - for effective troubleshooting use this error message with other more specific error messages (if any), the Operations guide (which documents more details about queued
    jobs) and the trace log (which could provide more detailed context). More information about the failed job follows. GUID of the failed job: 68ee1040-1d38-e311-940a-001cc094718e. Name of the computer that processed this job: 90f7432c-fbc8-4ebd-86f3-0236ce62661c
    (to debug further, you need to look at the trace log from this computer). Failed job type: WorkflowStartWorkf... 9ded4d9c-7733-7004-2661-c8977270af98
    10/18/2013 13:47:57.38* Microsoft.Office.Project.Server (0x0948) 0x14F0 Project Server                 Queue                        
     ad3fy Critical ...low. Failed sub-job type: WorkflowStartWorkflowMessage. Failed sub-job ID: 1. Stage where sub-job failed:  (this is useful when one sub-job has more than one logical processing stages). 9ded4d9c-7733-7004-2661-c8977270af98
    10/18/2013 13:47:57.38  Microsoft.Office.Project.Server (0x0948) 0x14F0 Project Server                 Queue Jobs                   
     ad3fy Medium   Error is: GeneralQueueJobFailed. Details: Queue Attributes:  68ee1040-1d38-e311-940a-001cc094718e  90f7432c-fbc8-4ebd-86f3-0236ce62661c  WorkflowStartWorkflow  WorkflowStartWorkflowMessage  1   
    9ded4d9c-7733-7004-2661-c8977270af98  . Standard Information: , LogLevelManager Warning-ulsID:0x000DD158 has no entities explicitly specified. 9ded4d9c-7733-7004-2661-c8977270af98
    Any idea?
    Thanks in advance,
    Alexander.

    Hi Alexander,I have seen that error when the workflow manager has not been registered correctly with the PowerShell command - that should be in the docs referenced - or
    http://technet.microsoft.com/en-us/library/jj663115.aspx.  Let me know if that doesn't appear to be the issue here and I can dig deeper.  Best regards,  Brian
    Blog |
    Facebook | Twitter | Posting is provided "AS IS" with no warranties, and confers no rights.
    Project Server TechCenter |
    Project Developer Center |
    Project Server Help | Project Product Page

  • SAP MMC Says Dispatcher running but not connected to message server

    I installed the ABAP Stack Sneak Preview Netweaver.I see all the relevant NSP entries in my Services file.But when i disconnect my internet I see in SAP MMC that Disptacher says its running but not connected Message Server(turns yellow) and also the SAP gets logged off. Is Internet connection required for running NSP(ABAP System SID)??
    If I want to get rid of this internet dependency what settings i need to change ??
    My current Message trace file says as follows..
    Trace File of Message Server                                                                               
    trc file: "dev_ms", trc level: 1, release: "640"                                                                               
    [Thr 4516] Mon Sep 26 21:51:06 2005                                                      
    [Thr 4516] systemid   560 (PC with Windows NT)                                           
    [Thr 4516] relno      6400                                                               
    [Thr 4516] patchlevel 0                                                                  
    [Thr 4516] patchno    43                                                                 
    [Thr 4516] intno      20020600                                                           
    [Thr 4516] pid        4512                                                               
    [Thr 4516] ***LOG Q01=> MsSInit, MSStart (Msg Server 1 4512) [msxxserv.c   1661]                                                                               
    [Thr 4516] Mon Sep 26 21:51:07 2005                                                      
    [Thr 4516] MsHttpInit: full qualified hostname = sai                                     
    [Thr 4516] HTTP logging is switch off                                                    
    [Thr 4516] set HTTP state to LISTEN                                                      
    [Thr 4516] *** I listen to port sapmsNSP (3600) ***                                      
    [Thr 4516] *** HTTP port 8100 state LISTEN ***                                           
    [Thr 4516] CUSTOMER KEY: >K0201639721<                                                                               
    [Thr 4516] Mon Sep 26 21:52:46 2005                                                      
    [Thr 4516] MsHttpReadUrl: H-1 url = /sap/public/icf_info/urlprefix (403 Forbidden)                                                                               
    [Thr 4516] Mon Sep 26 21:52:50 2005                                                      
    [Thr 4516] MsHttpReadUrl: H-1 url = /sap/public/icf_info/logon_groups (403 Forbidden)                                                                               
    Looking for your valuable solutions.. Will definitely reward good points if gets solved
    Thanks
    Sreeni.

    There is now also a Weblog about https://weblogs.sdn.sap.com/pub/wlg/2479 [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken].
    Regards
    Gregor

Maybe you are looking for

  • XB270H DRIVER in Windows 8.1 Pro 64Bit Not Digitally assigned Will Not Load

    The drivers available that ACER have released are not being recognised by my system because the closest driver Windows 8 64Bit is not Digitally Assigned. So the Windows 8.1 Pro 64Bit sees the monitor as a GenericPnP only and so far have had no respon

  • Mail - 'some' mail not coming thru

    Hi All, Recently I have stopped receiving email from a gmail.com and live.com email address - I have regularly received emails from these people in the past.  I do appear to be receiving emails from other gmail accounts and other various corporate an

  • Personas 2.0: How to "Transport" the whole Personas app to QA sys?

    Hi Personas experts, I have developed some Personas (2.0) apps on Sandbox/Devlopment sys. Now I want to "move" the whole program to QA sys for testing. Can anyone give some details about how to use SAP transpotation to move the "Whole" app? I am thin

  • Is there something very wrong with Lion and Fcp x or what?

    I have just spent a very frustrating two weeks editing a one hour fifteen minute project on FCP X with Lion as the operating system. Every edit session has been plagued with crashes. My mac is a 21.2 inch, with an I7 processor and 12gig of ram which

  • Conversion of content HTML of field CLOB

    It would like to know if it exists some resource directed toward the content conversion of field CLOB I contend standards HTML please are alguem will have the solution send for me Thanks Marcão Souza