Not able to access HTMLDB from another server running HTTP_SERVER

Hi
I had htmldb installed and running from dataabse server but then I moved APACHE server to another server. Here Apache is running from OEM 10g grid control
I set up dad.conf and marvel.conf files for connection to htmldb server. Also I created marvel directory and copied images diretory from htmldb server to this Apache server marver directory. It did not work
Here' the details from dads.conf file
Alias /i/ "/opt/oracle/product/10.2.0_oem/oms10g/Apache/marvel/images/"
<Location /pls/htmldb>
SetHandler pls_handler
Order allow,deny
Allow from All
AllowOverride None
PlsqlDatabaseUsername htmldb_public_user
PlsqlDatabasePassword @BfNvzBYH8alwoDCIEVVlTPg=
PlsqlDatabaseConnectString ods1_dev.whq.ual.com TNSFormat
PlsqlNLSLanguage AMERICAN_AMERICA.WE8ISO8859P1
PlsqlAuthenticationMode Basic
PlsqlDocumentTablename wwv_flow_file_objects$
PlsqlDocumentPath docs
PlsqlDocumentProcedure wwv_flow_file_manager.process_download
PlsqlPathAliasProcedure htmldb.wwpth_api_alias.process_download
PlsqlDefaultPage htmldb
</Location>
Also I see following errors in Apache Log
File does not exist : /opt/oracle/product/10.2.0_oem/oms10g/Apache/Apache/htdocs/portal/pls/htmldb
Please help.
Thanks
Sunil

In httpd.conf I have oracle_apache.conf file included
In oracle_apche.conf I have <oracle home>/Apache/modplsql/conf/plsql.conf included
And in plsql.conf I have
<oracle home>/Apache/modplsql/conf/dads.conf file included.
http_server is running and did not give any errors during startup

