Sending/Receiving SMS on a J2EE Web Application

hi friends
i have developed an application for bank accounts. Its a web application and my server is Tomcat 5.0. my requirement is that user could sms (from their mobile) to my application. In the SMS they will provide their account no and in response my application will send a sms to their cell phone giving them their current balance.
Now im very new to this mobile technology. im confused that whether i have to use J2ME or JMS or what. And what other things i require.
The Mobile and application has to do nothin with each other(means they r not connected in any way). So i think i need services from a Service Provider. But from technology pt of view what i'll use??
If any body knows which tech. to use and flow of such application pls help.
thanx...

Hi
There is no need to develope mobile application for
sending SMS from the PC.
n general, there are two ways to send SMS messages
from a computer / PC to a mobile phone:
Connect a mobile phone or GSM/GPRS modem to a
computer / PC. Then use the computer / PC and AT
commands to instruct the mobile phone or GSM/GPRS
modem to send SMS messages.
Connect the computer / PC to the SMS center (SMSC) or
SMS gateway of a wireless carrier or SMS service
provider. Then send SMS messages using a protocol /
interface supported by the SMSC or SMS gateway.I would like to know how do you set up the whole thing. What are AT commands and Where do i get thm and how do i use them. i am sorry for asking so many question but i am really interested in knowing this. I am doing my school project which requires me to send sms from my PC.
Please help!!!!
Thanks
Kholi

