Error occured when connect to MySql Databse in Dreamweaver

Hello! I met a problem when connect to Mysql Databse in
Dreamweaver
Details:
My Php Environment: Php 5.2.2+ MySql 5.0.4 + IIS 6.0 + DW IDE
+ WinXP SP2,
All necessary sevice started(Actually I have never stopped
any Windows service).
Php installed (IIS + CGI) and tested successfully in DW
MySql Installtion(Typical Install with extensions ) and
configuration are both OK.
Configuration Details:
For configuration type, select Detailed Configuration.
For server type, select Developer Machine
For database usage, select Non-Transactional Database Only.
For the number of concurrent connections, select Decision
Support(DSS)/OLAP.
For networking options, accept the default settings.
For the default character set, accept the default setting.
For the Windows options, select both options – Install
As Windows Service, and Include Bin Directory in Windows Path.
For security options, enter a root password and confirmed.
And then I Created a database "mydb" with 3 tables inside by
"MySql Command Line Client",
...... (Approach Obmit here)
Open "MySql Command Line Client":
Type >mysql Show Database mydb;
Show a list with 3 tables(Created Successfully)
Then In DW,
Open my Php webpage,
Then from Database Panel>MySql Connection,
Connect Name:myconn
Mysql Server:localhost
Username:root (Right)
Password:111111(Right)
Database:mydb
Click "OK", but when DW tried to connect to MySql database,
then DW popuped an alert dialog says "HTTP Error Code 502 Bad
Gateway",
I don't know what this mean and how to solve this problem,
hope any PHP and DW expert can help me, thank you very much.

Phoenix Wang wrote:
> Click "OK", but when DW try to connect to MySql
database, then popup an alert
> dialog says "HTTP Error Code 502 Bad Gateway",
> I don't know what this mean and how to solve this
problem, hope any PHP and DW
> expert can help me, thank you very much.
How have you set up the Testing server in your site
definition?
David Powers, Adobe Community Expert
Author, "The Essential Guide to Dreamweaver CS3" (friends of
ED)
Author, "PHP Solutions" (friends of ED)
http://foundationphp.com/

