Again FRM-41213: Unable to connect to Report Server

Hi all
I've been fighting with this problem a week, but I can not understand why my form, which works fine in the Oracle DS Report Server, can not run the report in the Oracle AS.
I'm using the Oracle AS 10g. All forms and reports are done in the DS 10g too. All testing stuff I've made at once:
1. rwclient works good
2. rwservlet works too
3. SSL is switched off
The report server, which I use is in-proc sservice (installed during the installation of AS). I did not make any other service of reports - I think it must work too.
I've made such code:
PROCEDURE RUN_REPORT(pReportParams Report_Params_Type)
AS
lParamList ParamList;
lReport REPORT_OBJECT;
lReturn VARCHAR2(100);
lRepServer VARCHAR2(100);
lHost VARCHAR2(20);
lPort VARCHAR2(6);
lURLStr VARCHAR2(100);
lStatus VARCHAR2(100);
ljobID VARCHAR2(100);
BEGIN
     lReport := FIND_REPORT_OBJECT(pReportParams.ReportName);
     TOOL_ENV.GETVAR('REPORTSERVERNAME', lRepServer);
     IF TRIM(lRepServer) IS NULL THEN
          SHOW_ERROR_MESSAGE('Report server name is not defined in the .env file');
     ELSE
          lRepServer := TRIM(lRepServer);
     END IF;     
     TOOL_ENV.GETVAR('HOSTNAME', lHost);
     IF TRIM(lHost) IS NULL THEN
          SHOW_ERROR_MESSAGE('Report server host is not defined in the .env file');
     END IF;     
TOOL_ENV.GETVAR('REPORTSERVERPORT', lPort);
     /*IF TRIM(lPort) IS NULL THEN
          SHOW_ERROR_MESSAGE('Report server port is not defined in the .env file');
     END IF;     */
     IF ID_NULL(lReport) THEN
          Show_Error_Message('Report '||pReportParams.ReportName||' is not found');
     END IF;     
     lParamList := GET_PARAMETER_LIST('REPORT_PARAMS');
     IF NOT ID_NULL(lParamList) THEN
          DESTROY_PARAMETER_LIST(lParamList);
     END IF;     
     lParamList := CREATE_PARAMETER_LIST('REPORT_PARAMS');
SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_EXECUTION_MODE,BATCH);
SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_COMM_MODE, ASYNCHRONOUS);
SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_DESTYPE, CACHE); --cache/printer
SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_DESFORMAT, pReportParams.Format);
SET_REPORT_OBJECT_PROPERTY(lReport, REPORT_SERVER, lRepServer);
lReturn := RUN_REPORT_OBJECT(lReport, lParamList);
ljobID := SUBSTR(lReturn, LENGTH(lRepServer) + 2, LENGTH(lReturn));
IF ljobID IS NOT NULL THEN
lStatus := REPORT_OBJECT_STATUS(lReturn);
WHILE lStatus in ('RUNNING','OPENING_REPORT','ENQUEUED')
LOOP
lStatus := REPORT_OBJECT_STATUS(lReturn);
END LOOP;
IF lStatus = 'FINISHED' THEN
     IF TRIM(lPort) IS NOT NULL THEN
lURLStr := 'http://'||lHost||':'||lPort||'/reports/rwservlet/getjobid'||ljobID||'?server='||lRepServer;
     ELSE
          lURLStr := 'http://'||lHost||'/reports/rwservlet/getjobid'||ljobID||'?server='||lRepServer;
     END IF;     
     SHOW_INFO_MESSAGE(lURLStr);
WEB.SHOW_DOCUMENT(lURLStr, '_blank');
ELSE
Message('Report can not be run with status '|| lStatus);
END IF;
END IF;
DESTROY_PARAMETER_LIST(lParamList);
END;     
END;
The parameters: REPORTSERVERNAME, HOSTNAME, REPORTSERVERPORT are decribed in the env file. the name of the server is defined correctly.
I noticed that the procedure
lReturn := RUN_REPORT_OBJECT(lReport, lParamList);
returns <server_name_0>. In the result, the job=0 - I think the forms service can not access to the report service, but I can not understand why.
Could anyone help me?
Thanks in advance