Similar Messages

  • How can i send the chinese sms using java J2EE(web application)

    hi,
    i have the difficulty on sending chinese sms using J2EE application.i try to input the chinese word to jsp and send the plain text sms. i received the sms with plenty of question mark "?????". i think it is regarding to the conversion of String to some kind of format that supported by mobile phone. below are some code the send the sms to recipient. i need someone help in order to have the solution.
    thanks a lot
    <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
    <%@ page import="se.sapio.rta.service.MPMService"%>
    <%@ page import="java.util.Locale"%>
    <%
         Locale.setDefault(Locale.UK);
         Context ctx;
         MPMService mpmservice;
         ctx = new InitialContext();
         mpmservice = (MPMService) ctx.lookup("BC/Service/RTAMPM");
         LSUser user = null;
         boolean ok = true;
         try {
         if (ok) {
              String sender = request.getParameter("sender");
              String phonenr = request.getParameter("phonenr");
              String sendmsg = request.getParameter("sendmsg");
              if(bError) {
                   byte[] bytes = message.getBytes("UTF-8");
                   message = mobileclientservice.ByteEncode(bytes);          
                   response.sendRedirect("send_sms.jsp?s="+request.getParameter("s")+"&msg="+message+"&phonenr="+request.getParameter("phonenr").replaceAll("\\+","%2B")+"&sender="+request.getParameter("sender")+"&sendmsg="+request.getParameter("sendmsg").replaceAll("\\+","%2B"));
              String resp = "";
              if(mpmservice.sendPlainTextSMS(sender, phonenr, sendmsg)) {
                   resp=mpmservice.getLang(user.getLang(), "sms_sent");
              } else {
                   resp=mpmservice.getLang(user.getLang(), "sms_not_sent");
              } %>
              <jsp:include page="/top.jsp" />
              <p class="headline"><%=mpmservice.getLang(user.getLang(), "send_sms_title")%></p>
              <form name="operatordetails" id="operatordetails" method="post" action="send_sms.jsp">
              <INPUT TYPE=hidden NAME=s VALUE="<%=request.getParameter("s")%>">
              <INPUT TYPE=hidden NAME=phonenr VALUE="<%=request.getParameter("phonenr")%>">
              <table class="infotable" id="report">
                   <tr>
                        <td class="left" colspan="2"><%=resp%></td>
                        <td class="right"></td>
                   </tr>
                   <tr>
                        <td class="left" colspan="2">
                             <input class="halfmiddle" name="Back" type="submit" id="Back" value="<%=mpmservice.getLang(user.getLang(), "back")%>" />
                        </td>     
                        <td class="right"> </td>
                   </tr>
              </table>
              </form>
              <jsp:include page="/bottom.jsp" />
         <% } %>
       public boolean sendPlainTextSMS(String sender, String recipient, String sendmsg){
             if(recipient.charAt(0) == '+')
                   recipient = recipient.substring(1);
             String senderIdType = "Alpha";
              if( (sender.charAt(0) >= '0' && sender.charAt(0) <= '9') || sender.charAt(0) == '+')
                   senderIdType = "Numeric";
                   if(sender.charAt(0) == '+')
                        sender = sender.substring(1);
                   for(int i=0; i < sender.length(); i++)
                        if(!(sender.charAt(i) >= '0' && sender.charAt(i) <= '9'))
                             senderIdType = "Alpha";
             log.warn("sending sms to: "+recipient + " sendtype: " + senderIdType + " msg: "+ sendmsg);
             log.warn("Encoded sms:"+Encode(sendmsg));
             try{
             String postData = "XMLDATA=" + URLEncoder.encode("<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\r\n" +
                        "<NotificationRequest Version=\"3.4\">\r\n" +
                        "     <NotificationHeader>\r\n" +
                        "          <PartnerName>" + SMS_PARTNER_NAME + "</PartnerName>\r\n" +
                        "          <PartnerPassword>" + SMS_PARTNER_PASSWORD + "</PartnerPassword>\r\n" +
                        "          <SubscriptionName>XML</SubscriptionName>\r\n" +
                        "     </NotificationHeader>\r\n" +
                        "     <NotificationList BatchID=\"1\">\r\n" +
                        "          <Notification SequenceNumber=\"0\" MessageType=\"SMS\">\r\n" +
                        "          <Message>" + Encode(sendmsg) + "</Message>\r\n" +
                        "          <Profile>" + SMS_PARTNER_PROFILE + "</Profile>\r\n" +
                        "          <SenderID Type=\"" + senderIdType + "\">" + sender + "</SenderID>\r\n" +
                        "          <Subscriber>\r\n" +
                        "               <SubscriberNumber>" + recipient + "</SubscriberNumber>\r\n" +
                        "          </Subscriber>\r\n" +
                        "      </Notification>\r\n" +
                        " </NotificationList>\r\n" +
                        "</NotificationRequest>","ISO-8859-1");
      appreciate for anyone provide the solution.
    thanks a lot

    Hi,
    I want to send sms from web application to mobile phones at the time of registration. Its verymuch greatful to me, if you let me know, how to send from jsp to mobile. because from your post, i got, you already know about sending sms from jsp to mobile.
    please let me know, how to send sms
    [email protected]
    Thanks in advance for your kind help

  • Deploying a J2EE web application in Oracle 10g

    Hi friends,
    <br>
    I had worked with Oracle9i 9.0.3 . But it's my first experience with Oracle 10g . I have installed Oracle 10g Infrastructure , Metadata Repository and one Middle tier - Forms and i hope i have followed The Oracle 10g installation guide Properly. Anyway installation is successful.
    The problem is a J2EE web application which is deployed properly on Oracle9i 9.0.3 doesn't get deployed in Oracle 10g. The following is the exception :
    <br>
    Deployment failed: Nested exception
    Root Cause: deploy failed!: ; nested exception is:
    oracle.oc4j.admin.internal.DeployerException: Error initializing ejb-module; Exception Error in application Spom_Apps: Error loading package at file:/C:/Oracle/Ora9iASForms/j2ee/home/applications/Spom_Apps/JmsSubscriberMdb.jar, Error deploying file:/C:/Oracle/Ora9iASForms/j2ee/home/applications/Spom_Apps/JmsSubscriberMdb.jar homes: No location set for Topic resource MessageDrivenBean JmsReceiverMdb
    <br>
    <br>
    where JmsReceiverMdb is the deployment file containing the message driven beans.
    <br>
    Thanks in advance,
    paskal

    Hi,
    Thanks for responding . I am sending the file contents of ejb-jar.xml, orion-ejb-jar.xml, jms.xml.
    Could you also check whether dtds versions of 10g and 9i in these xmls are conflicting? If you can specify your email-id i can send these file as attachments.
    Hope you could strike the right spot.
    ejb-jar.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
    <ejb-jar>
    <enterprise-beans>
    <session>
    <description>Session Bean ( Stateless )</description>
    <display-name>spomPmConfigSSB</display-name>
    <ejb-name>spomPmConfigSSB</ejb-name>
    <home>jnipackage.spomPmConfigSSBHome</home>
    <remote>jnipackage.spomPmConfigSSB</remote>
    <ejb-class>jnipackage.impl.spomPmConfigSSBBean</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    </session>
    <message-driven>
    <description>Message Driven Bean</description>
    <display-name>JmsReceiverMdb</display-name>
    <ejb-name>JmsReceiverMdb</ejb-name>
    <ejb-class>jnipackage.impl.JmsReceiverMdbBean</ejb-class>
    <transaction-type>Container</transaction-type>
    <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
    <resource-ref>
    <res-ref-name>jms/alarmTopicConnectionFactory</res-ref-name>
    <res-type>javax.jms.TopicConnectionFactory</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    <resource-env-ref>
    <resource-env-ref-name>jms/alarmTopic</resource-env-ref-name>
    <resource-env-ref-type>javax.jms.Topic</resource-env-ref-type>
    </resource-env-ref>
    </message-driven>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>JmsReceiverMdb</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    <container-transaction>
    <method>
    <ejb-name>spomPmConfigSSB</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Supports</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>
    Orion-ejb-jar.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!DOCTYPE orion-ejb-jar PUBLIC "-//Evermind//DTD Enterprise JavaBeans 1.1 runtime//EN" "http://xmlns.oracle.com/ias/dtds/orion-ejb-jar.dtd">
    <orion-ejb-jar>
    <enterprise-beans>
    <message-driven-deployment name="JmsReceiverMdb" max-instances="100" min-instances="0">
    <resource-ref-mapping name="jms/alarmTopicConnectionFactory"/>
    </message-driven-deployment>
    <session-deployment name="spomPmConfigSSB"/>
    </enterprise-beans>
    <assembly-descriptor>
    <default-method-access>
    <security-role-mapping impliesAll="true" name="&lt;default-ejb-caller-role>"/>
    </default-method-access>
    </assembly-descriptor>
    </orion-ejb-jar>
    jms.xml
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE jms-server PUBLIC "OC4J JMS server" "http://xmlns.oracle.com/ias/dtds/jms-server-9_04.dtd">
    <jms-server port="9127">
    <!-- Queue bindings, these queues will be bound to their respective
    JNDI path for later retrieval -->
    <queue name="Demo Queue" location="jms/demoQueue">
    <description>A dummy queue</description>
    </queue>
    <!-- Topic bindings, these topic will be bound to their respective
    JNDI path for later retrieval -->
    <topic name="Demo Topic" location="jms/demoTopic">
    <description>A dummy topic</description>
    </topic>
    <!-- Topic bindings, these topic will be bound to their respective
    JNDI path for later retrieval -->
    <topic name="AlarmQueue" location="jms/alarmTopic">
    <description>A topic</description>
    </topic>
    <topic name="FaultTextQueue" location="jms/faultTextTopic">
    <description>A topic</description>
    </topic>
    <topic name="FaultTopologyQueue" location="jms/faultTopologyTopic">
    <description>A topic</description>
    </topic>
    <!-- path to the log-file where JMS-events/errors are stored -->
    <log>
    <file path="../log/jms.log"/>
    <!-- Uncomment this if you want to use ODL logging capabilities
    <odl path="../log/jms/" max-file-size="1000" max-directory-size="10000"/>
    -->
    </log>
    <queue name="jms/OracleSyndicateQueue" location="jms/OracleSyndicateQueue">
    <description>Oracle Syndication Services Queue</description>
    </queue>
    <!--
    <queue-connection-factory name="jms/OracleSyndicateQueueConnectionFactory"
    location="jms/OracleSyndicateQueueConnectionFactory"/>
    -->
    <queue-connection-factory location="jms/OracleSyndicateQueueConnectionFactory"/>
    <queue name="jms/OracleUddiReplicationQueue"
    location="jms/OracleUddiReplicationQueue">
    <description>Queue for replication scheduler</description>
    </queue>
    <!--
    <queue-connection-factory
    name="jms/OracleUddiReplicationQueueConnectionFactory"
    location="jms/OracleUddiReplicationQueueConnectionFactory"/>
    -->
    <queue-connection-factory location="jms/OracleUddiReplicationQueueConnectionFactory"/>
    <queue name="jms/OracleWebClippingQueue"
    location="jms/OracleWebClippingQueue">
    <description>Queue for Web Clipping</description>
    </queue>
    <!--
    <queue-connection-factory
    name="jms/OracleWebClippingQueueConnectionFactory"
    location="jms/OracleWebClippingQueueConnectionFactory"/>
    -->
    <queue-connection-factory location="jms/OracleWebClippingQueueConnectionFactory"/>
    </jms-server>

  • Problem Send Receive SMS in one midlet

    I'm writing one j2me midlet application using WMA library to send and Receive SMS.. Application behavior is : For receiving sms i implemented MessageListner so whenever sms comes, it notify the midlet and in that function i'm creating one thread and receiving sms and doing some parsing. Now i have to reply that sms so i'm sending some reply code by sms in the same thread but then after i'm unable to receive any message. Can any tell me what is the problem behind that? If i comment out send code then my application is able to receive any number of sms. I have used different connector.open objects like SMSREAD and SMSSEND to store message connection.
    Please help me in this. My send and receive part works perfectly if i do send and receive in two different midlets....................
    Any hint.....................
    Thanks in advance for your kind support...................

    LucasArt wrote:
    Can I send/receive sms in my nokia booklet 3g?
    which app can do it?
    Nokia Social Hub found under Programs > Nokia:
    Happy to have helped forum with a Support Ratio = 42.5

  • Set of subVIs for sending/receiving SMS written in LabVIEW

    I've just post a set of programs  for GSM modem on the following site:
    https://sites.google.com/site/tstalevski/labview-send---receive-sms-message
    With these subVIs you can send, receive, delete and list SMS meseges. Also you can easily test AT commands.
    If you have some questions regarding to using programs do not hesitate to contact me by e-mail.
    Trajan Stalevski
    [email protected]

    Hi
    There is no need to develope mobile application for
    sending SMS from the PC.
    n general, there are two ways to send SMS messages
    from a computer / PC to a mobile phone:
    Connect a mobile phone or GSM/GPRS modem to a
    computer / PC. Then use the computer / PC and AT
    commands to instruct the mobile phone or GSM/GPRS
    modem to send SMS messages.
    Connect the computer / PC to the SMS center (SMSC) or
    SMS gateway of a wireless carrier or SMS service
    provider. Then send SMS messages using a protocol /
    interface supported by the SMSC or SMS gateway.I would like to know how do you set up the whole thing. What are AT commands and Where do i get thm and how do i use them. i am sorry for asking so many question but i am really interested in knowing this. I am doing my school project which requires me to send sms from my PC.
    Please help!!!!
    Thanks
    Kholi

  • How to access deployed J2EE Web application ?

    Hi,
    I am new to J2EE Web Application. I have created a Web Module project and in that I have created a servlet. I did a build for WAR file. I have created an Enterprise Application Project and included this WAR file. I built  the EAP and deployed it to J2EE engine. I am successful till here.
    I am not sure how to access this deployed application and thus this servlet.
    I tried to access the following way :
    http://<hostname>:<portnumber>/<EAPName>/<ServletName>
    However, I receive the error no such location.
    In the web.xml file, in the servlet-mapping section, I have mentioned the servletname and urlpattern.
    I have mentioned the urlpattern as MyServlet and not /MyServlet. Notice the 'backslash'.
    Could this be an issue ?
    Regards,
    Subramanian V.

    Hi
    See this Thread
    Re: servlet ----->url association ?
    Re: Servlet not getting loaded when put in a jar file
    Re: I just want to run a simple servlet. No EJBs, no Web DynPro...
    /message/610344#610344 [original link is broken]
    Kind Regards
    Mukesh

  • How send/receive sms in j2me

    Hi Friends,
    I am very new to J2ME.I need source code for sending/receiving sms with J2ME as application.
    Can you give the guidence.
    Thanking you.
    Cheers,
    Sateesh

    yea google is ur friend. also try and get the documentations from jcp.org
    what you need is JSR 205

  • How a J2EE web application access CR reports stored on the CR Server XI?

    Hi,
    I'll be working on some crystal report templates that will eventually be hosted/publish on the CR Server XI.
    My questions are:
    1. How my J2EE web application access those reports?
    2. Do my web application uses some CR API for the connectivity and integration?
    3. What will happen to the database connectivity of the report template? since the report are created locally.
    4. Can the report template be edited/updated on the server?
    5. How the CR XI login functionality be involve in the integration (web application ---> CR Server XI)?
    6. Is the J2EE web application be deployed on similar web/application server where the CR Server XI resides?
    7. What is the role of RAS, Universe, Business View Manager to this whole CR integration?
    I hope you can provide some guidance on this journey to Crystal Report world
    Regards,
    Rulix Batistil
    Genesis Networks Pte Ltd
    www.gen-net.com.sg

    1) Your application connects via the Java SDK using the appropriate JAR files.
    2) It can.  You can set the database information at runtime or use the already populated information from Enterprise.
    3) Same as 2.   Typically when you save the report to Enterprise you set up the database information there so that it runs against the database you want without prompting.  You can change this via code to hit whatever equivalent database you want.
    4) Yes.  You would have to use RAS and the RCAPI to accomplish this via code.  You can also make changes in the designer and overwrite the existing report template.
    5) You will log in via code. The information on how to do so is in the SDK documentation, which I will link.
    6) It can be deployed to the same machine as CR Server, though we recommend against that.  Typically you will want to deploy it to a seperate web server and allow it to connect to the CR Server across the network.
    7) RAS can be used to run reports, as well as the page server.  The universe and business view manager are not directly used in code.  If a report runs against a universe or business view then it will use them for data, but you wouldnt do anything with them directly.
    [BOE Developer Library|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm]
    You will find the Java SDK information under the BusinessObjects Enterprise SDK section.
    Best Regards,
    Jason

  • Problem sending/ receiveing SMS on a particular port in an intercarrier n/w

    I am using JSR 120 to send & receive SMS on a particular port. This works perfectly between 2 devices using the same carrier.
    if I try sending & receive inter-carrier SMS, like from T-Mobile device to Cingular device (or vice-versa), my j2me app does not receive any SMS on the port it is listening to.
    When the SMS with a port is sent from my app, I get the prompt for permission to send. On pressing OK, the SMS is sent. On the receiving side, the device on the another carrier network receives the SMS in the default inbox, & not by my app.
    I am not sure if this is a inter-carrier SMSC issue or something to do with my app.
    Pl help.

    Has anyone come across the above mentioned problem? Pl let me know if there is any solution.
    Question simply put : When a j2me sms midlet sends an sms on a unique port to another j2me sms midlet listening on the same port, but served by a different carrier (cellular operator), why does the sms go to device inbox & not to my midlet?
    Thank you

  • Oracle forms to j2ee/web application

    Hello all,
    I need help with converting "oracle forms" to j2ee/web application. There are only 2-3 forms. But I needed to know how to do it from scratch. I looked at some softwares available to do it. But its costly.
    Basically the company I am working with, needed all the forms online, so that they can access it using a browser. As part of the development, I am using jdeveloper 10g.
    could some help me out
    Thanks a lot
    san

    Well if you need your Forms accesible from a browser you don't need to convert them to Java - you just use Forms on the Web - http://otn.oracle.com/formsupgrade
    If you still want to convert to Java have a look at the Forms page for more info:
    http://otn.oracle.com/products/forms
    and also here:
    http://www.oracle.com/technology/products/jdev/collateral/4gl/formsdesignerj2ee.html

  • Consume Portal Service from J2EE web application

    hi, i am a newbie to portal content development. My team have developed a J2EE web application to be run on the portal. Is it possible to consume a Portal Service from J2EE web application? If possible, deeply appreciate if you could provide some guidelines. Kindly advise. Thanks.

    Hi Theodore Yu,
    You need to expose your portal service as a webservice to consume it in a j2ee web application.
    For exposing a portal service to webservice check this link
    http://help.sap.com/saphelp_nw04/helpdata/en/43/cb213e578c0262e10000000a11466f/frameset.htm
    Thanks,
    Padmaja
    Edited by: Padmaja Pedapudi on May 20, 2008 2:03 PM

  • Send/receive sms in booklet 3g

    Can I send/receive sms in my nokia booklet 3g?
    which app can do it?
    i installed globetrotter connet - but it doesn't work, i  see message 'no device found',
    but i can still and normal use net via this modem
    Solved!
    Go to Solution.

    LucasArt wrote:
    Can I send/receive sms in my nokia booklet 3g?
    which app can do it?
    Nokia Social Hub found under Programs > Nokia:
    Happy to have helped forum with a Support Ratio = 42.5

  • Sending/Receiving SMS

    Hello,
    I'm not sure if this is the right forum but could anyone advise me how to enable my web application to generate and receive SMS (text) messages?
    Thanks.

    search for SMS GATEWAY

  • Send/receive SMS through Android phone

    Hi! I am looking for an application that would run on Linux (and doesn't use Google accounts or a cloud) to send and receive SMS through my noname Android phone. Does anyone know of any?
    Thanks !
    (Sorry if I'm in the wrong subforum, I didn't know where to put it)
    Last edited by Lala0KjOA (2014-10-02 10:22:06)

    ewaller wrote:What version Android?
    It's 4.2.2
    ewaller wrote:Your emphatic 'yes' back in post 15, was that a yes to both of my questions?
    Yes.
    ewaller wrote:Anything interesting in the end of the output of dmesg after you attach?
    When I connect with MTP (I guess?)
    [105556.660105] usb 1-5: new high-speed USB device number 14 using xhci_hcd
    [105556.834682] usb-storage 1-5:1.0: USB Mass Storage device detected
    [105556.834747] scsi12 : usb-storage 1-5:1.0
    [105557.837579] scsi 12:0:0:0: Direct-Access Linux File-CD Gadget 0000 PQ: 0 ANSI: 2
    [105557.839758] sd 12:0:0:0: [sdc] Attached SCSI removable disk
    [105559.587703] usb 1-5: USB disconnect, device number 14
    [105560.081577] usb 1-5: new high-speed USB device number 15 using xhci_hcd
    [105560.258043] usb-storage 1-5:1.0: USB Mass Storage device detected
    [105560.258157] scsi13 : usb-storage 1-5:1.0
    [105561.259137] scsi 13:0:0:0: CD-ROM Linux File-CD Gadget 0000 PQ: 0 ANSI: 2
    [105561.260665] sr1: scsi-1 drive
    [105561.260774] sr 13:0:0:0: Attached scsi CD-ROM sr1
    It mounts as a CD-ROM indeed, and contains ADB.rar.
    When I connect as a USB mass storage
    [105638.772182] usb 1-5: new high-speed USB device number 17 using xhci_hcd
    [105638.947087] usb-storage 1-5:1.0: USB Mass Storage device detected
    [105638.947178] scsi14 : usb-storage 1-5:1.0
    [105639.949710] scsi 14:0:0:0: Direct-Access Linux File-CD Gadget 0000 PQ: 0 ANSI: 2
    [105639.950990] sd 14:0:0:0: [sdc] Attached SCSI removable disk
    [105659.265279] sd 14:0:0:0: [sdc] 7698432 512-byte logical blocks: (3.94 GB/3.67 GiB)
    [105659.265515] sd 14:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [105659.272662] sdc: sdc1
    Also,
    $ adb devices
    List of devices attached
    $ adb shell
    error: device not found
    Maybe I did something wrong, but also, the phone is very cheap. Thanks for helping!

  • Exchange 2013 Create an smtp relay to allow sending emails to other domains from web application

    Hello,
    We have an exchange 2013 and we want to allow a web application that is outside the organisation to send emails through our sever to external domain.
    Do we have to create an smtp receive or sending connector? How this on has to be configured ?
    Thank you in advance.
    m

    Hello Mehdi,
    be sure that you enable exchange servers permission and externally secured authentication after you create the receive connector.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. My blog:http://msibrahim.wordpress.com/

Maybe you are looking for

  • Printing Lists in ical

    i would like to print a list of my events. Is there a way to eliminate the days where nothing is scheduled. Currently it prints "no entry"

  • Transactions used in simple file-idoc scenario

    hi all, what are the transactions used in idoc scenario...(Ex: idx1 for creating new idco) let me know what is the transaction code to find the clients available... Is it 'SCC4' Please provide me required info Thanks Narasimha Edited by: Narasimha bo

  • Should I Render Video-Audio in Final Cut Pro or Compressor?

    The last time I read-up on this it was concluded I should trash/empty all my FCP project Audio/Video render files, then Export FCP>Compressor for best quality Mpeg2 and Audio compression. What is current, render both in FCP6 or trash all and let Comp

  • File processing task

    Hello, everybody! Task for resolve: I have *.txt file with constans which looks like: #define FIRST_CONSTANT 101 #define SECOND_CONSTANT 10101 #define THIRD_CONSTANT 7877 etc... So, I need to parse it and have the java.util.HashMap where keys - names

  • How to schedule lsmw in background

    hai all,            can any one tell me how can lsmw for a transaction can be background scheduled.