Similar Messages

  • An error occurred when connecting to the accounting system ID3DEV310

    Hi Friends,
    We are Implementing collaboration project 4.5 and want to link with project system in ECC 6.0. Both these are in the different servers.
    I have done the configuration on both the servers and also maintain the RFC (ID3DEV310) in Object Links.
    When I create or open the existing project I get the following error: "An error occurred when connecting to the accounting system ID3DEV310"
    Costing Variant taken is PS01 (Project Planning).
    Your reply would be highly appreciated.
    Aryan

    Hi Deepak,
    I have assigned the RFC destination and web server to the object type: "0WBSELEMENT" only
    Also the same has been done for define Object links for accounting integration "0FIN_INT_ERP_PS"
    I have entered these specific to PS objects only.
    Aryan

  • An error occured when connecting java with Ms Access

    Hello Everybody
    I am a new developer in java and want to connect java with Microsoft Access
    i am using JCreator LE
    My code is to insert 3 records for 3 members and then save them in DB and retrieve the information
    Here is the code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "Information";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( connURL ,"","");
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception e) {
                System.out.println("An error Occurred in Connecting with the DB " );
    }and the error is
    Beginning Connection
    Connection done successfully
    An error Occurred in Connecting with the DB
    it didn't insert information in the DB

    Well, thank u i have traced the error and fx it
    but
    how to modify the code and keep the user entering 3 values and search for the entered values??
    Here is the correct code
    import java.sql.*;
    public class Project3 {
        public static void main(String[] args) {
             try {
                  System.out.println("Beginning Connection");
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String accessFileName = "jdbc:odbc:Project";
                String connURL = "jdbc:odbc:;DRIVER=Microsoft Access Driver (*.mdb);DBQ="+accessFileName+".mdb;PWD=";
                Connection con = DriverManager.getConnection( accessFileName);
                Statement stmt = con.createStatement();
                System.out.println("Connection done successfully");
                stmt.execute("Create table Member(Name String,ID Integer)");
                stmt.execute("insert into Member values ('Joe','1234')");
                stmt.execute(" select * from Member");
                ResultSet rs=stmt.getResultSet();
                if (rs != null)
                     while (rs.next()){
                          System.out.println("Name: "+rs.getString("Name")+ "ID: " + rs.getString("ID"));
                stmt.close();
                con.close();
                catch (Exception err) {err.printStackTrace();}
    }

  • Error showing when connecting to MySQL using servlet

    This is my Program. (MySQL.java)
    package coreservlets;
    import java.sql.*;
    public class MySQL {
         public static void main (String[] args) {
         String driver = "com.mysql.jdbc.Driver";
         String url = "jdbc:mysql://localhost/leave_app";
         String username = "";
         String password = "";
         showEmployeeTable(driver, url, username, password);
    public static void showEmployeeTable(String driver,
    String url,
    String username,
    String password)
    try{
                   Class.forName(driver);
    Connection connection = DriverManager.getConnection(url, username, password);
                   Statement statement = connection.createStatement();
                   String query = "Select userid from userlogin";
                   ResultSet resultSet = statement.executeQuery(query);
                   while(resultSet.next()){
                        System.out.print(resultSet.getString("userid"));
                   connection.close();
                   } catch(ClassNotFoundException cnfe) {
                        System.err.println("Error loading driver: " + cnfe);
                   } catch(SQLException sqle) {
                             System.err.println("Error with connection: " + sqle);
    Error showing
    java.lang.ClassCastException: coreservlets.MySQL cannot be cast to javax.servlet.Servlet
         org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:370)
         org.apache.catalina.servlets.InvokerServlet.doGet(InvokerServlet.java:134)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    Could someone help me to resolve this bug?

    Hi,
    I think you have misunderstood me. What I'm trying to say is that your MySQL.java doesn't seems to be the root cause of the problem.
    The way you invoke the MySQL.java. may be the cause of the problem.
    As from your implementation, your MySQL.java seems to be a plain java application. However, it seems that you are trying to treat MySQL .java as a servlet.
    My guess this that you wanted to do something like this:
    class MySQL extends HttpServlet {
         public void doPost(..... ) {
              //the codes in the main method to be put in this method.
         public void doGet( ....) {
                 doPost(....)
         //some of your other methods put here.
    }For more information on how to write a servlet, you may visit http://java.sun.com/developer/onlineTraining/Programming/BasicJava1/servlet.html

  • An unknown error occurred when Dreamweaver tried to connect to this Contrib

    Hello all,
    I just started having a Dreamweaver problem that's perplexing me...
    I have 2 machines, a G4 and a G5 both running Dreamweaver ( I have MX2004 and 8 on both machines, this problem effects both versions on the G5 only).
    Everything was humming along just fine until the other day when suddenly I was receiving error messages on my G5 stating
    "An unknown error occurred when Dreamweaver tried to connect to this Contribute site".
    Then my local folder containing the website that I was working on would go gray (in Dreamweaver) and lose it's folder icon. It would still look like it was there, just no icon. When I would click on the drop down triangle it would state, " The local root folder, (and the folders name), does not exist. Please select a new local folder by clicking the Manage Sites button".
    I then ran a couple of tests on the G4 and it connected fine, I was able to edit, upload/download, everything as usual. I then attempted to connect to the site with Transmit on the G5...no problem.
    In the site definition I remembered that it may be set up to work with Contribute sites, but this was not the case, the box was unchecked.
    I then had the idea to export the site key from the G4 and grab it onto the G5 and import it into Dreamweaver...I did this AND IT WORKED! Once...after that back to the 2 usual errors.
    I found a work around for now...do my editing/site building in Dreamweaver, and upload with Transmit...this works fine...I've found that the errors only happen AFTER I've connected with the site(s). I've tried this with the other sites I maintain and it was the exact same thing.
    Are there any similar experiences out there? This has really got me stumped... can't imagine what it is.
    Any help would be greatly appreciated.
    thanks
    G5 Dual 2, G4 Dual 1.4 GHZ, iBook Graphite SE   Mac OS X (10.4.4)  

    my firewall is off, everything worked up until a couple days ago when it randomly stopped working

  • Communication error occurred when trying to connect to server

    I am using RAS SDK to connect to the BO server. While running the report for performing opendocument, it's giving the following error.
    Caused by: com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$CommunicationError: Communication error occurred when trying to connect to server PUNDL10492.WebIntelligenceProcessingServer
    cause:com.crystaldecisions.thirdparty.org.omg.CORBA.BAD_PARAM:   minor code: 0x0  completed: No
    detail:Communication error occurred when trying to connect to server PUNDL10492.WebIntelligenceProcessingServer
    The exception originally thrown was com.crystaldecisions.thirdparty.org.omg.CORBA.BAD_PARAM:   minor code: 0x0  completed: No
         at com.crystaldecisions.enterprise.ocaframework.e.do(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.o.try(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.p.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(Unknown Source)
         at com.businessobjects.rebean.wi.occa.OccaConnection$CDZStubHelper.getService(OccaConnection.java:270)
         at com.crystaldecisions.enterprise.ocaframework.e.do(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.o.try(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.p.a(Unknown Source)
         at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(Unknown Source)
         at com.businessobjects.rebean.wi.occa.OccaConnection.doConnect(OccaConnection.java:110)
         ... 38 more
    Caused by: com.crystaldecisions.thirdparty.org.omg.CORBA.BAD_PARAM:   minor code: 0x0  completed: No
         at com.crystaldecisions.enterprise.ocaframework.idl.OCA.OCAcdz.WICDZServer.CDZHomeHelper.narrow(CDZHomeHelper.java:109)
         at com.businessobjects.rebean.wi.occa.OccaConnection$HomeStubHelper.narrow(OccaConnection.java:338)
         ... 52 more
    Please help me to solve the issue

    Using BO SDK i am connecting to the BO Report Server, to fetch the BO Reports, But while trying to run the report, i am getting the following error.
    Caused by: com.crystaldecisions.enterprise.ocaframework.OCAFrameworkException$CommunicationError: Communication error occurred when trying to connect to server PUNDL10492.WebIntelligenceProcessingServer
    cause:com.crystaldecisions.thirdparty.org.omg.CORBA.BAD_PARAM: minor code: 0x0 completed: No
    detail:Communication error occurred when trying to connect to server PUNDL10492.WebIntelligenceProcessingServer
    The exception originally thrown was com.crystaldecisions.thirdparty.org.omg.CORBA.BAD_PARAM: minor code: 0x0 completed: No
    at com.crystaldecisions.enterprise.ocaframework.e.do(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.o.try(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.p.a(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(Unknown Source)
    at com.businessobjects.rebean.wi.occa.OccaConnection$CDZStubHelper.getService(OccaConnection.java:270)
    at com.crystaldecisions.enterprise.ocaframework.e.do(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.o.try(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.o.a(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.p.a(Unknown Source)
    at com.crystaldecisions.enterprise.ocaframework.ServiceMgr.getManagedService(Unknown Source)
    at com.businessobjects.rebean.wi.occa.OccaConnection.doConnect(OccaConnection.java:110)
    ... 38 more
    Caused by: com.crystaldecisions.thirdparty.org.omg.CORBA.BAD_PARAM: minor code: 0x0 completed: No
    at com.crystaldecisions.enterprise.ocaframework.idl.OCA.OCAcdz.WICDZServer.CDZHomeHelper.narrow(CDZHomeHelper.java:109)
    at com.businessobjects.rebean.wi.occa.OccaConnection$HomeStubHelper.narrow(OccaConnection.java:338)
    ... 52 more
    Please someone help me with the following issue.

  • WMIProviderException: An error occurred when attempting to connect to the report server remote procedure call (RPC) end point

    I am getting the following error message while trying to configure a database for a Reporting Service Server.  Both SQL Server and Reporting server are 2012 named instances.  I have 2014 instances as well on the same server.
    Exception details...
    Microsoft.ReportingServices.WmiProvider.WMIProviderException: An error occurred when attempting to connect to the report server remote procedure call (RPC) end point. Verify that the Report Server Windows service is running, and then retry the operation.
     ---> System.Runtime.InteropServices.COMException (0x800706B3): The RPC server is not listening. (Exception from HRESULT: 0x800706B3)
       --- End of inner exception stack trace ---
       at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.ThrowOnError(ManagementBaseObject mo)
       at Microsoft.ReportingServices.WmiProvider.RSWmiAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)
       at ReportServicesConfigUI.WMIProvider.RSReportServerAdmin.GenerateDatabaseScript(String databaseName, Int32 lcid, Boolean isSharePointIntegrated, String& script)
    Can someone help me on this please?

    Hi Jaigi,
    According to your description, you want to change a report server database for Reporting Services. But it fails on the last step and returns a error. Right?
    In this scenario, it seems you are creating a report server database on another server via remote connection. Based on the error message, it has issues on executing the script for generating new database. Please check if you have permission to connect the
    server and create a new database. Also please check if the Reporting Services Windows services is working properly.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Cannot connect airport express to ipad I keep receiving the message: "an unexpected error occurred" when I try to connect my Ipad to my airport express.  Does anyone have a solution?

    cannot connect airport express to ipad
    I keep receiving the message: "an unexpected error occurred" when I try to connect my Ipad to my airport express.  Does anyone have a solution?

    I could not "see" my Express via my wireless router or via the Airport Utility until I reset it to Factory Settings by unplugging it then holding in the tiny reset button while plugging it back in, waiting for the flashing yellow LED signal before letting go.
    Then I set it up to DHCP - "connect to wireless network" and DOWNGRADED the firmware to 7.3.x
    I would tell you the exact Firmware but I can no longer "see" the Airport express............ AGAIN or still.....
    BUT at least I am listening to music streaming from my MacBook Pro... Hmmm.
    I log back into the router (Linksys WRT110) and it no longer shows the Airport Express as a DHCP client AND the Airport utility can no longer "find" any Airport Devices..
    So if I don't move, or there are no cosmic events, or maybe my KARMA is effecting the device or my "VIBES" are good, but I'm not sure if will continue to work.. Sure would like to use this little device from hel*.
    Since I have had this Airport Express I have spent many hours trying to get it to work.
    It works just long enough to fool me and then takes a dump...
    Maybe this time?
    5 Minute later...
    Music was playing. I went into iTunes and switched from Airtunes to Computer speakers. When I tried to switch it back GUESS WHAT?
    [An unknown error (-15006) occurred while trying to connect to remote speaker "Airtunes"]
    Wonderful Green LED though. Totally useless piece of equipment AFAIK.
    Message was edited by: Daniel Shattuck

  • "An error occurred when communicating with the server. Check connectivity with your administrator to determine whether further action is necessary", then attempt to approve TimeSheet.

    Kind day, colleague.
    It was required to organize a statement chain for TimeSheet of employees, as we realized. Everything is good, but at linear managers in PSW opportunity to execute Approve when viewing TimeSheet of the employee remained, and in attempt to approve TimeSheet there
    is a mistake.
    500 Internal Server Error
    "An error occurred when communicating with the server.  Check connectivity with your administrator to determine whether further action is necessary. "
    Accept, is carried out as it is necessary.
    It is a bug or we not correctly realized approval chain?

     issue is  related to the user booking time against a task that was past the finish/end date listed in the Project Schedule.
    To resolve the user needs to submit their time on a valid task that is still within the current reporting timeframe, or have the Project Manager
    update the task in questions so that the finish/end dates are at or beyond the submission period and then republish the project. After that, the user should be able to go in and submit their timesheet with success.
    http://patrickdrews.com/2012/09/project-server-2010-timesheet-submission-produces-an-error-occurred-while-communicating-with-the-server/
    kirtesh

  • ORA-04052: error occurred when looking up remote obj in mapping execution

    Hi,
    While executing an OWB mapping, I am getting the following error:
    ============
    Starting Execution UII_D_MAP_SPC_INSTALLATION_SIT
    Starting Task UII_D_MAP_SPC_INSTALLATION_SIT
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02019: connection description for remote database not found
    ORA-02063: preceding 3 lines from BIP2S@BIPDRACONN
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 73
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 1672
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 2353
    ORA-06512: at "UII_ODS_OWNER.UII_D_MAP_SPC_INSTALLATION_SIT", line 6838
    ORA-06512: at line 1
    Completing Task UII_D_MAP_SPC_INSTALLATION_SIT
    Completing Execution UII_D_MAP_SPC_INSTALLATION_SIT
    ============
    Actually, here UII_ODS_OWNER itself is the target schema and <<UIIVS.DEVENV1.BT.CO.UK>> is the database in which this schema exists. And the mapping "UII_D_MAP_SPC_INSTALLATION_SIT" is being executed in the same target schema UII_ODS_OWNER.
    I am not sure why this above error is coming because such a dblink 'UIIVS.DEVENV1.BT.CO.UK' does not exist in the OWB generated package code. And the 2nd dblink 'BIP2S@BIPDRACONN' does not exist in the code, intead it exists as "BIP2S.DEVENV1.BT.CO.UK@BIPDRACONN" in the package code which is correct (as per OWB configuration & database).
    Same error also comes when I try to execute the same mapping from the OWB DEPLOYMENT MANAGER.
    Thanks & Regards,
    lenin

    Good morning Lenin,
    Have you checked the implementation of the connectors and are your locations well registered?
    Has a similar setup ever worked well?
    Can you access the source table using SQL (e.g. with SQL*Plus or TOAD)?
    Regards, Patrick

  • Failed to execute with the error Error occurred when starting the parser: t

    Dear All
    I am getting this error
    ""A database error occurred. The database error text is: The MDX query SELECT  { [DASKA1EDEL2DMLXTQ62S595QV].[DB7BP4A8AMQTUD3DPEEPS4J87] }  ON COLUMNS , NON EMPTY CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( CROSSJOIN( [0CALMONTH].[LEVEL01].MEMBERS, [DASKFZ1TRFOLNTG78G0HH2B87].MEMBERS ), [0MATERIAL].[LEVEL01].MEMBERS ), [0PLANT].[LEVEL01].MEMBERS ), [0COMP_CODE].[LEVEL01].MEMBERS ), [0ACTDELDATE].[LEVEL01].MEMBERS ) DIMENSION PROPERTIES MEMBER_NAME, MEMBER_CAPTION ON ROWS FROM [0IC_C03/ZMATSTOCK]  failed to execute with the error Error occurred when starting the parser: timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'. (WIS 10901)""
    I already went to similar kind of error solution in forum,but this error is coming for one web I query,all other reports are working fine.
    I already implemented note 1032461

    Hi,
    Under normal circumstances it should be enough to restart the connection service.
    As far as we know there is no formal solution to this problem from SAP yet but restarting the connection service is much less of an interuption compared to restarting the the SIA.
    Re-starting the connection service should resolve this issue. since, Connection service is only related to DeskI and Rich Client re-statrng wonu2019t impact other business objects components including java report panel.
    All the Best,
    Madhu....

  • Error occuring when trying to download movie from apple tv

    When ever I rent a movie from apple tv an error occurs when I go to downlaod it. The error just says that the movie cant download right now, try again later. Even after numerous attempts the movie still wont download. This had been happening for months and I've just been watching movies from netflix. I'm being charged for movies I can't even watch! How can I fix this problem?

    First, what is your internet speed? www.speedtest.net
    iTunes HD content requires 6mbps (SD would be 3mbps)
    Netflix uses variable bit-rate so it simply degrades on slower connections
    iTunes content waits to play until enough has buffered for playback without interupption

  • I had itunes played from my PC to my music system that is connected through a nework.  It use to work fine, but now I get an error message that say "An error occured while connecting to the Airplay Device "Stereo".  An unknown error occured (-15000)".

    When trying to play itunes from my PC to my stereo connected to an Airport Express, I gen an error that says "An error occured while connecting to the Airplay device "Stereo" an unknown error occured (-15000)".  This has happened before and for reasons unknown to me, the problem corrects itself, then it starts again/  Makes me wish I did not have my music on itunes.

    moehadi, Welcome to the discussion area!
    This is typically caused by a firewall or Internet security software running on your PC. Please read the comments in "Error -3256 or -15000 when streaming to AirPort Express base stations using iTunes".
    Also there is "iTunes 8: Unknown error -15000 when attempting to stream music to devices connected to AirPort Express with AirTunes".

  • The following error occured when searching for on-premises exchange server

    I look after a company where I installed a new DELL server last year, The server is running Windows Small Business Server 2011 which we installed. Exchange 2010 was installed as part of the Windows Small Business Server 2011 installation. At the time we
    did not configure Exchange because they use external POP accounts for email. Eventually they wanted to move over to Exchange
    When we created the user accounts using Windows SBS Console, it created a local mailbox for each user
    No problems - [email protected]
    Since late last year every time I create a new user within SBS Console, it errors creating the mailbox
    Add a user account and assign a user role
    Getting "Unexpected error occurred" when Setting up an e-mail account for user
    Looking at the error "Unexpected error occurred" & MessagingManagement "Unexpected error occured"
    The user account is created ok just no e-mail address is created for the user
    I never thought much about this at the time as we weren't using Exchange email accounts. I decided to have a look at this issue over weekend
    When I try to open Microsoft Exchange Management Console I'm getting "Initialization failed"
    The following error occurred when searching for the On-Premises Exchange server
    When I try to open Microsoft Exchange Management Shell, I get a similar error
    I've download & run EMTShooter which just identifies there is an error & gives me the same error
    I've installed & re-installed WinRM IIS Extensions
    I've checked all the settings in IIS, Default Web Site, PowerShell, Modules & Paths...
    Still cannot connect to Exchange
    I've trawled through the internet for two days checking & testing every solution but no luck
    I've checked every setting against another Windows SBS 2011 Server we've installed & works
    I cannot find a difference
    Can someone help me or point me in the right direction?
    Peter Ralphs

    Thanks for the reply Cara
    Here's the original error I was getting when opening Exchange Management Console
    Initialization failed
    The following error ocurred while searching for the on-premises Exchange server:
    [server.myd.local] Connecting to remote server failed with the following error message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from the destination computer. The content type is absent or invalid.
    For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError $true -CurrentVersion 'Version 14.1 (Build 218.15)
    I got similar error when trying to access the Exchange Management Shell
    VERBOSE: Connecting to SERVER.myd.local
    [server.myd.local] Connecting to remote server failed with the following error message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from the destination computer. The content type is absent or invalid.
    For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [],                          
    PSRemotingTransportException
        + FullyQualifiedErrorId : PSSessionOpenFailed
    When I opened the Exchange Management Console this week, the error had changed slightly
    Initialization failed
    The following error ocurred while searching for the on-premises Exchange server:
    [server.myd.local] Connecting to remote server failed with the following error message : The WinRM client received an HTTP server error status (500), but the remote service did not include any other information about the cause of the failure. For more information,
    see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError $true -CurrentVersion 'Version 14.1 (Build 218.15)
    I could only run Exbpa from a command prompt (obviously no access from Exchange Management Console)
    This is the result of the Health Check Scan
    Organization: First Organization
    Default Global Address List Changed
    The 'msExchQueryFilter' attribute of the default Global Address List 'Default Global Address List' has been changed. Default: '(Alias -ne $null -and (ObjectClass -eq 'user' -or ObjectClass -eq 'contact' -or ObjectClass -eq 'msExchSystemMailbox' -or ObjectClass
    -eq 'msExchDynamicDistributionList' -or ObjectClass -eq 'group' -or ObjectClass - eq 'publicFolder'))'. Current: '((Alias -ne $null) -and (((ObjectClass -eq 'user') -or (ObjectClass -eq 'contact') -or (ObjectClass -eq 'msExchSystemMailbox') -or (ObjectClass
    -eq 'msExchDynamicDistributionList') -or (ObjectClass -eq 'group') -or (ObjectClass -eq 'publicFolder'))))'.
    Admin Group: Exchange Administrative Group (FYDIBOHF23SPDLT)
    The default public folder database is remote
    The default public folder database for mailbox database 'Mailbox Database' on server SERVER isn't local. Public folder database: CN=Public Folder Database 1529293969,CN=Databases,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=First
    Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=myd,DC=local.
    Server: SERVER
    Disk timeout changed
    Disk timeout on server SERVER.myd.local is not set at the default of 10 seconds. This is normal if third-party storage software is installed. Current timeout value is 160 seconds.
    Client RPC binding found
    The 'Rpc_Binding_Order' is set on server SERVER.myd.local. It is possible that either the Exchange or Outlook client is installed on the server. Current registry value: ncalrpc,ncacn_ip_tcp.
    One thing I've noticed from the start is that the error occurs when it is "searching" for the Exchange Server, it then goes on to name the server [server.myd.local] it knows it's there but cannot access it ?
    Another thing I've noticed is that it always refers to the "remote server" this server is Windows SBS 2011, it's the Domain Controller, DHCP Server, DNS Server & Exchange Server all in the same box
    I also noticed that the Health Check stated that "The default public folder database is remote"
    Has this something to do with it ?
    Regards
    Peter

  • Error occured while connecting to FTP Server...

    Hi,
    I am trying to use the file adapter to pick the file from FTP server however file adapter raised the following error:
    Error occurred while connecting to the FTP server \"64.72.230.42:21\": java.net.ConnectException: Connection timed out: connect
    I changed the timeout of the communication channel to 1200 but still getting this error after a minute.
    The ftp server is working fine with my ftp client.
    Could you please help me to fix this issue ?

    I got the following message
    "Processing finished successfully" when the ftp folder did not have the required file.
    Do you mean, the connection is ok when there is no file in the source directory.
    Yes.
    However as soon as i put the file start getting the same error message.
    This could be then an authorization issue. Check if your source dir & file are having proper authorizations. Check with your BASIS guy.
    I set the source directory to a folder name which does not exit on ftp server. now i am getting "The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 /user038888888888888888/input: The system cannot find the path specified:"
    So, do you think it is a problem of authorizations ? and if it is then how can i change it ? should i have to change the permissions of the folder on ftp server?
    Thanks for your support. I really appreciate your help. I almost spend a whole day trying to fix this issue.
    Regards,
    Ehsaan.

Maybe you are looking for

  • Photoshop Elements 7 Editor crashes upon opening any image

    I have been trying for 2 days to get my Photoshop to work. I've used PSE7 for years, no issues. Suddenly yesterday, every time I try to open an image in the full editor, I get the "Photoshop has stopped working... check online for a solution or close

  • 10.6.2 httpd respawning endlessly.

    My server's log is full of this: Feb 28 00:40:31 atlas com.apple.launchd[1] (org.apache.httpd): Throttling respawn: Will start in 10 seconds Feb 28 00:40:41 atlas org.apache.httpd[2466]: (48)Address already in use: make_sock: could not bind to addres

  • Entry doesnot exist in the T005q (check entry)

    i configured the country keys and with holding countires also. when ia m entering with holding tax key in does not exist in the too5 q . mean while because of this vendor master data cin details tab is not occured. kindky give how to resolve 2 issues

  • Migrating from SRM 7.0 Classic to ECS - Seeking some clarifications

    Hello Friends, We are now planning to upgrade from SRM 5.0 to SRM 7.0 and then migrated to Classic to ECS. We have the below challenging points which I need clarification, 1) How do we go about the Taxation and Pricing Part, If we migrate from Classi

  • Line Graph/Chart

    Post Author: vmm CA Forum: Charts and Graphs Hi All, Does anyone know how to make the 'Data Labels' in Line graph on the 'x axis' to be vertically align? The thing is, on the x axis I have 'date with timestamp' labels e.g. "2007/08/30 20:19:45". When