1) pls make sure inproc server is up
inproc server is hosted in oc4_bi_forms j2ee container. so oc4j_bi_forms should also be up
give
http://host:port/reports/rwservlet/getserverinfo?server=server_name
and you can see status of server. (or you can in oracle enterprise manager)
You can also see status of submitted jobs using
http://host:port/reports/rwservlet/showjobs?server=server_name
2) any reports servlet command will automatically start inproc server.
but submitting a request thru run_report_object will not make it start automatically
[    All Docs for all versions    ]
http://otn.oracle.com/documentation/reports.html
[     Publishing reports to web  - 10G  ]
http://download.oracle.com/docs/html/B10314_01/toc.htm (html)
http://download.oracle.com/docs/pdf/B10314_01.pdf (pdf)
[   Building reports  - 10G ]
http://download.oracle.com/docs/pdf/B10602_01.pdf (pdf)
http://download.oracle.com/docs/html/B10602_01/toc.htm (html)
[   Forms Reports Integration whitepaper  9i ]
http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
---------------------------------------------------------------------------------

Similar Messages

  • Error calling report FRM-41213 unable to connect to Report Server

    Hi,
    I have installed Oracle Database 10g R2 and Oracle Developer 10gR2.
    I installed it in both Windows 2000 SP4 and Windows XP SP2.
    I would like to call a Report using a button inside Oracle Form.
    I create my own Report Server, using : rwserver server=repsrv
    A Java-based window appear OracleAS Reports Sevice, and showed that repsrv is ready.
    In Form (inside a button -> WHEN-BUTTON-PRESSED) :
    1. Using RUN_REPORT_OBJECT()
       rep_id := find_report_object('REPORT10');
         if not id_null(rep_id) then
           v_rep := run_report_object(rep_id);
         else
              message('Null');
       end if;
       a. If I did not specify the name of the Report Server in Reports node of Form's property object
    (I leave it blank)
    The following error appear :
    FRM-41211: Integration error, SSL failure running another product
    b. If I specify the name of the Report Server : repsrv
    The following error appear :
    FRM-41213: Unable to connect to Reports Server repsrv
    2. Using WEB.SHOW_DOCUMENT()
    a. If did not I specify the server name in the parameter
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||,'_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    b. If I specify the server name in the parameter --> server='repsrv'
    WEB.SHOW_DOCUMENT('http://localhost:8889/reports/rwservlet/getjobid'|| SUBSTR(v_rep,INSTR(v_rep,'_',-1)+1)||'?'||'server=repsrv','_blank');Another web browser appear and the following error appear :
    REP-51002: Bind to Reports Server repsrv failed
    In Report :
    If I try to navigate manually to :
    1. http://localhost:8889/reports/rwservlet using web browser.
    It showed OracleAS Report Services - Servlet Command Help page.
    2. http://localhost:8889/reports/rwservlet?userid=scott/tiger@orcl&report=D:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server rep_<computer_name> failed
    3. Finally,
    http://localhost:8889/reports/rwservlet?server=REPSRV&userid=scott/tiger@orcl&report=C:\PRACTICE\FORM\MODULE1.JSP&destype=cache&desformat=html
    The following error occured
    REP-51002: Bind to Reports Server repsrv failed
    4. Any attempt to different command (i.e showenv, showjobs, etc) seems failed
    If I did not specify the server then REP-51002: Bind to Reports Server rep_<computer_name> failed
    If I specify the server - 'repsrv' then REP-51002: Bind to Reports Server repsrv failed
    5. I have tried to use rwrun in command line.
    rwrun report="D:\My Documents\form\module1.jsp" userid=scott/tiger@orcl destype=file desformat=pdf desname="D:\My Documents\form\module2.pdf"
    The PDF file created and it looks exactly as the web layout as in Oracle Report Builder (Run Web Layout CTRL-R)
    Question :
    1. What supposed to be done?
    The Report server is ready, but the web browser seems unable to connect to Report Server.
    2. Can we used or call or executed an executable command line from Form (using PL/SQL inside button)?
    Any help would be grateful.
    Many thanks,
    Buntoro

    Hi,
    Problem solved.
    I got the solution from another post.
    Re: REP-51002: Bind to Reports Server rep failed
    Here are the step I did.
    Note : Please make backup for the following file : rwnetwork.conf
    - In file rwnetwork.conf, remove or commented the following
    <multicast channel="228.5.6.7" port="14021" timeout="1000" retry="3"/>
    - And then uncommented
    <namingService name="Cos" host="%NAMING_HOST%" port="%NAMING_PORT%"/>
    - replace the
    %NAMING_HOST% with your computer name or specify an IP address
    %NAMING_PORT% with 14021
    It should look like this :
    <namingService name="Cos" host="blahblah" port="14021"/>
    - I did not change the : name="Cos", since I do not understand what does it for
    - Save you changes.
    - Start the OC4J.
    - Find the location of : namingservice.bat (on Windows platform)
    - execute in the command line : namingservice.bat 14021
    - finally start the report in the web browser
    Note:
    To shutdown the namingservice, use : namingservice.bat 14021 shutdown
    Regards.
    Buntoro

  • Unable to connect to reports server

    Hi All,
    I have an oracle forms application available on a machine server1 with url http://server1:7777/forms/frmservlet?config=x and the same application also available from another machine server2 with url http://server2:7777/forms/frmservlet?config=x
    The reports server name is stored in a database table as rep_server2.
    When i attempt to call a report from a form running on the server server2, the report call is successful. However when i attempt to call a report from the same form running on the server server1, i get an error FRM-41213: Unable to connect to the report server rep_server2
    How do i get the call to rep_server2 to work from the url http://server1:7777/forms/frmservlet?config=x
    Thanks

    1 Are the server 1 & 2 in the same network?
    2 Are the reports versions in 1 & 2 are same ?
    3 Could you use the below fmx and check if you are able to find the reports server from the server where
    it doesnt work
    [Finding List of reports Server from Forms|http://alexyscorp.com/products.htm]
    (Download the Reports Server Form (Windows FMX) )
    Rajesh
    Edited by: RajeshAlex on Sep 5, 2008 10:58 AM
    Edited by: RajeshAlex on Sep 5, 2008 10:59 AM

  • Unable to connect to report server - on Win 8.1 and SQL Server 2014

    unable to connect to report server on  Win 8.1 and SQL Server 2014 version
    Microsoft SQL Server 2014 - 12.0.2000.8 (Intel X86)
        Feb 20 2014 19:20:46
        Copyright (c) Microsoft Corporation
        Express Edition on Windows NT 6.3 <X64> (Build 9600: ) (WOW64)
     Thanks

    Hi,
    I suggest you check out the following article for the steps of installing
    Database Engine Services and SQL Server Reporting Service.
    http://msdn.microsoft.com/en-us/library/ms143711.aspx
    Best Regards,
    Tracy
    Tracy Cai
    TechNet Community Support

  • FRM-41213 Unable to connect to the report server

    I am converting an app from 6i to 9i. There are many reports, and I am trying, rather unsuccessfully, to get them to work. I have run the report server setup, and have the service started on my laptop. I am trying to use the following code to run a report attached as an object to my form, but I am getting the above 'cannot connect to report server' error. Can anyone point me in the right direction to resolve this problem??
    declare
    plistid          paramlist;
    pl_name     varchar2(20) := 'report_params';
    rep_id REPORT_OBJECT;
    v_rep varchar2(100);
    begin
    plistid := create_parameter_list(pl_name);
         add_parameter(plistid, 'p_rpt_catg', text_parameter, v_rpt_hdr1);
         add_parameter(plistid, 'p_rpt_name', text_parameter, 'REPORT80');
         add_parameter(plistid, 'p_db_ver', text_parameter, 'V33');
    rep_id := find_report_object('REPORT80');
    set_report_object_property(rep_id, REPORT_EXECUTION_MODE, RUNTIME);
    set_report_object_property(rep_id, REPORT_DESTYPE, SCREEN);
    set_report_object_property(rep_id, REPORT_COMM_MODE, SYNCHRONOUS);
    set_report_object_property(rep_id, REPORT_SERVER, 'dvlpserver');
    v_rep := run_report_object(rep_id,plistid);
    Thanks -- Jean.

    1) destype=screen is not allowed
    2) Please refer this forms-reports integration document which explains in detail about the integration
    http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    3) In particular refer the pages 41-43 which explains some common errors and troubleshooting
    4) Also look at info provided on things to take care while migrating from 6i -> 9i
    Thanks
    The Oracle Reports Team

  • Unable to connect to report server Error: Message : ErrorCode : 10061

    I have configured a report server oracle 10.1.0.2 app server on solaris 10. when the user tries to connect through the front end application web he gets the below error:
    Type : System.Net.WebException, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=
    Message : Unable to connect to the remote server
    Source : System
    Help link :
    Status : ConnectFailure
    Response :
    Data : System.Collections.ListDictionaryInternal
    Inner Exception
    Type : System.Net.Sockets.SocketException, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=
    Message : No connection could be made because the target machine actively refused it 10.10.1.180:4444
    Source : System
    Help link :
    ErrorCode : 10061
    SocketErrorCode : ConnectionRefused
    NativeErrorCode : 10061
    Data : System.Collections.ListDictionaryInternal
    TargetSite : Void DoConnect(System.Net.EndPoint, System.Net.SocketAddress)
    Can anyone please let me know which files or conf files I need to look at.
    I did not see any errors in the server trace files. The tnsnames look good. They connect to a oracle DB

    In the ssl.conf I put the listen port as 4444 ,
    but when I go to the OEM of the report server - ports , it does not show me the port used as 4444 , the field is blank.
    is there any place I need to make the port change to 4444
    thanks

  • Unable to connect to report server

    I am using developer suite 10g.
    i am able to run form and report.
    but when i want to run report through form (when button press) then i got error message Unable to connect report server.
    can i run report from form 10g without application server.
    my mail id is [email protected]
    Thanks in advance
    sachin malik

    Make sure your OC4J Instance is running for reports.

  • 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 XL Reporter in 2007 B

    Hi Experts,
    I'm facing a problem in XL Reporter as whenever I click on Tools-XL Reporter, I get an error message as
    Unable to connect XL Reporter
    Error! User Authentication Failed
    Cause: Invalid use of Null
    I've upgraded from 2005 B to 2007 B and database is SQL Server 2005.
    Help is needed urgently.
    Thanks & Regards,
    Kaps.

    Hi Kaps,
    Based on the error message, it is User Authentication problem.  Have you checked if the user has proper User Authentication?
    Thanks,
    Gordon

  • Cannot open Report Manager URL -- "Unable to Connect to Remote Server"

    Hi, 
    I have recently installed SSRS 2012 on my remote server (Native Mode). I had the default configurations set except for the port has been changed to "8081". I created an Inbound Rule in Firewall to make sure it's enabled. 
    I'm unable to connect to the report manager locally at all, I got a Domain\username authentication and the credentials are never accepted locally.  I tried accessing my report server using the remote server host name and I was successfully logged in,
    however,  I got a message "Unable to Connect to the remote server". 
    I checked the log folder and there was no files created for my unsuccessful login. 
    I've been stumbling with this issue for almost a week, Any ideas or suggestions ?

    Hi SB User,
    Per my understanding that after you change the IP to "8081" then you can't connect to the report server both locally and remotely, right?
    Is that mean before you have changed the IP, everything works fine and did you got some pop up window ask for credential when you connect to the report server?
    You issue can be caused by many factors, please try to check details information below and do some configurations:
    Go to Reporting Services Configuration Manager and change the account to "Network Service" to see if it will works fine.
    Change the account to domain account and re-enter the username and password to see if it works fine. 
    Remove the SSL if configured.
    Go to C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config 
    In rsreportserver.config Change the SecureConnectionLevel value to "0":
    <Add Key="SecureConnectionLevel" Value="0"/>
    Stop and restart the report services instance to see if you can connect to report server.
    please also Using IP instead of computer name as the <servername> in the URL to have a test.
    If your issue still exists, please try to change the IP to have a test.
    If you still have any problem,please fee free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • 11.1.2.0 forms cannot connect to report server

    11.1.2.0
    I have a new install of 11.1.2.0 forms and reports. I am using my 10g fmb and rdf and pll files all recompiled to 11g. So, the forms, reports, plls are all coded correctly and have worked for years as 10g forms. The 11g forms run fine and so does webutil in weblogic 10.3.6. However, I cannot get the forms to call the reports. I have changed the rwserver.conf file for both the in-process and stand alone servers to point to the reports rdf/rep path. I can call reports from a url and see the report successfully run in report queue so I know the path is set correctly to the reports. I know run_report_object in the form is returning 0 (zero) and always trying to "getjobid0". The form returns frm-41212: Unable to connect to the report server. I have set my report server name in the default.env file to the in-process server. Like I said the form has worked for years as a 10g form calling reports. This has got to be a setting somewhere that I havent done. Any ideas?

    Dear Friend,
    Could you please show me the code for calling the report??
    maybe i can help you.

  • 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

  • OD users unable to connect to a server via afp

    We have a Mac OS 10.9.2 with Server 3.1.2.  We are able to access the server for file sharing via smb with OD accounts just fine.  But we are unable to connect to the server using afp with any OD account, only local system accounts.  I have tried turning off SMB for all of the file shares, but this did not help resolve the issue.
    The log shows a login attempt immediately followed by a logout.
    Aug  7 13:40:33 server.company.com AppleFileServer[736] <Info>: IP 192.168.101.2 - - "Login -----" -5023 0 0
    Aug  7 13:40:33 server.company.com AppleFileServer[736] <Info>: IP 192.168.101.2 - - "Logout -----" -5023 0 0
    I did edit out the user and the server name.
    Any help would be greatly appreciated.
    Thank you.

    Many Open Directory problems can be resolved by taking the following steps. Test after each one, and back up all data before making any changes.
    1. The OD master must have a static IP address on the local network, not a dynamic address.
    2. You must have a working DNS service, and the server's hostname must match its fully-qualified domain name. To confirm, select the server by name in the sidebar of the Server application window, then select the Overview tab. Click the Edit button on the Host Name line. On the Accessing your Server sheet, Domain Name should be selected. Change the Host Name, if necessary. The server must have at least a three-level name (e.g. "server.yourdomain.com"), and the name must not be in the ".local" top-level domain, which is reserved for Bonjour.
    3. The primary DNS server used by the server must be 127.0.0.1 (that is, itself) unless you're using another server for internal DNS. The only DNS server set on the clients should be the internal one, which they should get from DHCP if applicable.
    4. Follow these instructions to rebuild the Kerberos configuration on the master.
    5. If you use authenticated binding, check the validity of the master's certificate. The common name must match the hostname and domain name. Deselecting and then reselecting the certificate in Server.app has been reported to have an effect in some cases.
    6. Unbind and then rebind the clients in the Users & Groups preference pane. Use the fully-qualified domain name of the master.
    7. Reboot the master and the clients.
    8. Don't log in to the server with a network user's account.
    9. As a last resort, export all OD users. In the Open Directory pane of Server, delete the OD server. Then recreate it and import the users. Ensure that the UID's are in the 1001+ range.

  • 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

  • SSRS 2008 - Unable to connect to remote server

    Win2k3 R2 SP2/SQL Server 2008 instance with SSRS/Visual Studio 2008
    I installed SQL 2008 and SSRS with native mode default configuration.
    All SQL 2008 services are running under "NT Authority\Network Service" account.
    When i try to deploy a new report, I get the "Unable to connect to remote server" error.
    The deploy operation creates empty folders on the web server (hosted by the SQL Server 2008 service)
    for e.g.
    my instance name is <machinename>$sql2008. i configured the WebService URL and the Reports Manager URL to port 85
    the deploy from VS creates ssrs2008Test folder and a Shared Data Sources folder in the following virtual directory
      - Report Manager URL: http://<machinename>:85/Reports_SQL2008/
      - Web Service URL: http://<machinename>:85/ReportServer_SQL2008
    however these folders are empty w/ no .rdl or .rds file. and i get the "Unable to connect to remote server"  error in Visual Studio 2008 when i deploy it.
    is there something else i have to tweak in either the SQL Server/SSRS Configuration Manager or the Windows Server Settings(like port settings or group policy) to get the reports to work?
    thanks
    -vt

    SecureConnectionLevel = 2
    From logFile:
    appdomainmanager!DefaultDomain!740!08/29/2008-08:00:30:: i INFO: Appdomain:6 ReportServer_SQL2008_0-3-128644956308203194 started.
    appdomainmanager!ReportServer_0-3!740!08/29/2008-08:00:31:: i INFO: RS authentication mode is 5; effective ASP.NET authentication mode is Windows. vdir=/ReportServer_SQL2008.
    httpruntime!ReportServer_0-3!740!08/29/2008-08:00:31:: i INFO: Report Builder manifest file C:\Program Files\Microsoft SQL Server\MSRS10.SQL2008\Reporting Services\ReportServer\ReportBuilder\ReportBuilder_2_0_0_0\MSReportBuilder.exe.manifest not found.
    appdomainmanager!DefaultDomain!740!08/29/2008-08:00:31:: i INFO: Appdomain:6 ReportServer_SQL2008_0-3-128644956308203194 initialized (#2).
    webserver!ReportServer_0-3!740!08/29/2008-08:00:37:: i INFO: Reporting Web Server started
    resourceutilities!ReportServer_0-3!740!08/29/2008-08:00:37:: i INFO: Reporting Services starting SKU: Developer
    resourceutilities!ReportServer_0-3!740!08/29/2008-08:00:37:: i INFO: Evaluation copy: 0 days left
    resourceutilities!ReportServer_0-3!740!08/29/2008-08:00:37:: i INFO: Running on 1 physical processors, 4 logical processors
    runningjobs!ReportServer_0-3!740!08/29/2008-08:00:37:: i INFO: Running Requests Scavenger timer enabled: Next Event: 60 seconds.  Cycle: 60 seconds
    runningjobs!ReportServer_0-3!740!08/29/2008-08:00:37:: i INFO: Running Requests DB timer enabled: Next Event: 60 seconds.  Cycle: 60 seconds
    runningjobs!ReportServer_0-3!740!08/29/2008-08:00:37:: i INFO: Memory stats update timer enabled: Next Event: 60 seconds.  Cycle: 60 seconds
    library!ReportServer_0-3!1588!08/29/2008-08:00:38:: Call to GetItemTypeAction(/ssrs2008Test).
    library!ReportServer_0-3!1588!08/29/2008-08:00:39:: i INFO: Catalog SQL Server Edition = Developer
    crypto!ReportServer_0-3!1588!08/29/2008-08:00:39:: i INFO: Initializing crypto as user: NT AUTHORITY\NETWORK SERVICE
    crypto!ReportServer_0-3!1588!08/29/2008-08:00:39:: i INFO: Exporting public key
    crypto!ReportServer_0-3!1588!08/29/2008-08:00:39:: i INFO: Performing sku validation
    crypto!ReportServer_0-3!1588!08/29/2008-08:00:39:: i INFO: Importing existing encryption key
    library!ReportServer_0-3!740!08/29/2008-08:00:39:: Call to GetItemTypeAction(/Data Sources).
    library!ReportServer_0-3!1588!08/29/2008-08:00:39:: Call to GetItemTypeAction(/Data Sources/masterDB).
    library!ReportServer_0-3!740!08/29/2008-08:00:40:: Call to GetItemTypeAction(/ssrs2008Test/sp_who2).

Maybe you are looking for