Unable to connect to the server to pull data from mysql

Hello,
I am novice working with Flash Builder 4 and I just created a test application which runs well in my computer pulling data from Mysql using PHP and populating a datagrid. But when I transfered it to the my hosting provider failed. I have been doing some modifications to the gateway.php and amf.config.ini to solve some of the issues. Now the application try to run but doesn't populate the data in the datagrid. I included a tracking point in my data service file to read the connections variables, but they come up in blank. I highly appreciate any help. Here are my gateway.php, amf.config.ini and the data service.
gateway.php
<?php
ini_set("display_errors", 1);
$dir = dirname(__FILE__);
$webroot = $_SERVER['DOCUMENT_ROOT'];
$configfile = "$dir/amf_config.ini";
$fp = fopen("tracking.txt", "a");
fwrite($fp, "1-config file " . $configfile . "\r\n");
//default zend install directory
$zenddir = $webroot. '/ZendFramework/library';
//-$zenddir = $webroot;
fwrite($fp, "2-default zendir" . $zenddir . "\r\n");
//Load ini file and locate zend directory
if(file_exists($configfile)) {
     $arr=parse_ini_file($configfile,true);
     if(isset($arr['zend']['webroot'])){
          $webroot = $arr['zend']['webroot'];
          $zenddir = $webroot. '/ZendFramework/library';
     if(isset($arr['zend']['zend_path'])){
          $zenddir = $arr['zend']['zend_path'];
fwrite($fp, "3-after zendir" . $zenddir . "\r\n");
// Setup include path
//add zend directory to include path
set_include_path(get_include_path().PATH_SEPARATOR.$zenddir);
// Initialize Zend Framework loader
require_once 'Zend/Loader/Autoloader.php';
//-require_once 'Autoloader.php';
Zend_Loader_Autoloader::getInstance();
// Load configuration
$default_config = new Zend_Config(array("production" => false), true);
$default_config->merge(new Zend_Config_Ini($configfile, 'zendamf'));
$default_config->setReadOnly();
$amf = $default_config->amf;
fwrite($fp, "4- configfile" . $dafault_config["production"] . "\r\n");
// Store configuration in the registry
Zend_Registry::set("amf-config", $amf);
// Initialize AMF Server
$server = new Zend_Amf_Server();
$server->setProduction($amf->production);
if(isset($amf->directories)) {
     $dirs = $amf->directories->toArray();
     foreach($dirs as $dir) {
         // get the first character of the path.
         // If it does not start with slash then it implies that the path is relative to webroot. Else it will be treated as absolute path
         $length = strlen($dir);
         $firstChar = $dir;
         if($length >= 1)
              $firstChar = $dir[0];
         if($firstChar != "/"){
              // if the directory is ./ path then we add the webroot only.
              if($dir == "./"){                  
                   $server->addDirectory($webroot);
              }else{
                   $tempPath = $webroot . "/" . $dir;
                    $server->addDirectory($tempPath);
          }else{
                  $server->addDirectory($dir);             
fwrite($fp, "5-temp path" . $tempPath . "=>" . "\r\n");
fwrite($fp, "******************************************" . "\r\n");
// Initialize introspector for non-production
if(!$amf->production) {
     $server->setClass('Zend_Amf_Adobe_Introspector', '', array("config" => $default_config, "server" => $server));
        $server->setClass('Zend_Amf_Adobe_DbInspector', '', array("config" => $default_config, "server" => $server));
// Handle request
echo $server->handle();
?>
amf.config.ini
[zend]
;set the absolute location path of webroot directory, example:
;Windows: C:\apache\www
;MAC/UNIX: /user/apache/www
;-webroot =c:/wamp/www/
webroot = /home/frutiexp/public_html
;set the absolute location path of zend installation directory, example:
;Windows: C:\apache\PHPFrameworks\ZendFramework
;MAC/UNIX: /user/apache/PHPFrameworks/ZendFramework
;zend_path = /home/frutiexp/public_html/ZendFramework
[zendamf]
amf.production = true
amf.directories[]=fb41/services
;amf.directories[]=./
CoursesService.php
<?php
*  README for sample service
*  This generated sample service contains functions that illustrate typical service operations.
*  Use these functions as a starting point for creating your own service implementation. Modify the
*  function signatures, references to the database, and implementation according to your needs.
*  Delete the functions that you do not use.
*  Save your changes and return to Flash Builder. In Flash Builder Data/Services View, refresh
*  the service. Then drag service operations onto user interface components in Design View. For
*  example, drag the getAllItems() operation onto a DataGrid.
*  This code is for prototyping only.
*  Authenticate the user prior to allowing them to call these methods. You can find more
*  information at <link>
class CoursesService {
     var $username = "myusername";
     var $password = "mypassword"
     var $server = "localhost";
     var $port = "3306";
     var $databasename = "frutiexp_trainsur";
     var $tablename = "courses";
     var $connection;
      * The constructor initializes the connection to database. Everytime a request is
      * received by Zend AMF, an instance of the service class is created and then the
      * requested method is invoked.
     public function __construct() {
            $this->connection = mysqli_connect(
                                          $this->server, 
                                          $this->username, 
                                          $this->password,
                                          $this->databasename,
                                          $this->port
$fp = fopen("./tracking.txt", "a");
fwrite($fp, "1-service".  $databasename . " " . $username . "\r\n");
fclose($fp);
          $this->throwExceptionOnError($this->connection);
      * Returns all the rows from the table.
      * Add authroization or any logical checks for secure access to your data
      * @return array
     public function getAllCourses() {
          $stmt = mysqli_prepare($this->connection, "SELECT * FROM $this->tablename");         
          $this->throwExceptionOnError();
          mysqli_stmt_execute($stmt);
          $this->throwExceptionOnError();
          $rows = array();
          mysqli_stmt_bind_result($stmt, $row->cou_id, $row->cou_title, $row->cou_overview, $row->cou_objectives);
         while (mysqli_stmt_fetch($stmt)) {
           $rows[] = $row;
           $row = new stdClass();
           mysqli_stmt_bind_result($stmt, $row->cou_id, $row->cou_title, $row->cou_overview, $row->cou_objectives);
          mysqli_stmt_free_result($stmt);
         mysqli_close($this->connection);
         return $rows;
      * Returns the item corresponding to the value specified for the primary key.
      * Add authroization or any logical checks for secure access to your data
      * @return stdClass

Hello Jdesko,
Thank you for you prompt response. Yes, I have changed the connections variables in my dataservice ( I didn't post real values). You are right, after all I didn't make changes on the gateway.php except to add some tracking points. The one that I changed is the amf.config,ini. The application runs without any error exceptions, but don't populate the datagrid. According with the tracing is stoping just when establishing the connection to the database. Please let me know if you have any other clue. thanks

Similar Messages

  • TS3899 I have a hotmail account set up on my ipod, but in the past two weeks I have had issues trying to pull up mail.  I get a "unable to connect to the server" message.  Any Ideas?

    I have a 4th gen ipod toch.  As of the past two weeks I have been unable to receive my hotmail on the ipod.  I get a "unable to connect to the server" message and all older emails are now gone.

    I have a 4th gen ipod toch.  As of the past two weeks I have been unable to receive my hotmail on the ipod.  I get a "unable to connect to the server" message and all older emails are now gone.

  • There is a problem with the server's security certificate. The security certificate is not from a trusted certifying authority. SAP Business One is unable to connect to the server

    Hello,
    I have an issue with connecting client SB1H on Windows, the scenario is as follows:
    1.- Server:
         Suse Linux Enterprise Server 11.3 kernel version: 3.0.76-0.11 IBM
         NDB and Server are review 69 SP06
    2.- Client:
         Windows 8 Pro Virtual Machine on Microsoft Hyper-V
         SB1H PL 11 version 32bits    
         SAP HANA Studio version 1.0.60
    When I run SB1H the following message appears:
    There is a problem with the server's security certificate. The security certificate is not from a trusted certifying authority. SAP Business One is unable to connect to the server.
    Any idea what could be the solution?

    Hi,
    Please check SAP notes:
       1993392 - Server components setup wizard: New default values for certificates and single sign-on option
    1929288 - Do not configure SSL for XApp during installation or upgrade if XApp is installed on a different machine than the SAP HANA server
    Thanks & Regards,
    Nagarajan

  • [Forum FAQ] "Unable to connect to the server by using Windows PowerShell Remoting" error while installing RDS roles on Server 2012 R2

    When you try to install RDS role on server 2012 R2 using standard deployment, this issue may occur (Figure 1).
    “Unable to connect to the server by using Windows PowerShell remoting”.
    Figure 1: Unable to connect to the server by using Windows PowerShell remoting
    First of all, we need to verify the configurations as it suggested:
    1. The server must be available by using Windows PowerShell remotely.
    2. The server must be joined to a domain.
    3. The server must be running at least Windows Server 2012 R2.
    4. The currently logged on user must be a member of the local Administrators group on the server.
    5. Remote Desktop Services connections must be enabled by using Group Policy.
    In addition, we need to check if the “Windows Remote Management “service is running and related firewall exceptions have been created for WinRM listener.
    To enabling PowerShell remoting, we can run this PowerShell command as administrator (Figure 2).
    Enable-PSRemoting -Force
    Figure 2: Enable PowerShell Remoting
    However, if issue persists, we need to check whether it has enough memory to work.
    By default, remote shell allots only 150 MB of memory. If we have IIS or SharePoint App pool, 150 MB of memory is not sufficient to perform the remoting task. Therefore, we need to increase
    the memory via the PowerShell command below:
    Set-Item WSMan:\localhost\Shell\MaxMemoryPerShellMB 1000
    Then, you need to restart the server and the issue should be resolved.
    You can get more information regarding Remote Troubleshooting by below link:
    about_Remote_Troubleshooting
    If you need further assistance, welcome to post your questions in the
    RDS forum.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    i found another possible reason, this solution worked for me:
    http://oyvindnilsen.com/solution-for-powershell-remoting-error-it-cannot-determine-the-content-type-of-the-http-response-from-the-destination-computer/
    I tried to set up powershell remoting on a server and kept getting this error:
    Enter-PSSession : Connecting to remote server failed with the following error message : The WinRM client cann
    ot process the request. It cannot determine the content type of the HTTP response from the destination comput
    er. The content type is absent or invalid. For more information, see the about_Remote_Troubleshooting Help to
    pic.
    After a bit of troubleshooting I discovered that the problem was that the authentication packets was to big (over 16k), this will cause WinRM to reject the request. The reason for authentication packets getting too big can be because the user is member of very
    many security groups or in my case because of the SidHistory attribute.
    The solution was to increase the MaxFieldLength and MaxRequestBytes keys in the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters
    If the keys does not exists you can create them, be sure to use the DWORD type.
    I sat MaxFieldLength to DEC value 40000 and MaxRequestBytes to DEC value 32768 and rebooted the server. Problem solved.

  • HP OfficeJet Pro 8500A Plus "unable to connect to the server"

    I have had this printer for a couple years and now it is saying it is unable to connect to the server.  The light under the wifi symbol is not lit up and nothing happens when I press that button.  
    I have restarted the printer, reinstalled the driver, restarted the router ... to no avail.
    The router is working properly as my 2 computers are both working.

    Hi bhappie,
    Welcome to the HP Support forums.  I gather that you are unable to connect your Officejet 8500A plus printer to your wireless network.
    This printer can be connected by an ethernet cable or connected to your wireless network but cannot support both simultaneously as referenced in the document The Printer Does Not Support Ethernet (Wired) and Wireless Network Connections at the Same Time.  To setup the wireless feature you will need to unplug the ethernet cable.  
    Your wireless printer can be easily connected to your wireless network from the front panel of your printer.  If you are unsure how to do this the instructions can be found in your User Guide on page 219 in the section titled “To set up a wireless communication using the Wireless Setup Wizard”.  
    Now that the printer has a wireless connection, any computer that uses the printer, will need to have the connection method updated.  The instructions on how to do this can also be found in your User Guide on page 221 in the section titled “Change the connection method”.  There is a sub-section dedicated to Windows operating systems and one dedicated to Mac operating systems.
    Regards,
    Happytohelp01
    Please click on the Thumbs Up on the right to say “Thanks” for helping!
    Please click “Accept as Solution ” on the post that solves your issue to help others find the solution.
    I work on behalf of HP

  • I have a ipad mini and it says that it has perect wifi yet when i go into safari it says unable to connect with the server how can i fix this?

    I have a ipad mini and i have had it for less then a year, it says that i have perfect wifi up in the left corner where the wifi is always at  but when ever i go into the built in safari it says that it is unable to connect with the server. How can i fix this because with out it connecting to the server or internet it is kind of useless to me. I do have ios7 if that helps

    The wifi symbol only indicates the presence/signal strength of wifi. Not that you are connected.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • I'm unable to connect to the server to set up my ipad

    I'm unable to connect to the server to set up my ipad

    Check firewall, if you're on wifi then try ethernet to rule out interference. It is likely a network issue.

  • Downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?

    downloaded Reader XI and started to recieve error 40000015, found the fourm with the patch to the registery fix, now it tells me unable to connect to the server. To many bugs with the reader, how do reinstall an older version?
    I click on the launcher and nothing happens, 15 min later it will tell cant connect to the server.
    My computer is a windows 8.1; 64 bit operating system. I am stationed in South Korea, but that should not affect the program. Help please.
    John

    Hi johnd83157268,
    Sorry for the inconvenience that has caused to you.
    Could you please let me know what changes have you made in the registry.
    You might need to uninstall Adobe Reader from Control Panel and try install it again from the following link:
    Adobe Reader Install for all versions
    Please ensure that you are logged in as administrator and anti-virus is disabled as that might interrupt installation.
    Try again and then let me know.
    Regards,
    Anubha

  • Sharepoint Integrated SQL Reporting - Unable to connect to the server that is specified......

    This is driving me crazy.  I have Reporting services implemented on several sites in Sharepoint.  For some reason just one site refuses to work.  I see all the features are there.  I can create data sources. 
    When I try to create a report I get :
    "Unable to connect to the server that is specified in the URL,
    http://help.site.  Make sure that the server is running, the URL is correct, and you have permission to use the server"
    I'm using my domain admin account, I know know this works on every other site.  I know I haven't forgotten the general setup of the service. 
    The only difference is this site allows "anonymous" connections.  Has anyone heard of an issue about using anon and reporting services?  Either way I authenticate before I login but that doesn't have an effect.
    David Jenkins

    Thank you forums!!!!
    I found an existing thread. 
    http://social.technet.microsoft.com/Forums/en-US/sharepoint2010setup/thread/d815b9fb-3431-490d-bd51-e7e21fcb788e
    1) Opened up IIS
    2) Expanded my intranet folder
    3) Expanded _vti_bin
    4) Highlighted "ReportServer"
    5) Double Clicked on Authentication
    6) Disabled "Anonymous Access" to the reporting folder itself
    7) Opened report builder 3.0 and typed in http://intranet.company.com" BOOM instant connection :D
    David Jenkins

  • Unable to connect to the server.. Error Data : API_NOT_INITIALIZED on CUEAC Server Installation

    Hi all,
    I am trying to install CUEAC Attendant Server on Windows Server 2008 R2, tried several times. First, it got stuck on the Databahse Wizard. After three reinstalls, it still got stuck but somehow built the configure database named CFGATT and then started installing TSP. Finally, the setup has been finished and I went to the WebAdmin page. After I entered the login information, it gave an error : "
    Unable to connect to the server.. Error Data : API_NOT_INITIALIZED"
    I searched through the forum and found this topic :
    https://supportforums.cisco.com/message/1215763
    Here  I found that there's a bug and I tried to do the fix myself as instructed :
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCte44454
    However, it changed nothing, looking forward to your responses.
    Regards,
    Fikri

    Fikri,
    It is not working as this is not a supported environment, the current release is not supported on Windows Server 2008 R2.
    The next release (April 2013) will support that version of Windows Server.

  • Unable to Connect to the Server and WLI Domain problem

    Hi All
    this is the details
    I have installed installed WIntegration Server and using
    quickstart click the Take to Platform tour I started all the servers
    Note-- I have not installed separate weblogic server 7.0 and not started.
    whenever I click started WebLogic Integration Studio and it shows
    user --admin
    password- security
    url--t3://localhost:7001
    once submit it shows always Unable to connect to the server
    please help me ???????????????????????????????????????????/
    Server is running fine I used quickstart--- Take the live platform tour to run
    the below servers.
    C:\bea\weblogic700\samples\platform\e2eDomain>"C:\bea\jdk131_08\bin\java" -hotsp
    ot -Xms256m -Xmx256m -XX:MaxPermSize=256m -Xverify:none -Dcommerce.properties="
    C:\bea\weblogic700\portal\weblogiccommerce.properties" -Dweblogic.jws.Production
    Mode="false" -Dweblogic.servlet.ClasspathServlet.disableStrictCheck="true" -De2e
    Sample.b2b.path.data=".\beaApps\e2eApp\data" -Dweblogic.Name=e2eServer -Dbea.hom
    e="C:\bea" -Dweblogic.management.username= -Dweblogic.management.password= -Dweb
    logic.ProductionModeEnabled=true -Dweblogic.management.discover=false -Djava.sec
    urity.policy=="C:\bea\weblogic700\server\lib\weblogic.policy" weblogic.Server
    Starting WebLogic Server...
    <Aug 5, 2003 1:22:23 PM EDT> <Notice> <Management> <140005> <Loading configurati
    on C:\bea\weblogic700\samples\platform\e2eDomain\.\config.xml>
    <Aug 5, 2003 1:22:37 PM EDT> <Notice> <Security> <090093> <No configuration data
    was found on server e2eServer for realm CompatibilityRealm.>
    <Aug 5, 2003 1:22:37 PM EDT> <Notice> <Security> <090082> <Security initializing
    using realm CompatibilityRealm.>
    <Aug 5, 2003 1:22:38 PM EDT> <Notice> <WebLogicServer> <000327> <Starting WebLog
    ic Admin Server "e2eServer" for domain "e2eDomain">
    <Aug 5, 2003 1:24:23 PM EDT> <Notice> <B2BIntegration> <000000> <INFO: WebLogic
    Integration - B2Bi Server started successfully.>
    INFO: WebLogic Integration - B2Bi Server started successfully.
    <Aug 5, 2003 1:24:31 PM EDT> <Notice> <AI> <000000> <Started WebLogic Integratio
    n - AI Server version 7.0.4.0>
    <Aug 5, 2003 1:24:35 PM EDT> <Notice> <BPM> <000000> <Started WebLogic Integrati
    on - BPM Server version 7.0.4.0>
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    After the server has booted, your browser should
    automatically launch and point to the WebLogic Server
    Index running on this server. If your browser
    fails to launch, point your browser to the URL
    "http://Inforicadb:7501/index.jsp
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    =============== Initializing Logger ======================
    <Aug 5, 2003 1:24:36 PM EDT> <Notice> <Management> <141053> <Application Poller
    not started for production server.>
    <Aug 5, 2003 1:24:46 PM EDT> <Notice> <WebLogicServer> <000354> <Thread "SSLList
    enThread.Default" listening on port 7502>
    <Aug 5, 2003 1:24:46 PM EDT> <Notice> <WebLogicServer> <000354> <Thread "ListenT
    hread.Default" listening on port 7501>
    <Aug 5, 2003 1:24:47 PM EDT> <Notice> <WebLogicServer> <000329> <Started WebLogi
    c Admin Server "e2eServer" for domain "e2eDomain" running in Production Mode>
    <Aug 5, 2003 1:24:48 PM EDT> <Notice> <WebLogicServer> <000365> <Server state
    ch
    anged to RUNNING>
    <Aug 5, 2003 1:24:48 PM EDT> <Notice> <WebLogicServer> <000360> <Server started
    in RUNNING mode>
    please help me, urgent
    Thanks in advance
    Domain problem---------------------------------------------
    I created WLI domain like this is it correct ?
    Next I used Quick start's --Configure New Server
    then single server option radio selected
    then
    single server name--myserver
    server listner address---????????? please tell me
    server listening port 7001
    ssl listnening port 7002
    username bala
    password subramaniam
    verify password subramaniam
    c:\bea\user_projects\CIBC
    configure database mail--
    email address- [email protected]
    email host: what need to give ??????? please tell me----
    after I created domain called CBC it is in the
    c:\bea\user_projects\CBC
    then I saw it consists
    1)wlai folder
    2)dbinfo
    3)application
    4)keys
    5)scripts
    setdatabase.cmd
    startweblogic.cmd
    startmanagedweblogic.cmd
    setwlidomaindata.cmd
    wliconfig.cmd
    checkdomain.cmd
    Wliconfig.jar
    startweblogic.cmd
    stopweblogic.cmd
    I try to startweblogic.cmd it open and closed no action
    please tell me what is the problem????????????
    with regards
    bala

        Oh boy! Let me see what's going on. Are you using the VZW Cloud or the BUA app? Please try downloading the VZW Cloud app if you dont already have it. And once downloaded. Tap the 3 bars in the upper corner and go down to "TOOLS", then tap "RESTORE CONTENT". That should do it!
    VanetrisC_VZW 
    Follow us on Twitter @VZWSupport

  • I recently updated my ipad 2 to ios 7,evrything is okay but cant sign into my icloud,when i tried it shows "unable to connect to the server"...is this because of my intetnet connection or else?????

    I recently updated my ipad 2 to ios 7,evrything is okay but cant sign into my icloud,when i tried it shows "unable to connect to the server"...is this because of my intetnet connection or else?????please help me

    Finally it got fixed after days automatically may be so relieved

  • HT204053 I keep getting a message to accept the terms and conditions of icloud and when I click on it it tells me the "unable to connect to the server."

    I updated to ios 7 and keep getting a message to accept the terms and conditions of icloud and when I try to do this, I get the message "unable to connect to the server".  This message pops up quite frequently.

    GB
    Message was edited by: gail from maine

  • I have a 5th generation iPod touch that is suddenly "unable to connect to the server", not entirely sure what this means but I'm unable to connect to the internet even though I'm connected to Wifi. Can't connect to iTunes on my pc either. Any input?

    I have a 16GB iPod touch that suddenly stopped connecting to the internet last night. Everytime I try to get mail, or access anything with Safari I get a message saying that it can't connect to the server. Also I've plugged it in to my home computer but it won't connect to iTunes either. I haven't updated to iOS8 yet as I didn't have enough space for it and I had planned on deleting all my music files, updating the software and putting whatever music I could fit back on to the device afterward, but now I'm hesitant to do that as I have no way to get any of the files back onto the device. Could this be because I haven't updated to iOS8 yet? I've been having other problems such as apps crashing unexpectedly lately as well, for example my music shuts off randomly and apps such as Twitter and Tumblr and a few others crash on launch. I'm definitely not a genius when it comes to technology by any means, so I have no idea what's causing this problem or how to fix it, any help would be greatly appreciated!

    Does the iOS device connect to other networks? If yes that tend to indicate a problem with your network.
    Does the iOS device see the network?
    Any error messages?
    Do other devices now connect?
    Did the iOS device connect before?
    Try the following to rule out a software problem:                
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Power off and then back on your router
    .- Reset network settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections
    - Wi-Fi: Unable to connect to an 802.11n Wi-Fi network      
    - iOS: Recommended settings for Wi-Fi routers and access points
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    If still problem and it does not connect to any networks make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

  • Unable to connect to the server - windows sockets

    //////socket connector method////
    bool SocketConnecter::connect(const std::string& ip, size_t port)
    size_t uport = htons(port);
    std::string sPort = toString(uport);
    // Resolve the server address and port
    const char* pTemp = ip.c_str();
    iResult = getaddrinfo(pTemp, sPort.c_str(), &hints, &result); // was DEFAULT_PORT
    if (iResult != 0) {
    Verbose::show("\n -- getaddrinfo failed with error: " + toString(iResult), always);
    return false;
    // Attempt to connect to an address until one succeeds
    for (ptr = result; ptr != NULL; ptr = ptr->ai_next) {
    char ipstr[INET6_ADDRSTRLEN];
    void *addr;
    char *ipver;
    // get pointer to address - different fields in IPv4 and IPv6:
    if (ptr->ai_family == AF_INET) { // IPv4
    struct sockaddr_in *ipv4 = (struct sockaddr_in *)ptr->ai_addr;
    addr = &(ipv4->sin_addr);
    ipver = "IPv4";
    else { // IPv6
    struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)ptr->ai_addr;
    addr = &(ipv6->sin6_addr);
    ipver = "IPv6";
    // convert the IP to a string and print it:
    inet_ntop(ptr->ai_family, addr, ipstr, sizeof ipstr);
    printf("\n %s: %s", ipver, ipstr);
    // Create a SOCKET for connecting to server
    socket_ = socket(ptr->ai_family, ptr->ai_socktype, ptr->ai_protocol);
    if (socket_ == INVALID_SOCKET) {
    int error = WSAGetLastError();
    Verbose::show("\n -- socket failed with error: " + toString<int>(error), always);
    return false;
    iResult = ::connect(socket_, ptr->ai_addr, (int)ptr->ai_addrlen);
    if (iResult == SOCKET_ERROR) {
    socket_ = INVALID_SOCKET;
    int error = WSAGetLastError();
    Verbose::show("WSAGetLastError returned " + toString(error));
    continue;
    break;
    freeaddrinfo(result);
    if (socket_ == INVALID_SOCKET) {
    int error = WSAGetLastError();
    Verbose::show("\n -- unable to connect to server, error = " + toString(error));
    return false;
    return true;
    /////////Test stub////
    int main()
    title("Testing Socket Client", '=');
    try
    Verbose v(true);
    SocketSystem ss;
    SocketConnecter si;
    while (!si.connect("localhost", 9080))
    Verbose::show("client waiting to connect");
    ::Sleep(100);
    title("Starting string test on client");
    clientTestStringHandling(si);
    title("Starting buffer test on client");
    clientTestBufferHandling(si);
    si.sendString("TEST_STOP");
    Verbose::show("\n client calling send shutdown\n");
    si.shutDownSend();
    catch (std::exception& ex)
    Verbose::show(" Exception caught:", true);//always = true
    Verbose::show(std::string("\n ") + ex.what() + "\n\n");
    I am trying to connect to the server, but the connector method shows the message "unable to connect to server" 
    While debugging i found the iResult to be -1 which makes the socket INVALID_SOCKET
    Kindly help resolve this

    Hi askatral,
    connect function can return invalid_socket for many reasons, what does the function WSAGetLastError return?
    There are some Variables that I cannot find how it is declared, like "socket_" and "ptr". So I cannot check if there is anything wrong in your code.
    Maybe this sample in the document of connect function is helpful for this issue:
    https://msdn.microsoft.com/en-us/library/windows/desktop/ms737625(v=vs.85).aspx
    Best regards,
    Shu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Customer Outstanding line item reversal

    Hi Experts... As per Clients requirement we developed a report for customer Outstanding Payments.  Which will displays the customers bills sequential.  When ever they receive money post the transactions as per Outstanding bill wise. Now my problem is

  • Problem downloading .xls file

    Hi All, Im getting problem when trying to export a spread sheet. Initially teh filename was hardcoded and so it was working fine in IE. The code then was response.setHeader("Content-disposition", "attachment; filename=Details.xls");      outStream.wr

  • Spot remover tool / healing brush. How do I get the brush to show up and work??

    It seems I can only get the spot remover tool to work on certain photos and in certain areas of said photos . On the one picture I really need this for--where the problem started--I had used it once without much success (it was working then, but I di

  • How do I go about keeping Contacts and Apps Separate on 2 Smartphones on my Account?

    I may be over thinking this.  I have two phones, a Galaxy S4 and Galaxy S3 active on the same account each having their own phone number. When backing up and storing contacts and apps,  I would like to keep each separate from the S3 and vice versa. 

  • Scope of List in ME3M, Vendor List per Material Group

    Dear Experts, In ME3M, ME3L or ME3C, Can we define one of the criterias in F4 list of the scope of list as PR (Non-Service) only during searching Purchasing Documents? Is it possible to adapt material group and vendor list  with corresponding validit