Qaaws url connection issue

Dear All,
*Description of Problem :*
When i am entering the below URL link1 in the host definition at Qaas,then it is not able to accept it.Suppose if i change the URL like below link2 ,qaaws is accepting.
I need the expert help on this
Link1: http://tchbopd1.company.co.in:8080/dswsbobje/services/Session
Link2:http://tchbopd1:8080/dswsbobje/services/Session
I had check the same issue on another colleague system.Its working fine with above both links.
Product\Version\Service Pack\Fixpack (if applicable):
Bo Xi3.1 SP3 FP3.2
Relevant Environment Information (OS & version, java or .net & version, DB & version):
BO server-HP UX 11.31 Ia 64
Bo client-windows
  web application-Tomcat
Database-oracle
Steps to Reproduce (if applicable):
1.Open the Query as a web service tool(Qaaws)
2.Click on the host and add new entry,at the time of entering in the url  line check the above mentioned problem.
Regards,
Vinay
Edited by: BOCONSULT on Dec 24, 2010 5:15 AM

Hi Stratos,
Thanks for the reply.
I am showing below the  host entry  which i am using
ipaddress    host name
172.31.2133    company     company.co.in
in the qaaws url when i am entering  link1 below it is working.suppose if used the link2 it is not working.
link1:http://company:8080/dswsbobje/services/Session
link2:http://company.co.in:8080/dswsbobje/services/Session
Please suggest  on this.
Regards,
Vinay