Similar Messages

  • Not able to access schema from a Web Server

    I am not successful in using a schema from a web server. I am using j2sdk1.4.2_06, and JDOM-b10. I have been successful in accessing schema using a file path, but not with a web address. The server is Windows Server 2003, I create a virtual directory using IIS under Inetpub.
    Let the URL be: http://server/research_schema/client.xsd
    This would be accessible only on the intranet.
    Here is some XML:
    <client xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:noNamespaceSchemaLocation="http://server/research_schema/client.xsd">
    <execute matlab="false" commit="false" return_server_msg="false">
    <t1>
    <load_batch_data>
    <username>test</username>
    <password>test</password>
    <database>db</database>
    <get_next_batch>true</get_next_batch>
    </load_batch_data>
    </t1>
    </execute>
    </client>
      Here is the code that sets the parser to be validating, and sets the schema location, I am using JDOM:
    builder = new SAXBuilder("org.apache.xerces.parsers.SAXParser", true);
    builder.setFeature(
      "http://apache.org/xml/features/validation/schema",
      true);
    builder.setProperty(
       "http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation",
            "http://server/research_schema/client.xsd");
    doc = builder.build(source);The error I get is a JDOMException saying the client element is not found, but I know that the client element is there, after seeing the XML output to
    a file from the sender.
    I see many exmples on the internet using a URL for the schema location, and it is usually the internet and not just the intranet. So it does work for someone.
    I'd appreaciate any help.

    Steve, et. al.,
    My apologies for using this in lieu of email, but I have been searching and searching for the answer to your questions from last summer concerning the correct method for getting the local xsd file to be correctly accessed from the xml file when using JDOM to parse with validation..
    I did not see successful resolution of the thread from last summer, but this one seems closely related and suggests that you were either instructed to give up, or gave up on your own and went to the solution of placing the xsd file on a server.
    Maybe I've got my head screwed on wrong, but I, like you, would like to find a successful way to make xml processing work for a JWS-provisioned application the same as it would if I just sent the clients a big jar file and told them to unjar it to some convenient local directory. In that scenario xsi:noNamespaceSchemaLocation = "itsrighthere.xsd" works as expected.
    Can anyone tell us what the correct method of specification is in the JWS context?
    Thank you.

  • Not able to access files from Workspace Images and Static files

    Hi,
    We have just migrated our APEX Application from one server to another.
    All the functionality is working fine except the images or files which we are uploading
    in
    Shared Components -> Static Files
    Shared Components -> Images
    We are uloading Images in Shared Components -> Images but those are not getting displayed there.
    Similarly the files which we are uploaded in Shared Components -> Static Files are not accessible. If we
    try to download using download icon its showing blank screen.
    I am using some javascript files which i have uploaded into static files, but not able to refer them in page.
    Please someone guide us how to resolve the above problem.
    Thanks in advance.
    Thanks & Regards
    Sanjay
    Edited by: user11204334 on May 25, 2010 1:35 AM
    Edited by: user11204334 on May 25, 2010 3:45 AM

    Hello Sanjay,
    If you upload any static files such as IMAGES, FILES, or CSS you have to use the tags: #WORKSPACE_IMAGES# or #IMAGE_PREFIX# depending on your files location..
    then try something like htp.p ('<img src="#IMAGE_PREFIX#fileName.gif" />');
    And it should show the fileName.gif on your browser...
    I am not sure if i remember correctly, you can reference files to a specific application or to the whole application, if I am not mistaken..Correct me..
    Regards,
    Noel Alex Makumuli,
    Tanzania

  • Not able to get file from application server with read dataset

    Hi,
    Firstly i download a file from application server from read data set and then i sent this file as attachment. But problem is that i am able to send .jpg .bmp file but i am not able to send .pdf or .doc file so what can i do for that. ?
    My code is like below...
      DATA : PATH TYPE STRING.
      DATA: E_FILE LIKE RLGRAP-FILENAME.
      CONCATENATE '/tmp/'  NAME_WITH_EXT INTO E_FILE SEPARATED BY SPACE.
      CONDENSE E_FILE NO-GAPS.
      IF EXTENSION = 'TXT'.
        OPEN DATASET E_FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT WITH WINDOWS LINEFEED . " MESSAGE MSG.
        IF SY-SUBRC <> 0.
       WRITE: SY-SUBRC, MSG, ' LIKE ', C_FNAME.
        ELSE.
          WHILE SY-SUBRC = 0.
            READ DATASET E_FILE INTO WA_C.
            IF SY-SUBRC <> 0.
              EXIT.
            ENDIF.
            APPEND WA_C TO IT_C.
          ENDWHILE.
          CLOSE DATASET E_FILE.
        ENDIF.
      ELSE.
        OPEN DATASET E_FILE FOR INPUT IN BINARY MODE. " ENCODING DEFAULT. "    INPUT IN  BINARY MODE . " TEXT MODE ENCODING   NON-UNICODE.
        IF SY-SUBRC = 0.
          DO .
            READ DATASET E_FILE INTO GS_PDF_TAB.
            IF SY-SUBRC = 0.
              APPEND GS_PDF_TAB TO GT_PDF_TAB.
            ELSE.
              EXIT.
            ENDIF.
          ENDDO.
          CLOSE DATASET E_FILE.
        ENDIF.
      ENDIF.
    Regards,
    Gurprit Bhatia

    delete this line DEFAULT WITH WINDOWS LINEFEED  and check this..

  • Not able to connect database from another os user using externally?

    Hi,
    I want to connect database from another os user. i am able to connect database from oracle externally. but not able to connect different OS user.
    As ORACLE User:
    [oracle@test1 admin]$ sqlplus /
    SQL*Plus: Release 11.2.0.2.0 Production on Mon Jan 16 19:41:57 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    Non ORACLE user:
    [sample@test1 ~]$ export ORACLE_HOME=/u01/app/oracle/product/11.2.0.2/
    [sample@test1 ~]$ export ORACLE_SID=rman
    [sample@test1 ~]$ export PATH=$ORACLE_HOME/bin:$PATH
    [sample@test1 ~]$ sqlplus /
    SQL*Plus: Release 11.2.0.2.0 Production on Mon Jan 16 19:37:42 2012
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    Process ID: 0
    Session ID: 0 Serial number: 0
    Enter user-name:
    Thanks

    You didn't install Oracle correctly, especially you didn't run the root.sh and rootpre.sh scripts.
    If you would have read the error message at all, and researched it, you would have known this.
    Regrettably however you decided to ignore Forums Etiquette and to abuse this forum with Yet Another Doc Question.
    Sybrand Bakker
    Senior Oracle DBA

  • I am not able to access Itunes from I movie

    I cant see or access I tunes from I movie. Nor I photo. I am not able to add music or photos to my movie. What can be happening?

    Temporarily disable any security software on the computer and try again.
    If it works, contact whomever supports the security software for assistance on configuring it to not interfere with iTunes.

  • Could not able to access workbook from the favorites of User Menu

    Hi all,
    I have got a problem in accessing Workbook from the User menu (SAP GUI) Favorites.
    I added a workbook to my favorites but now when i double click on the Workbook from my USER MENU (SAP GUI),
    BEX is opening and the connection is also maintained but the workbook is not appearing in the BEX.
    I checked in SU53 and this is not related to any authorization issues.
    Could anyone help me in solving this issue and
    providing ?

    I can't aunderstand why it happens, but try adding the workbook to a role and assign the role to your user.
    Hope it helps.
    Regards

  • Not able to access database from a remote machine using SQL Server Management Studio

    Hi,
    I have a DB_BOX with SQL Server 2008 R2 installed. I can access the databases on the local machine using SQL Server Management Studio but it is not accessible from other machines, though the machines are in same domain.
    I have remote enabled on SQL Server box, TCP enabled, firewall off. I checked with IP Address too, all SQL Server services are running.
    The SQL Server log shows the message
    The requested service has been stopped or disabled and is unavailable at this time. The connection has been closed.
    I get the below message in SSMS from remote machine.
    Details of error message are
    ===================================
    Cannot connect to DB_BOX.
    ===================================
    A connection was successfully established with the server, but then an error occurred during the login process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=64&LinkId=20476
    Server Name: DB_BOX
    Error Number: 64
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
       at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
       at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
       at System.Data.SqlClient.TdsParserStateObject.ReadByte()
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogin(Boolean enlistOK)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup)
       at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()

    Sorry, missed the message from the errorlog in the original post. You shouldn't have included that big .Net dump that hid the important facts. :-)
    My first Google attempt on that message (which I have never seen before) suggests that the TCP Enpoint is stopped, so try this:
    ALTER ENDPOINT [TSQL Default TCP]
    STATE=STARTED;
    Erland Sommarskog, SQL Server MVP, [email protected]
    This solves the problem. Thanks...

  • Employee user not able to access catalogs from EBP

    Hello Seniors,
    We are implementing SRM 4.0 with scenario SSP and CCM 2.0.
    Please note the landscape highlights:
    EBP and CCM component are mounted in the same client and same server.
    CAT and CES are also on same client.
    No XI in picture.
    Catalog upload has been done through CSV format only.
    Please note the activities I have completed:
    Cat_Manager assigned to /CCM/CATALOG_MANAGER role and profile generated.
    Did the customizing for CAT
    Did the customizing for CSE
    Activated the required services
    For the service srm_cse set the log on procedure as "log on data required".
    Maintained a service user "ccm_user" in anonymous log on data.
    Maintained "define external web serices" in SRM img->SRM ->SRM server ->Master data (Here i have a doubt which is explained later)
    Intialized CCM with report.
    Uploaded schema in the master catalog.
    Created supplier ID and catalog.
    Uploaded CSV file for Supplier catalog.
    Mapped Supplier catalog with master catalog
    Published Master cataog.
    maintained entry of master catalog in PPOMA_BBP.
    Now I logged on EBP home page with employee user.
    Went to application shop.
    My master catalog published in CCM component was present there with exact name.
    But when the employee user clicks on the particular catalog link to choose the items from , He is getting an error "" BSP exception: Access to URL /sap/bc/bsp/ccm/srm_cse is forbidden "".
    With this error message immediately the attention goes to the service srm_cse.But there I have maintained a SERVICE user by user ID ccm_user which is existing in SRM SU01.
    In the whole customizing explained above I have two weak points which I want to state now:
    1. The integrated call structure for my particular master catalog was copied from other catalog.
    There i am missing one sr. no. of 70 (ie after 60 , 80 is there).
    But all the values for url, ccm-user, password, sap-client, sap language, locale, catalogID are filled correctly with type as per config guide.
    Do the parameter names should come exactly as per sequence given in guide(In my case it's not so.)
    (If anybody wants to see screenshot for this point pl. give me personal ID.)
    2. I had deleted the entry of my particular master catalog from the external web services to correct the error stated in pt. no 1 .
    But when i tried to create an entry again with the same ID system gave me an error saying that the said catalog is marked for deletion.
    now entry of this particular master catalog is present in table /CCM/D_CTLG_REQ with no x mark in active column.
    But my catalog ID is present in external web services.
    Can point no. 1 and 2 are reasons of the failure to access the catalogs from EBP?
    If it is so then please tell me the procedure to recreate the integrated call structure with same catalog ID.
    Please excuse me for the length of the matter , but i have tried to give every relavant detail so that clarity should be max.
    Best Regards,
    dinesh
    [email protected]

    Hi Dinesh,
    Please see cooments below...
    1. The integrated call structure for my particular master catalog was copied from other catalog.
    There i am missing one sr. no. of 70 (ie after 60 , 80 is there).
    But all the values for url<b>[Adeoye]where did you get your url from? Go to SE80 --> BSP application --> /CCM/SRM_CSE --> Controller -->main.do and check the url</b>, ccm-user, password, sap-client, sap language, locale, catalogID are filled correctly with type as per config guide.
    Do the parameter names should come exactly as per sequence given in guide(In my case it's not so<b>.)[Adeoye] Yes i believe this should be in the satated sequence.</b>
    (If anybody wants to see screenshot for this point pl. give me personal ID.)
    2. I had deleted the entry of my particular master catalog from the external web services to correct the error stated in pt. no 1 .
    But when i tried to create an entry again with the same ID system gave me an error saying that the said catalog is marked for deletion. <b>[Adeoye] Save your deletion first, before trying to create it again.</b>
    now entry of this particular master catalog is present in table /CCM/D_CTLG_REQ with no x mark in active column.
    But my catalog ID is present in external web services.
    I also sent you a cookbook to help with this, hope this helps...
    BR,
    Adeoye

  • Not able to access the result set from one member function to another

    Im new to jdbc
    I have declared a connection object , a result set object and statement object in one member function and i am not able to access these in another member function. But both are in the same class
    Kindly help
    Thanks
    Shasi

    Kindly refrain from double-posting:
    http://forum.java.sun.com/thread.jspa?threadID=700659&tstart=0
    - Saish

  • Not Able to Connect to Intranet Web Server

    We have ASA5550 (ver. 8.0.4). We setup Split-tunneling. The Remote users were NOT able to access the intranet web server using Cisco VPN client. However, they were able to access other internal resources. We were able to ping the IP address of the Intranet Web server, but we were NOT able to ping by name. Do you have any suggestions?
    Thanks.

    Thanks for your response and information. The VPN adapter shows the Corporate office's DNS server. When I typed NSLOOKUP, the Remote computer also showed the Corporate office's DNS server. So, does it mean the DNS is setup correctly on the ASA?
    We have about 100 Remote offices, do we need to put in 100 DNS servers for Split-DNS? The Remote offices are using Cisco VPN client to connect to us.
    Thanks.

  • WHCK - Not able to access Server from client machine

    Hi,
    Server is running in : \\testserver
    Domain : ns.local
    Client : testclient 
    Test Name : TDI filters and LSPs are not allowed
    When the above test is run from the server side, Test fails with the following error:
    Cause : Failed to Start the Task
    Cause : Zero files are copied when Trying to Copy From Path "\\testserver.ns.local\TaefBinaries\x64"....Failing the Task
    Failure : Failed to Start the Task "Copy TAEF Binaries"
    Cause : Failed to Copy File : "\\testserver.ns.local\TaefBinaries\x64" Dest : "C:\WLK\JobsWorkingDir\Tasks\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\"
    Cause : Cannot Find Pattern "\\testserver.ns.local\TaefBinaries\x64"
    From WttEa.log , it displays "The network path was not found". 
    CRunManager::ExecutionAgent: Working Dir C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1 
    CRunManager::ExecutionAgent: Saving RunXML to file C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\WttJobRun.Xml
    CRunManager::ExecutionAgent: Saving EaDataXML to file C:\WLK\JobsWorkingDir\JobRuns\WTTJobRun6A2E5AF3-8C3E-4425-9997-5B809CAC2BB1\WttEaData.Xml
    CRunManager::UserName : DTMShareUser
    CRunManager::Domain : TESTSERVER
    CRunManager::Password : Server2008,WTT5326ShareUser
    Build No Greater than 4000. This is a Windows Vista Machine
    Single User TS Enabled
    Comparing TESTSERVER testclient.ns.local 10
    Logon Netonly
    GetUserToken : Returns 0
    Error: 0x35, The network path was not found.   WTTCreateDirPAth : CreateDirectory \\testserver.ns.local\HCKLogs\EaFolderAccessCheck\CF82A2A5-E08D-49C7-A078-4BA1416F1AA1 Failed   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\common\eautil\src\eautil.cpp
    Line=1589
    Error: 0x80070035, The network path was not found.   (Error ( status = 53 ) in call: WttCreateDirPath(lpszTemp) )   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\eamanager\runmanager\src\runmanager.cpp Line=2232
    Retrying the log location creation 10 more times
    Error: 0x35, The network path was not found.   WTTCreateDirPAth : CreateDirectory \\testserver.ns.local\HCKLogs\EaFolderAccessCheck\CF82A2A5-E08D-49C7-A078-4BA1416F1AA1 Failed   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\common\eautil\src\eautil.cpp
    Line=1589
    Error: 0x80070035, The network path was not found.   (Error ( status = 53 ) in call: WttCreateDirPath(lpszTemp) )   File=d:\wtt25\wtt25\sdktools\wtt\jobs\runtime\wttexecutionagent\eamanager\runmanager\src\runmanager.cpp Line=2240
    What could be the problem ??? What steps need to be done or checked further to proceed ??
    Could you please help why the client is not able to access Server ???
    Thanks.
    Regards,
    Pradeep VR

    Hi,
    Reason for this failure is that the test executable is not present in the HLK controller.
    It looks like a Microsoft issue. We have faced same type of problem for other tests also. Our problem gets fixed in HLK 10056.
    If you face the problem in current build also, then please log a bug to Microsoft.
    Thanks,
    Arpo

  • Problem in accessing the media files from another server

    Currently I am working in a project with streaming video on demand and using FMS 4.5.
    Let’s say the FMS is installed on one machine say ‘121.123.35.34’ and there is another server ‘100.54.88.222’ where all the media files belong. Now we need to point to this third server to play videos from FMS.I have done the below changes:
    In the fms.ini file: set the VOD_DIR2 = \\100.54.88.222\myvideos
    In the application.xml: Added the stream: <Streams>/hr;${VOD_DIR2}</Streams>
    From my application accessing the path of flv as:source= “rtmp:// 121.123.35.34:1935/vod/hr/test” . Not able to access the video.
    Note: If I will point to say ‘C:hrvideos’ in VOD_DIR2, then I am able to access the videos using the same URL.
    I also tried mapping the shared path to the FMS machine and then given the mapped drive path in the VOD_DIR2, but this also doesn’t work.
    Please let me know:
    If we need to configure any other parameter to stream videos from another server.
    VOD_COMMON_DIR: I modified this similar TO VOD_DIR to location 'C:hrvideos', I am able to stream the videos using rtmp, but not abl eto stream with http.
              Please let me know  can we stream using http also as we need this to run f4m manifest file.
              http://121.123.35.34:8134/vod/hr/sample.mp4.
              http://121.123.35.34:8134/vod/hr/sample.f4m
    Thanks,
    Anjali

    Hi Shiven,
    I followed the steps suggested by you:
    1) Changed the stream:
    <Streams>/hr;${VOD_DIR2}</Streams> to<Streams>/;${VOD_DIR2}</Streams>
    But not able to access the video with rtmp:// 121.123.35.34:1935/vod/test
    2) For http streaming, changes the HttpStreamingContentPath in hds-vod in the httpd config file, and tried to stream the video like:
    http:// 121.123.35.34:8134/vod/test.mp4 or
    http:// 121.123.35.34:8134/hds-vod/test.mp4
    But not able to load the video.
    Please suggest?
    Thanks & Regards,
    Anjali Rawat

  • I have connected an AirPlay enabled device to iphone4s. I started palying songs. I was able to access internet through 3G from iphone.After few seconds 3G symbol disappears and WiFi symbol appears. After that I'm not able to access internet. Why is it so?

    I have connected an AirPlay enabled device to iphone4s. I started palying songs. I was able to access internet through 3G from iphone.After few seconds 3G symbol disappears and WiFi symbol appears. After that I'm not able to access internet. Why is it so?

    SMS. Deggie, had them check that.  After a lengthy discussion with Senior Tech advisor, it appears it is iMessage/Face Time server (they are the same) issue, which will strong arm those into purchasing Data if they use iMessage over multiple devices, as the server registers the phone number associated with apple ID.  Not impressed. I put what I've learned here in a simliar thread
    https://discussions.apple.com/message/17416082#17416082
    and this is what I've put in apple.com/feedback
    "iMessage requires internet.  SMS does not.  iMessage/FaceTime auto logs phone numbers to the iMessage/Facetime  server (it's the same server as I've come to learn), this means that when iMessage/Face Time is turned on anyone sending a message through the server to me will only be sent as an iMessage- not when I'm not connected to internet, meaning I will not receive the message as an SMS by default, when I have another device using iMessage (such as MacBook) logged in.
    This feature is a problem for me, bottom line, in that iMessage strong arms the consumer (me) into having to buy a data plan that they either do not want, or do not need."

  • Not able to access webservice after migrating from 8.1 to 10.3,plz help

    Hi All,
    Prev our application was running in weblogic 8.1 and now we moved to 10.3
    We are able to deploy our webservice in 10.3 and access the wsdl but we are not able to access the webservice from the client.
    Even the testclient is not comming up.
    After spending long time in that,now i dont have any clue on this issue.
    Plz help on this
    Thanks ni advance,
    Mouli

    Sunil,
    We are not seeing any exception.We regenerated the webservice and then deployed in the 10.3
    When we make req from the client ,we are getting null response but thing is there are no log trace in the server side for that
    folllowing is the input string we are pasing to the method notifyservice
    IN the client we pass the wsdl url and then pass the following input string and hit the notifySerivce method
    Req:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?><object><GLCCode>102431</GLCCode><callBackNumber>888256798</callBackNumber></object>
    Res:
    <m:notifyService xmlns:m="http://www.testportal.com/outbound/tsp/WowWebservices">
    <result xsi:nil="true"/>
    </m:notifyservice>
    Therre was an exception in the client side,plz check below
    javax.xml.rpc.soap.SOAPFaultException: Failed to get operation name from incoming request
    at weblogic.webservice.core.ClientDispatcher.receive(ClientDispatcher.java:317)
    at weblogic.webservice.core.ClientDispatcher.dispatch(ClientDispatcher.java:147)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:473)
    at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:459)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:569)
    at weblogic.webservice.core.rpc.CallImpl.invoke(CallImpl.java:422)
    Thanks For your time,
    Mouli

Maybe you are looking for