Similar Messages

  • Map Viewer URL Connection Issue

    Hi,
    I have an UI project, for which i have created a Deployment Profile named 'adfXXXXXUI' nothing but created a adflibrary for that UI project.
    While creating the adf jar, i have come across an Option called 'Connections' .
    Here i have selected Connection Names Only ... means i will be getting all the names of the connections i have created & those will be reflected in my local connection.xml file.
    After configuring the rest of the params, i deployed my UI project to "deploy -> adfXXXXXUI.jar".
    And we have used this jar to integrate with another UI application ... And the taskflows avilable in the jar will be used in the other UI application.
    Now here is my problem ... Actually my connections.xml file has a URL Connection. This is how it looks like....
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <References xmlns="http://xmlns.oracle.com/adf/jndi">
    <Reference name="MapServer" className="oracle.adf.model.connection.url.HttpURLConnection" xmlns="">
    <Factory className="oracle.adf.model.connection.url.URLConnectionFactory"/>
    <RefAddresses>
    <XmlRefAddr addrType="MapServer">
    <Contents>
    <urlconnection name="MapServer" url="http://sbsys1.intra.schneider.com:8109/mapviewer"/>
    </Contents>
    </XmlRefAddr>
    </RefAddresses>
    </Reference><Reference name="snibuilddb" className="oracle.jdeveloper.db.adapter.DatabaseProvider" credentialStoreKey="snibuilddb" xmlns="">
    <Factory className="oracle.jdeveloper.db.adapter.DatabaseProviderFactory"/>
    <RefAddresses>
    <StringRefAddr addrType="subtype">
    <Contents>oraJDBC</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="user">
    <Contents>sni_guest</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="port">
    <Contents>3720</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="hostname">
    <Contents>uxsys186v</Contents>
    </StringRefAddr>
    <SecureRefAddr addrType="password"/>
    <StringRefAddr addrType="serviceName">
    <Contents>snit0.world</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="DeployPassword">
    <Contents>true</Contents>
    </StringRefAddr>
    <StringRefAddr addrType="oraDriverType">
    <Contents>thin</Contents>
    </StringRefAddr>
    </RefAddresses>
    </Reference>
    </References>
    All the taskflows avaialble in my jar using the URL connection which mentioned above. But the adflibray jar got created with a file named 'jar-connection.xml', where i can see <Reference/> as an empty Tag. Because i have selected connections name only as an option when creating the adflibrary for my UI.
    Hence it is appearing so ... But when i added this jar to the other application, i have dragged & dropped the taskflows as a region on to the JSPX page. And i started running the page. On the page .... i can see only the data which is not making use of MapServer connection defiition. Along with that, some maps needs to rendered .. but that is not happening. Rest of the page with the filter critieria is being displayed properly.
    Now i have selected Include Connection Details as an option, by editing the adfLibrary Deployment profile of the UI & redeployed & found the same thing. Like, though i specify the Include Connection Details as an option ... i did not see those URL connection details in my jar-connection.xml file.Still it is not working.
    All the taskflows inside the jar are trying to use this URL connection from jar-connection.xml, which is avaiable inside the adfLibUI.jar.
    I tried with a scenorio some thing like ... For the application to which i have added this adfUILibrary, there itself i created a URLConnection ... but it did not worked as well.
    Requesting you to let me know how can i get avail of my URL connection in to my jar ...
    Thanks & Regards,
    Kiran Konjeti

    This is purely ssl issue. You can try adding the below logic first.. This code basically sets ssl properties for us.
    import java.security.Security;
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty("java.protocol.handler.pkgs");
    if (handlers == null) {
        // nothing specified yet (expected case)
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
    else {
        // something already there, put ourselves out front
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol|".concat(handlers));     
    System.setProperties(properties);
    Below you start your code....

  • HttpsURLConnection URL connection issue

    Hi All,
    I need to create URL connection with HTTPS URL. I can run Main java class successfully in machine which hosted in SAP Java server, but fail to run integrate it with e-commence application. When depployed in to SAP Java server cannot open HttpsURLConnection and always return CalssCastexception. However same code run as Java Main class
    Is this can be a (SSL) Handshake? or is this SSL issue?
    MyCode:
    String httpsURL = "https://encrypted.google.com/";
        URL myurl = new URL(httpsURL);
        HttpsURLConnection con = (HttpsURLConnection)myurl.openConnection();
        InputStream ins = con.getInputStream();
        InputStreamReader isr = new InputStreamReader(ins);
        BufferedReader in = new BufferedReader(isr);
        String inputLine;
        while ((inputLine = in.readLine()) != null) {
          System.out.println(inputLine);
        in.close();
    Thank You

    This is purely ssl issue. You can try adding the below logic first.. This code basically sets ssl properties for us.
    import java.security.Security;
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    Properties properties = System.getProperties();
    String handlers = System.getProperty("java.protocol.handler.pkgs");
    if (handlers == null) {
        // nothing specified yet (expected case)
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
    else {
        // something already there, put ourselves out front
        properties.put("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol|".concat(handlers));     
    System.setProperties(properties);
    Below you start your code....

  • Data connection issue - Unable to load URL

    Hi Folks,
    when I am trying to import URL (developed based on Query as Web services) in Xcelsius 2008, I am getting error "Unable to load URL".
    My other teammates are able to upload using their own laptop, so it indicates there is no issue on server side. I can open document saved in BO enterprise.
    Please advise if you have seen this issue.
    Thx...Ravi

    - has this been tried from server machine where BO is installed?
    >> I feel server site is all good... but I will try to login (remotely..and verifies this)
    - has this been tried from a different client machine?
    >>> Yes it is working for another team member (from his client laptop) whose user-id/access etc is same as mine.
    - are all client and server products at the same patch level?
    >> Yes
    - Is this specific to this QaaWS URL or is this issue across different Universes/URLs?
    >> still learning Xcelsius, so need to try other tools
    - Has this been tried using eFashion Universe?
    >> NO. can you tell how to do that?
    - Has this ever worked before?
    >> trying for first time from my lapop
    misc -
    I can open the document saved on BOBJ Enterprise server...
    URL looks good on web browser
    I feel it is more related to browser - security/setting.
    I even reset default internet explorer setting... still same issue.
    thx..ravindra

  • Connectivity Issue

    Hi All
    Probably due to connectivity issue from Adapter engine to Integration engine, we have encountered with the following error in audit log of channel monitoring. Can any have an idea where we look for right settings?
    "Transmitting the message to endpoint http://<Host name : service number (8000)>/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: java.net.ConnectException: Connection refused"
    I tried to surf SDN, however I didn't get exact solution. Thanks in advance

    Hi,
    check if this 8000 is the same port used in SMICM-Services-http port,sxmb_admin-integration engine configuration-pipeline URL and  exchange profile-http ports.it should be same 8000.
    thanks.

  • Regarding URL Connection Creation.

    Hi,
    I am trying to create a URL Connection in JDev 11.1.2, and using the following JDev RSS URL:
    http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/132361.xml
    However, when I am testing the connection, its saying "Specified URL Connection is not accessible.".
    However, the same link when I access from the browser, its accessible.
    I have tried setting the proxy as well but same result.
    Is this a known issue or am I missing something?
    Thanks,
    Lalit.

    Lalit,
    It is almost certainly a problem with your proxy configuration, as it works fine for me (with no proxy in between).
    John

  • SSRS/SharePoint Migration 2010 to 2013 connection issues

    We are currently attempting to move our SharePoint 2010 to 2013 and SSRS Information. The first attempt at this we were unable to get SSRS to show up in Central Admin. We decided to rebuild all servers and re-installed everything.
    This time we have SSRS showing up in Central admin and we are able to run some reports from our sites now. In our 2010 environment we are using "Windows authentication (integrated) or Sharepoint user" option with SharePoint Lists. I am unable to
    get this to work in our 2013 Environment, the stored credentials with windows authentication will work however.
    I have read t through many different books, MS Guides, Blogs, Forums, etc but unable to solve this issue.
    I have tried editing the rsreportserver.config to match our Production, did not help. (also tried different authentications)
    I found an article saying to change the "Forms" Auth in some config files to "Windows" did not help
    When I try to go to our \\localserver\reportserver (appserver) I get a blank page with this info:
    HTTP/1.1 200 OK
    Server: Microsoft-IIS/8.5
    Date: Fri, 21 Nov 2014 22:30:03 GMT
    Connection: close
    I have tried going into Central Admin -> General Application Settings -> Report Server Integration. and fill out this information also but receive this error:
    Failed to establish connection with report server. Verify the server URL is correct or review ULS logs for more information. Product area: SQL Server Reporting Services, Category: Configuration
    Pages
    I am not sure if I have missed some step along the way of migrating and setting up this information. Any help or other things to try would be very helpful. 
    Thanks!

    Hi young99,
    According to your description, you get connection issue after migration from SharePoint 2010 to SharePoint 2013. Right?
    In this scenario, we are not clear how you did the migration. Please follow these steps and check if you miss anything:
    Restore Reporting Services encryption keys
    Backup the SharePoint content databases and detach it.
    Backup Reporting Services catalog database.
    Copy Reporting Services configuration files.
    Restore SharePoint Content databases to the new farm.
    Restore the Reporting Servicesencryption keys.
    Restore the SQL database that is the Reporting Services catalog database (ReportServer).
    Restore Reporting Services configuration files.
    Create a new Reporting Services service application.
    For more information, please see:
    Migrate a Reporting Services Installation (SharePoint Mode)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • "Safari can't find the server" - connection issues under Lion

    Hi there,
    Since upgrading to Lion, Safari has been displaying this odd and annoying behaviour, where, for some links to some web resources (like maybe 2 clicked links out of 10), it throws up a grey error page telling me it can't find the server (screenshot below):
    Normally, this error would be evidience of an intenet connection issue (but it isn't). If I immediately try to find the same resource via another browser (Firefox or Chrome), those other browsers navigate to the site absolutely fine. Although, occasionally (though with less frequency) I'm also getting a similar "Can't find stuff" error with Chrome too.
    In the Safari address bar (is this significant?) there isn't even a URL, but a file path to file:///Applications/Safari.app/Contents/Resources... what does that mean?
    Hints from other threads would indicate that this is a Firewall issue, or maybe there's another third-party app causing problem, rather than a problem with Safari under Lion specifically.
    But I'm really bugged and irrittate by this. Anyone had a similar experience? Anyone with any ideas? How might I go about finding out what's causing this and fixing it? 
    Best wishes,

    It's most likely a problem with corrupted files in the Safari Cache or corrupted cookies.
    Go to Safari menu bar
    Click on Safari
    Click "Empty Cache"
    Restart Safari
    If the problem persists...
    Go to Safari -> Preferences
    Go to privacy
    Click "Remove All Website Data"
    Restart Safari
    Cheers - Lupunus

  • Powerpoint web sharing fails with "some presenting features are unavailable due to server connectivity issues"

    Hi,
    I am having problems getting PowerPoint sharing working with Lync 2013. My setup is as follows
    Lync 2013 Enterprise pool (november 2013 updates) on Windows 2012 and 
    Windows 2012 webapp farm
    Kemp HLB
    Everything is working ok, including whiteboards and application sharing, but i cannot get the powerpoint sharing to work. I always get the "some presenting features are unavailable due to server connectivity issues" for internal or external
    users.
    The webapp looks healthy and there are no errors in the Lync server or the webapp event log. Discovery urls can be accessed and i have put the .net 3.5 as suggested in a few forums. 
    When a user starts the PowerPoint it successfully loads the file to the Lync file share and request goto the webapp server. I am using a HLB which shows me that requests are forwarded to the webapp farm. I have removed the HLB for testing and get the same
    results.
    I did log this with the forum a month or so ago, but I had a file upload issue then which is now solved, but the powerpoint sharing is not.
    any ideas?
    sg

    I ran some diags on the client and i managed to find an error. This was in the client debug logs when trying to start a powerpoint presentation
    54019;reason="The presentation at the WAC URL does not exist.";ClientType=Lync;Build=15.0.4551.1007
    The url in the next line shows the paths which have the correct toplevel URLS (have changed the domain name in the pasted text) 
    Url="https://webapp.domain.com/m/ParticipantFrame.aspx?a=0&amp;e=true&amp;WopiSrc=https%3A%2F%2Flyncpool.domain.com%2FDataCollabWeb%2Fwopi%2Ffiles%2FD-1-D0F5EA&amp;access_token=AAMFEPAUXKWO9TdVleKl-gn7iQAGEKvoSrQNqS1_i2tD90k7zj2BEPAUXKWO9TdVleKl-gn7iQCCAn40gyABxKA-5znlMODU0Kuz8ZHOBR7Q_183_BeUZcSWhjdOOIYIrg5RP8De0AgIDURhdGFDb2xsYWJXZWI&amp;&lt;fs=FULLSCREEN&amp;&gt;&lt;rec=RECORDING&amp;&gt;&lt;thm=THEME_ID&amp;&gt;&lt;ui=UI_LLCC&amp;&gt;&lt;rs=DC_LLCC&amp;&gt;&lt;na=DISABLE_ASYNC&amp;&gt;"</diagHeader><progressReports/></error></reportError>
    sg

  • Lync mobile device connection issue

    Hello everybody,
    I'm implementing Lync Mobility and remote access in our organization. Remote access is workig fine. But mobile devices cannot connecting to Lync Server 2010. My topology is : 
    Reverse Proxy Server(IIS7 works fine) <--> Front End Server <--> Back End Server
    pool : pool1.lynctest.local
    internal web srvc : lyncinternalweb.lynctest.local
    external web srvc : lyncweb.lynctest.domain.com
    All internal and external DNS records created. Deployed internal CA and external internal web service certificates issued from internal CA. Also installed all root certificates on mobile devices and other remote machines. Below is log from android device.
    20 Mar 2014 10:53:27 INFO APPLICATION:SignIn. signInAsUserState=0, actualSessionState=0
    20 Mar 2014 10:53:27 INFO APPLICATION:Sending AutoDiscovery request (in sign-in sequence)
    20 Mar 2014 10:53:27 INFO TRANSPORT:setUsernamePasswordCredential changing credential: 
    20 Mar 2014 10:53:27 INFO TRANSPORT:Credential information: credType (1) signInName ([email protected]) domain () username ([email protected]) password.empty() (0) compatibleServiceIds(1)
    20 Mar 2014 10:53:27 INFO APPLICATION:Serialized sipuri= intUcwa= extUcwa= intADRoot= extADRoot= location=1 networkType=1
    20 Mar 2014 10:53:27 INFO APPLICATION:Storing 2 out-of-sync components took 49ms
    20 Mar 2014 10:53:27 INFO APPLICATION:Timer cancelled. OnResume = 0
    20 Mar 2014 10:53:27 INFO APPLICATION:Discover UCWA urls from https://lyncdiscover.lynctest.golomtbank.com & https://lyncdiscover.lynctest.golomtbank.com for sip:[email protected]
    20 Mar 2014 10:53:27 INFO APPLICATION:Extracted lynctest.golomtbank.com from sip:[email protected]
    20 Mar 2014 10:53:27 INFO APPLICATION:Starting Auto Discovery with urls https://lyncdiscover.lynctest.golomtbank.com?sipuri=sip:[email protected] and https://lyncdiscover.lynctest.golomtbank.com?sipuri=sip:[email protected]
    20 Mar 2014 10:53:27 INFO TRANSPORT:getSpecificCredential returning the following credential for credType (1) serviceId (4)
    20 Mar 2014 10:53:27 INFO TRANSPORT:Credential information: credType (1) signInName () domain () username () password.empty() (1) compatibleServiceIds(0)
    20 Mar 2014 10:53:27 INFO TRANSPORT:Added Request(UcwaAutoDiscoveryRequest) to Request Processor queue
    20 Mar 2014 10:53:27 INFO APPLICATION:Submitting new req. <unknown>
    20 Mar 2014 10:53:27 INFO TRANSPORT:Sent Request(UcwaAutoDiscoveryRequest) to Request Processor
    20 Mar 2014 10:53:27 INFO APPLICATION:Submitting Unauthenticated AutoDiscovery request to https://lyncdiscover.lynctest.golomtbank.com?sipuri=sip:[email protected]
    20 Mar 2014 10:53:27 INFO APPLICATION:CLogonSession::setNewActualState() state=1
    20 Mar 2014 10:53:27 INFO UcClientStateManager: New UI State: ActualState = IsSigningIn DesiredState = BeSignedOut  DataAvailable = false
    20 Mar 2014 10:53:27 INFO TRANSPORT:<SentRequest>
    20 Mar 2014 10:53:27 INFO TRANSPORT:To:https://lyncdiscover.lynctest.golomtbank.com?sipuri=sip:[email protected]
    20 Mar 2014 10:53:27 INFO TRANSPORT:HttpHeader:Accept application/vnd.microsoft.rtc.autodiscover+xml;v=1
    20 Mar 2014 10:53:27 INFO TRANSPORT:
    20 Mar 2014 10:53:27 INFO TRANSPORT:</SentRequest>
    20 Mar 2014 10:53:27 INFO TRANSPORT:Sending request(UcwaAutoDiscoveryRequest) to server type = 0
    20 Mar 2014 10:53:27 VERBOSE HttpConnection: post request: https://lyncdiscover.lynctest.golomtbank.com?sipuri=sip:[email protected]
    20 Mar 2014 10:53:27 VERBOSE HttpConnection: send request: https://lyncdiscover.lynctest.golomtbank.com?sipuri=sip:[email protected]
    20 Mar 2014 10:53:27 INFO APPLICATION:LogonSession::signIn() succeeded
    20 Mar 2014 10:53:27 INFO UcClientStateManager: New UI State: ActualState = IsSigningIn DesiredState = BeSignedIn  DataAvailable = false
    20 Mar 2014 10:53:27 VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.SigningInActivity
    20 Mar 2014 10:53:27 VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.SigningInActivity
    20 Mar 2014 10:53:27 VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.CredentialsActivity
    20 Mar 2014 10:53:27 VERBOSE ActivityMonitor: Activity Destroy: com.microsoft.office.lync.ui.options.CredentialsActivity
    20 Mar 2014 10:55:33 INFO APPLICATION:Called signOut() in state 1
    20 Mar 2014 10:55:33 INFO APPLICATION:Cancelling all requests
    20 Mar 2014 10:55:33 INFO APPLICATION:Serialized sipuri=sip:[email protected] intUcwa= extUcwa= intADRoot= extADRoot= location=1 networkType=1
    20 Mar 2014 10:55:33 INFO APPLICATION:Storing 2 out-of-sync components took 31ms
    20 Mar 2014 10:55:33 INFO APPLICATION:Timer cancelled. OnResume = 0
    20 Mar 2014 10:55:33 INFO APPLICATION:CLogonSession canceling all requests
    20 Mar 2014 10:55:33 INFO APPLICATION:CLogonSession::setNewActualState() state=0
    20 Mar 2014 10:55:33 INFO UcClientStateManager: New UI State: ActualState = IsSignedOut DesiredState = BeSignedOut  DataAvailable = false
    20 Mar 2014 10:55:34 INFO APPLICATION:Timer cancelled. OnResume = 0
    20 Mar 2014 10:55:34 INFO APPLICATION:Storing 1 out-of-sync Object Models took 22ms
    20 Mar 2014 10:55:34 VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.CredentialsActivity
    20 Mar 2014 10:55:34 VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.CredentialsActivity
    20 Mar 2014 10:55:34 VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.SigningInActivity
    20 Mar 2014 10:55:34 VERBOSE ActivityMonitor: Activity Destroy: com.microsoft.office.lync.ui.options.SigningInActivity
    20 Mar 2014 10:55:41 VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.CredentialsOptionsActivity
    20 Mar 2014 10:55:41 VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.CredentialsOptionsActivity
    20 Mar 2014 10:55:41 VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.CredentialsActivity
    20 Mar 2014 10:55:42 INFO APPLICATION:CMcxDataSynchronizer now in mode 1
    20 Mar 2014 10:55:42 INFO APPLICATION:Mode 1 scheduled to timeout in 30.000000s
    20 Mar 2014 10:55:42 INFO APPLICATION:No SendUpdate schedule action. timerStarted=0, timerNeedsToRun=0, channelState=0, timerAction=0
    20 Mar 2014 10:55:42 VERBOSE ActivityMonitor: Activity Create: com.microsoft.office.lync.ui.options.AboutActivity
    20 Mar 2014 10:55:42 VERBOSE ActivityMonitor: Activity Start: com.microsoft.office.lync.ui.options.AboutActivity
    20 Mar 2014 10:55:43 VERBOSE ActivityMonitor: Activity Stop: com.microsoft.office.lync.ui.options.CredentialsOptionsActivity
    Also I tested web services by web browser and they seem fine. I cannot find what's wrong with this. Please help me dears.
    Thank you

    The ports will be visible in the Netstat result after a connection has been setup by a mobile device.
    For details, you can check http://www.lync-blog.nl/?p=671&lang=en
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    Please follow the follow blog to troubleshoot external Lync Mobility connectivity issue step by step:
    http://blogs.technet.com/b/nexthop/archive/2012/02/21/troubleshooting-external-lync-mobility-connectivity-issues-step-by-step.aspx
    Lisa Zheng
    TechNet Community Support

  • ADF mobile url Connection

    Not able to make connection for the rest urls of the webcenter spaces(like rest urls to fetch activities list , discussion)
    Ex: Tried Connecting the url :http://localhost:8888/rest/api/resourceIndex with the basic authentication ,but got an exception message as:"Specified url is not accessible"
    Edited by: user12780347 on Nov 14, 2012 8:43 PM

    Hi, ADF Mobile uses the same URL Connection creation wizard as any other ADF application, so its behavior is not mobile specific. That said, you may want to try the following:
    - append "/" to the end and see if that helps
    - If using WLS security with basic HTTP Authentication, ensure the "Realm" field is populated correctly based on your WLS setup.
    The error message indicates that it's able to resolve "localhost" but just can't connect to this REST service. If you are getting proxy server issue, then you will probably get "host not reacheable" error.
    One thing to double check is whether you get the basic HTTP auth challenge when you use a browser to hit this link.
    Lastly, you probably don't want to use localhost in the URL data control. Only iOS simulators can resolve "localhost" when the iOS simulator and the WLS server are running in the same machine. Android can't. Recommendation is to set up your WLS so it can be accessed with the machine's actual IP address, and you would create your URL data control to against that real IP. This would ensure both emulators and devices can hit the JSON service.
    Thanks,
    Joe Huang

  • Exchange 2010 SP3 Rollup 8v2 causes client connectivity issues

    I installed SP3 Rollup 8v2 this weekend, going from 7. Since then we are having random client connectivity issues. New profiles can't be created, and some users can't access resources when booking meetings. We can do a registry fix to their machines to add
    a DS Server, but this is a workaround only. I have uninstalled the Rollup 8v2 and we are still having the issue.
    I thought 8v2 was supposed to fix this issue!

    Hi,
    According to your post, I understand that outlook client cannot connect to Exchange server to configure profile and cannot get list of resources room when upgrade to Exchange 2010 SP3 Rollup 8v2, the temporary solution is that specify the DC in registry.
    If I misunderstand your concern, please do not hesitate to let me know.
    Is there error message when configure Outlook failed?
    Please run Test E-mail AutoConfiguration and Outlook connection status to double confirm the URL and FQDN of Exchange server.
    As additional, please run below command to double check the state of Exchange system component:
    Get-ServerComponentstate -Identity “servername”
    If the state is Inactive, please run below command to active relevant component:
    Set-ServerComponentState <Identity> -Component “component name” -Requester HealthAPI -State Active
    More details about Server Component States in Exchange, for your reference:
    http://blogs.technet.com/b/exchange/archive/2013/09/26/server-component-states-in-exchange-2013.aspx
    Thanks
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Allen Wang
    TechNet Community Support

  • Linksys E3000 – WiFi Connectivity Issue

    I usually have the 2.5GHz (B/G + WEP) and the 5.0 GHz (Mixed + WPA2-PSK) networks running. I have about two to three iPhones running on the 2.5GHz, one Laptop on the 5.0GHz and one desktop wired. Recently in the previous week I came across wireless issues on the E3000 Linksys Router when arriving home from work. My iPhone wasn’t connecting to the Network or my Laptop. It seemed as if the SSID wasn’t broadcasting. I went into the router and played around with it and didn’t find any issues with my user settings.
    The router seems to broadcast the SSID for 2.5 & 5.0 sometimes [it disappears frequently] and when I’m able to attempt to connect it my iPhones plus my Laptop say “Unable to connect to network”. I’m not even connected to it wirelessly to manage the network. The desktop that is wired is able to connect stream internet across the modem though the router, this also goes when I wire my laptop as well.
    I’ve made sure I have the latest Firmware: 1.0.04 & I’ve manually reset the router to factory defaults and still had the same connectivity issues. I’ve disabled the 2.5GHz broadcast and ran the 5GHz to make sure the connections weren’t conflicting with each other, which isn’t the case.
    It seems I’m having broadcasting problems with the router and even resetting to factory settings aren’t working. I’ve noticed it’s not my devices that aren’t experiencing the issues because the iPhones and Laptop are having the same connectivity issue. My router is mounted to the wall and my modem is working perfectly. 
    Edit: The lights that are on & solid, during this problem is the Power + Internet + Wifi + Desktop(2) 

    FurryNutz wrote:
    strings300 wrote:
    I realize this is an old thread, but curious as to whether the firmware upgrade helped. My problem is similar, but a few things in my configuration changed over the past 2 weeks:
    1) I added a new Roku HD wireless to my router (2 days ago)
    2) I upgraded my broadband modem to the Comcast Arris TG862. I had them put this modem in bridge mode so that I could continue to use my E3000. (2 weeks ago).
    3) I noticed that comcast created an open network on my TG862 called xfinity wifi. I turned this off (yesterday).  Comcast does have an option for it. 
    Starting yesterday (after I turned off the comcast open network, I began to have problems on my 2.5 Ghz band on my linksys router. Never had these problems before. The network disappears, then re-appears. Somtimes I can connect to it but it's only a matter of time before it disappears again. 5 Ghz seems solid. 
    Last night, as a test, I turned my xfinity wifi open network back on, and all of a sudden my 2.5 Ghz was rock solid (at least for about 5 hours). It then disappeared again. 
    I will try the router firmware upgrade, but wondering if the Arris 862 could have anything to do with this. I'm not sure I trust comcast - particularly after they played that nasty open network trick on me. 
    Thanks!
    2.4Ghz Routers only: Try single mode G or N or mixed G and N?
    Channel Width set for Auto 20/40Mhz or try 20Mhz only.
    Try setting a manual [url=http://en.wikipedia.org/wiki/Wireless_channel] Channel [/url] to a open or unused channel. 1, 6 or 11. 11 for single mode N if the channel is clear. 13 for EU regions.
    What security mode are you using? Preferred security is WPA-Personal. WPA2/AES Only. Some WiFi adapters don't support AES, so you might want to try TPIK only or Auto TPIK and AES.
    Any 2.4Ghz or 5Ghz cordless house phones or WiFi APs near by?
    Any other WiFi routers in the area? Link> Use http://www.metageek.net/support/metageek-software-archives/ to find out. How many?
    I prefer not to use Arris branded modems or modems with built in routers. I recommend that you check to see if you can get into a Motorola SB 6141 or similar modem model that is stand alone. Comcast support Motorola modems I believe. 
    I recommend that you have your ISP check the cabling going to the ISP modem, check signal levels going to the ISP modem. For cable Internet, RG-6 coaxial cable is needed, not RG-59. Check for t.v. line splitters and remove them as they can introduce noise on the line and lower the signal going to the ISP modem. Connecting to the ISP modem could result in a false positive as the signal to the modem could be just enough to that point then adding on a router, could see problems. The router operation is dependent upon getting good data flow from the ISP modem and the modem is dependent upon getting good signal from the ISP Service.
    Thank you for the suggestions. Security is WPA2/PSK. This has not changed.
    A few questions. With regard to your last paragraph, even if I got a bad data flow from the ISP modem, I would still expect my router to be visible (or am I mistaken). I think, in the past, I've completely turned off my ISP modem and I could still see my router - just had no internet connection. 
    I'll look for other wifi routers - it just seems so darn coincidental with turning off that xfinity open wifi. I've always noticed other wifi signals in the area, I didn't actually notice any new ones (other than that silly xfinity one). 
    One thing I did do, I did remove an AP I had connected to the router when I set up the Roku because it seemed like it was un-necessary once I switched to the Arris modem. I just disconnected it... should it be degrown or something? 
    Thanks!

  • HP PhotoSmart 7510 suddenly has severe connectivity issues

    I have a HP PhotoSmart 7510 printer since about 2 months. Initial setup worked like a charm and the printer has been working pretty much perfectly for the last 2 months. Wireless printing, scanning and internet access on the printer (e.g. for Facebook photos) all worked. Just from time to time i would get the occasional (mildly annoying) message on my computer saying "scan to computer is currently unavailable" but it usually worked itself out and whenever I needed it to work, it did work.
    But since a few days ago, it has some severe connectivity issues. I didn't change any settings on the printer, router or computer - the issues just started appearing by themselves. I startet getting much more frequent messages on my computer saying "scan to computer is currently unavailable". I noticed I couldn't print anymore, and restarting computer, printer and/or router didn't help at all. The only thing so far i managed to print wirelessly since the problems started were the first 5 pixel rows of an image I tried to print, the rest didn't transmit.
    It seems the printer still connects to the WLAN but printing and scanning no longer work, and whenever I try to access a web service on the printer (like Facebook) it says it has no internet connection, even though the WLAN light is lit up (not blinking) and all the wireless status reports say "congratulations, no problems found" and display IPs etc. just like normal.
    I looked at the threads "PhotoSmart 7510 connects to router, but not to the web.", "Wireless printer (HP Photosmart 7510) not connecting to network" and "Photosmart 7510 won't connect to Web Services" but they weren't a big help. Activating EWS didn't work because even though the printer showed its IP address to be 192.168.1.3, when I entered this in my web browser it didn't find the printers configuration page.
    I tried the following steps from one of the threads:
    1. Restore the Network defaults
    2. Unplug the printers power cord while it is still on. Leave it unplugged and walk to the router.
    3. While the router is still on, unplug the power cord from the router, leave it unplugged for 30 seconds, then reconnect the power cord to the router. Once plugged back in the router should power on automatically.
    4. Plug the power cord back into the printer. Once plugged back in the printer should power on automatically.
    5. Run the Wireless Setup Wizard to reconnect the printer to your wireless network.
    6. Try enabling Web Services.
    I followed these steps exactly. Interestingly, even though I had done step 1 and restored the network settings to factory defaults, after turning back on, the printer somehow still had its old settings saved and reconnected to the network.
    It seemed to have fixed the problem, the printer finally had internet access again (Facebook app showed my photos) and scan to computer found my PC. But after just about 3 minutes, the printer had lost its internet connectivity again. When opening the Facebook app, it displayed the same error message it did before. And printing no longer worked as well.
    So, what is wrong with this printer?! It has the newest software update by the way (I checked during the 3 minutes it had internet access.) My computer is a HP Windows 7 x64 machine (EliteBook 6930p) and the router I'm using is a Netgear WNDR3700.
    I specifically bought this printer for my studies at university. In one week i have my exams and in order to study I REALLY need to be able to print some of my course materials! So any help as quickly as possible would be greatly appreciated. Or do you think this is a case for a warranty replacement, considering the printer's really strange and error-prone behavior?
    Thanks a lot!

    I can assure you that it is not a router issue.  It appears to me that it is a driver compatibility with Windows OS.  After trying to get to the bottom of this since my Photosmart 7525 was new and reading just about every forum and blog, I have come to the conclusion that the issue must be related to the HP driver itself.  
    The issue does not seem to affect any Mac systems, and from one forum someone was able to fix it by downloading new drivers compatible with 64-bit systems (which seem to not be affected by the glitch).  But that leaves us 32-bit people stuck with the current driver which does not work.
    The printer is connected with good signal to the wireless router (no matter who's router it is and what configuration is made).  The printer can be pinged from the router and any computer on the network which is not currently being affected by this issue.  However, the affected computer fails pings by either request timed out, or destination host unreachable.  Pings are successful from the affected computer to any other device on the network.  The only way to recover (at least for a few days) is to reboot the affected computer.
    Also, from the display on the 7525, the network tests pass without issue.  I can also download and print content from the internet with no issues.  
    Please do a quick google search of this issue and you will see several THOUSAND entries of people with the same request.  This is a serious issue that people are having and everything is pointing to an HP problem (not routers, improper installation of software or drivers, etc...).  I agree with several other customers that HP should be on the hook for this fix.  I will give it another couple weeks, then back to the store for a reliable unit from another competitor (Canon, Lexmark, etc..)
    Thank you in advance for escalating this issue to product engineering,
    S. Hunn
    There are 10 kinds of people in this world... Those who understand binary and those who do not.

  • Connection doctor and connection issues

    I have nothing blocking  my internet connection, however mail is a nightmare for me. I continually receive connection issues via the connection doctor for imaps, pops, and icloud.
    Are my settings wrong? I have checked with each of the settings and they are set per instructions provided. Some are google, some yahoo, icloud, etc.
    This is really annoying and I could really use some help.
    Here is a typical message: Could not connect to this Google IMAP server. Check your network connection and that you entered the correct information in the Account preferences. Also verify that the server supports SSL. If it does not, deselect the 'Use SSL" checkbox in the Advanced tab of Account Preference"
    I have done all of this and am still having troubles.
    I am also receiving SMTP connection issues - "Trying to log into this SMTP account failed. Verufy that the username and password are correct."
    I have checked and all are correct. Even more confusing, these issues are not present all the time - however I have not changed anything between when times are good and bad.
    Sigh - I hope someone has an idea to help me out.
    Thanks in advance for your time and thoughts.
    Patti
    I am running osx 10.8 mail 6.2 and use xfinity for my internet (as I mentioned, I disabled their firewall trying to fix this)

    Hi there Japps1,
    You may find the troubleshooting steps in the article below helpful.
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    -Griff W.

Maybe you are looking for