Internet Mail Access Protocol implementation in java

hi ,
i want to implement IMAP , using java. I dont know much on this. can any one guide me on this. Presently Server/Client is in POP3
thank you in advance

http://java.sun.com/developer/onlineTraining/JavaMail/
contents.htmlI was about to refer him to the j2ee API, but I guess your link is better ;)

Similar Messages

  • TM (1st Gen), Lion, Thunderbolt, and Internet/Mail Access

    Hi everyone,
    I ran into a bit of a problem that has me stumped.  I upgraded to Lion on a new Macbook Pro back in July.  I have an Apple Thunderbolt display connected to the MBP. I recently unboxed and connected my 1st generation Time Machine and started having internet connection issues.  I am not using my TM to create a wireless network but only as a hard drive to back up my laptop.  I connect to a wireless network not created through this TM.  My TM is connected via the ethernet port on back of the Thunderbolt display.  My observation is that whenever the TM is connected I have internet connection issues (mail - iCloud/Gmail, Safari, and Firefox).  Whenever I disconnect the TM from the ethernet port on the Thunderbolt display and turn off Time Machine from the Time Machine Preferences, I have no connection issues.
    Has anyone run into a similar problem?  I would like to continue using TM to back up my MBP hard drive but also want to be able to access the internet.  Any suggestions?
    Thanks in advance.

    I called Apple support and they helped me solve the problem.  I should have written down the specifics, but basically I needed to streamline my prefs.  I was using both DHCP and PPPoE.  I turned off the PPPoE setting in the Airport utility in the utility folder in the Applications menu.  Sorry I can't be more specific.  I then had to restart the computer for the changes to take affect. 

  • Can my iMac share Internet with access for Apple Mail client?

    I'm sharing my internet connection from my iMac over the Airport card to my MacBook. The iMac is connected via ethernet to my cable modem. Everything works great, except my MacBook cannot access my .mac mail from Apple Mail (Safari web access works great). Are there additional services I need to open on my iMac for this to work?
    Thanks for any assistance!

    In the Sharing pane of System Preferences, open ports 25 and 110 for outbound and inbound mail access respectively. If it still doesn't work, open port 443 as well. To open a port, click on the Firewall tab, followed by the New button. Choose Other from the drop-down menu at the top, enter the numbers 25 and 110 in the TCP port text field, and click OK.
    (12640)

  • Can I read mails in OutLook Express in Java ?

    Hi Guys,
    Just curious if I can access mails in Outlook Express in Java.
    Thank you for your consideration.

    jwenting wrote:
    If memory serves (OE is heavily outdated, haven't used it in years) OE stored its messages as flat text files in a directory on the user's harddisk.
    Reading those files should be child's play.I checked my system and there are only .dbx files created for each mail folder (my filters).I am using Outlook Express 6.0.

  • 1)unexpected Exception:page fault accessing tag table 2)java.rmi.MarshalException:Unexpected Exception page fault accessing page table

    i am trying to call WCF service by using Jsr 172 method
    but i got the two error
    1)unexpected Exceptionage fault accessing tag table
    2)java.rmi.MarshalException:Unexpected Exception page fault accessing page table
    does anybody knows about how to solve this error.
    Plz help me
    thanks in advance!!!!!!!!!!!
      My Code is:-----
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.MainScreen;
    public class webservice extends UiApplication
        public webservice()
            pushScreen(new myscreen());
        public static void main(String[] args)
            webservice t=new webservice();
            t.enterEventDispatcher();
    final class myscreen extends MainScreen implements FieldChangeListener
        //taking this program from :-http://blog.bayestech.com/?p=78
         public myscreen()
             setTitle("HI");
             ButtonField g=new ButtonField("OK",ButtonField.CONSUME_CLICK);
             g.setChangeListener(this);
             add(g);
        public void fieldChanged(Field field, int context)
            try
                testServiceCall();
            catch (RemoteException e)
                Dialog.alert(e.getMessage());
                Dialog.alert(e.toString());
         public void testServiceCall() throws RemoteException
                TestService_Stub service = new TestService_Stub();
                //String  message = service.helloWorld();
               // Dialog.alert(message);
              // String  message2=service.echoName("ankush,nilesh,chetan,ravi");
                //Dialog.alert(message+"  second message  "+message2);
                // Object addition_output=service.addition(7,2);
                 //Dialog.alert("your addition is" +  String.valueOf(addition_output));
                 String  login_message = service.logOn_method("abcdefg","aaaaa");
                 Dialog.alert("login successfully");
                 Dialog.alert(login_message);
    //////////////TestService_Stub class file///////////////////////
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import javax.xml.rpc.JAXRPCException;
    import javax.xml.namespace.QName;
    import javax.microedition.xml.rpc.Operation;
    import javax.microedition.xml.rpc.Type;
    import javax.microedition.xml.rpc.ComplexType;
    import javax.microedition.xml.rpc.Element;
    import net.rim.device.api.ui.component.Dialog;
    public class TestService_Stub implements TestService,javax.xml.rpc.Stub
        ///calling web services by using jsr-172 method
        //website link :- http://blog.bayestech.com/?p=78
        private String[] _propertyNames;
        private Object[] _propertyValues;
      //  private Object[] _propertyValues1;
        public TestService_Stub()
            _propertyNames = new String[] { ENDPOINT_ADDRESS_PROPERTY };
           // _propertyValues = new Object[] { "http://test.bayestech.com/Services/TestService.asmx" };
          // _propertyValues = new Object[] { "http://soft21/testWCF/Service.svc" };
            _propertyValues = new Object[] { "< url name >" };
     protected void _prepOperation(Operation op)
            for (int i = 0; i < _propertyNames.length; ++i)
                op.setProperty(_propertyNames[i], _propertyValues[i].toString());
     public String logOn_method(String usr_name,String password_name ) throws java.rmi.RemoteException
          Object inputObject[] = new Object[]
                  usr_name,
                  password_name
          Operation op = Operation.newInstance( _qname_operation_logOn, _type_logOn, _type_logOnResponse );
          _prepOperation( op );
          op.setProperty( Operation.SOAPACTION_URI_PROPERTY, "<soap action name >" );
          Object resultObj;
          try
              resultObj = op.invoke( inputObject );
              Dialog.alert((String)resultObj);
          catch( JAXRPCException e )
              Throwable cause = e.getLinkedCause();
              if( cause instanceof java.rmi.RemoteException )
                  throw (java.rmi.RemoteException) cause;
              Dialog.alert(e.getMessage());
              throw e;
          return (String )((Object[])resultObj)[0];
     protected static final QName _qname_operation_logOn = new QName( "<soap action name>", "logOn" );
        protected static final QName _qname_logOnResponse = new QName( "<soap action name>", "logOnResponse" );
        protected static final QName _qname_logOn = new QName( "<soap action name>", "logOn" );
        protected static final Element _type_logOn;
        protected static final Element _type_logOnResponse;
        static
     _type_logOn = new Element( _qname_logOn, _complexType( new Element[] {
                 new Element( new QName( "<soap action name>", "usr_name" ), Type.STRING, 0, 1, false ),
                 new Element( new QName( "<soap action name>", "password_name" ), Type.STRING, 0, 1, false )}), 1, 1, false );
            _type_logOnResponse = new Element( _qname_logOnResponse, _complexType( new Element[] {
                  new Element( new QName( "<soap action name>", "logResult" ), Type.INT, 0, 1, false )}), 1, 1, false );
        private static ComplexType _complexType( Element[] elements )
            ComplexType result = new ComplexType();
            result.elements = elements;
            return result;
        public void _setProperty(String name, Object value) {
            // TODO Auto-generated method stub
        public Object _getProperty(String name) {
            // TODO Auto-generated method stub
            return null;
        public String echoName(String name) throws RemoteException {
            // TODO Auto-generated method stub
            return null;
        public String helloWorld() throws RemoteException {
            // TODO Auto-generated method stub
            return null;
    i am trying to call WCF service by using Jsr 172 method
    but i got the two error
    1)unexpected Exceptionage fault accessing tag table
    2)java.rmi.MarshalException:Unexpected Exception page fault accessing page table
    does anybody knows about how to solve this error.
    Plz help me
    thanks in advance!!!!!!!!!!!
      My Code is:-----
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.container.MainScreen;
    public class webservice extends UiApplication
        public webservice()
            pushScreen(new myscreen());
        public static void main(String[] args)
            webservice t=new webservice();
            t.enterEventDispatcher();
    final class myscreen extends MainScreen implements FieldChangeListener
        //taking this program from :-http://blog.bayestech.com/?p=78
         public myscreen()
             setTitle("HI");
             ButtonField g=new ButtonField("OK",ButtonField.CONSUME_CLICK);
             g.setChangeListener(this);
             add(g);
        public void fieldChanged(Field field, int context)
            try
                testServiceCall();
            catch (RemoteException e)
                Dialog.alert(e.getMessage());
                Dialog.alert(e.toString());
         public void testServiceCall() throws RemoteException
                TestService_Stub service = new TestService_Stub();
                //String  message = service.helloWorld();
               // Dialog.alert(message);
              // String  message2=service.echoName("ankush,nilesh,chetan,ravi");
                //Dialog.alert(message+"  second message  "+message2);
                // Object addition_output=service.addition(7,2);
                 //Dialog.alert("your addition is" +  String.valueOf(addition_output));
                 String  login_message = service.logOn_method("abcdefg","aaaaa");
                 Dialog.alert("login successfully");
                 Dialog.alert(login_message);
    //////////////TestService_Stub class file///////////////////////
    package com.rim.sample.webservicedemo;
    import java.rmi.RemoteException;
    import javax.xml.rpc.JAXRPCException;
    import javax.xml.namespace.QName;
    import javax.microedition.xml.rpc.Operation;
    import javax.microedition.xml.rpc.Type;
    import javax.microedition.xml.rpc.ComplexType;
    import javax.microedition.xml.rpc.Element;
    import net.rim.device.api.ui.component.Dialog;
    public class TestService_Stub implements TestService,javax.xml.rpc.Stub
        ///calling web services by using jsr-172 method
        //website link :- http://blog.bayestech.com/?p=78
        private String[] _propertyNames;
        private Object[] _propertyValues;
      //  private Object[] _propertyValues1;
        public TestService_Stub()
            _propertyNames = new String[] { ENDPOINT_ADDRESS_PROPERTY };
           // _propertyValues = new Object[] { "http://test.bayestech.com/Services/TestService.asmx" };
          // _propertyValues = new Object[] { "http://soft21/testWCF/Service.svc" };
            _propertyValues = new Object[] { "< url name >" };
     protected void _prepOperation(Operation op)
            for (int i = 0; i < _propertyNames.length; ++i)
                op.setProperty(_propertyNames[i], _propertyValues[i].toString());
     public String logOn_method(String usr_name,String password_name ) throws java.rmi.RemoteException
          Object inputObject[] = new Object[]
                  usr_name,
                  password_name
          Operation op = Operation.newInstance( _qname_operation_logOn, _type_logOn, _type_logOnResponse );
          _prepOperation( op );
          op.setProperty( Operation.SOAPACTION_URI_PROPERTY, "<soap action name >" );
          Object resultObj;
          try
              resultObj = op.invoke( inputObject );
              Dialog.alert((String)resultObj);
          catch( JAXRPCException e )
              Throwable cause = e.getLinkedCause();
              if( cause instanceof java.rmi.RemoteException )
                  throw (java.rmi.RemoteException) cause;
              Dialog.alert(e.getMessage());
              throw e;
          return (String )((Object[])resultObj)[0];
     protected static final QName _qname_operation_logOn = new QName( "<soap action name>", "logOn" );
        protected static final QName _qname_logOnResponse = new QName( "<soap action name>", "logOnResponse" );
        protected static final QName _qname_logOn = new QName( "<soap action name>", "logOn" );
        protected static final Element _type_logOn;
        protected static final Element _type_logOnResponse;
        static
     _type_logOn = new Element( _qname_logOn, _complexType( new Element[] {
                 new Element( new QName( "<soap action name>", "usr_name" ), Type.STRING, 0, 1, false ),
                 new Element( new QName( "<soap action name>", "password_name" ), Type.STRING, 0, 1, false )}), 1, 1, false );
            _type_logOnResponse = new Element( _qname_logOnResponse, _complexType( new Element[] {
                  new Element( new QName( "<soap action name>", "logResult" ), Type.INT, 0, 1, false )}), 1, 1, false );
        private static ComplexType _complexType( Element[] elements )
            ComplexType result = new ComplexType();
            result.elements = elements;
            return result;
        public void _setProperty(String name, Object value) {
            // TODO Auto-generated method stub
        public Object _getProperty(String name) {
            // TODO Auto-generated method stub
            return null;
        public String echoName(String name) throws RemoteException {
            // TODO Auto-generated method stub
            return null;
        public String helloWorld() throws RemoteException {
            // TODO Auto-generated method stub
            return null;

    Vishnu,
    I'm working on Ludwig's testcase.
    Ludwig's testcase is based on read-only View Objects.
    Is it also the case in your application ?
    I was unable to reproduce with VOs based on EOs.
    With read-only VOs, you can avoid the ArrayIndexOutOfBoundsException by setting the "Key Attribute" property for the PK of the Master VO.
    See the ADF Developer's Guide, topic "7.9.3 What You May Need to Know About Enabling View Object Key Management for Read-Only View Objects"
    URL: http://download-uk.oracle.com/docs/html/B25947_01/bcvoeo009.htm#BABJEEFA
    Regards,
    Didier.

  • Access System Resources using Java Applet via Java Script

    Hello
    I can access my Applet public methods (and this methods access system resources) via Java Script if I do the following: System.setSecurityManager(null);However, I'm making this post because I don't like this solution.
    Supposedly, setting the SM to null is like making the Applet (which is signed and was accepted by the user via a prompt from the browser) behave like a normal Java program that has no restrictions. (http://java.sun.com/docs/books/tutorial/essential/environment/security.html, second paragraph)
    However, this feels like a workaround of something that is supposed to be there (the SM).
    Also, if I make the methods invocation from inside the applet (using swing buttons and textboxes for example) I can use the standard SM without no problems.
    From my readings, the problem regarding Java Script invocation, comes from the fact that the Java Script is not a secure (not signed) source (because you can invoke public methods the way you wish from it i guess) on the contrary to the applet methods invoked by the buttons.
    Possible solutions I found in the web range from using the public static Object doPrivileged(PrivilegedAction action) method or imaginative things like creating new threads on the public method that call the private methods that access the system resources (supposedly because the new thread runs under the safe environment of the applet)
    I almost got a glimpse of hope with this post http://forums.sun.com/thread.jspa?threadID=5325271&tstart=0
    However, none of these solutions worked, the only results were with the setResourceManager(null)So, any one can contribute with a solution for this? Should I keep trying to find a solution other then the one I already have?
    Regards
    Cad

    1. yes
    2. yes
    Note for 2. the converter will run the applet with SUN jre for sure if the user has IE.
    IE will use the ActiveX technology to run the applet (as with Macromedia Flash).
    For Netscape I am not sure, but I would think Netsape will use the plug in provided by
    SUN.
    Note for SUN jre 1.3. If this applet is to be used within a company that uses a proxy with
    ntlm authentication the 1.3 applet cannot connect (to the Internet) through this proxy since
    ntlm athentication is supported since j2re1.4.2_03. There is one version before that but
    that one will pop up a window asking for the user's domain account and password wich
    is both lame and crappy.
    As for the IE settings, IE has a default setting that askes users the "do you trust"
    queston for AciveX controls within the Internet securety zone (tools -> internet options
    -> security).
    Sincy anybody can make ActiveX controls (allso sign them) a user that has a problem
    to find the "no" button will sooner or later install a malicuous ActiveX control (spy ware
    or a virus).
    If this user's desktop is within your company's network it will cause serious harm.
    This is why most company's disable this by changing the default internet expolorer
    settings. Since I assume you are writhing this applet to be used by a company I allso
    assumed that company has someone to maintain the desktops. In that case I
    assume that person would want to control the security within the SUN jre instead of
    letting the user deside what to trust and what not.

  • No internet = Mail INSANITY!

    (This is a similar post I just put up in the iCal forum... but it involves Mail, so I'm posting the short version here as well.)
    My cable internet went out last night, so I decided to (gasp!) work offline until it came back on. So I booted up... and the first thing I saw was an iCal alarm, which in turn loaded up Mail.
    "Hmm," I thought. "That's funny, I don't have any reminders set for today."
    Well, after that I watched in horror as iCal opened up EVERY EMAIL reminder I've EVER set up in iCal. complete with a Mail program which couldn't connect to the internet (which, in turn, was freaking out as well, ala the beachball 'o death)... more importantly, after I finally used Activity Monitor to force quit the iCal helper app, I saw that Mail had 85 outgoing messages in cue! All of which were "ghost" messages it was trying to send out, random messages from years past.
    Thank God I wasn't connected!
    So... what the HECK was happening here? Are we THAT addicted to the internet that when there's no connection, the whole system goes kaplooey? Where did those messages come from? They were LONG deleted, and a random smattering of days and dates going back several years!
    And, yes, the Date & Time was accurate, even the year.
    What's going on!?!?
    e

    Hi,
    According to your description, I understand that restrict a group of users outside mail access and only allow internal mail flow.
    If I misunderstand your concern, please do not hesitate to let me know.
    It also can be done by transport rule. Figure as below:
    Note: please click “More Option…”  to add additional condition.
    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

  • ESB Implementation in Java to connect various services

    Hi,
    I am looking to use ESB to integrate various webservices running in differenr platforms like one in Java,PHP and .NET.
    I am using Oracle SOA Suite. Is there any examples in the internet how to do this? I am not able to find any? It will be really great if some can provide some light into this for the below points:-
    1) Setting up the ESB infrastructure
    2) ESB implementation in java
    3) To implement ESB we need to use only the JMS?
    Please do provide some helping hand which will help me to understand it and complete the process.
    Thanks in advance.

    I decompiled HttpClient and ConsoleClientImpl and this is what I found --- The following URL is what is constructed,
    http://localhost:80/esb/j_security_check and these parameters are passed as POST - j_username=oc4jadmin&j_password=welcome1
    I tried
    http://localhost:80/esb/j_security_check?j_username=oc4jadmin&j_password=welcome1
    and got 404 error.
    However, this exercise confirmed that hostname=localhost and port=80 is just fine.. the problem seems to lie somewhere else

  • How to access vc dll with java

    I need to access vc dll with java. Now I only have *.h,*.lib, *.dll,no *.cpp,because the dll is from others. I cann't modify the *.cpp files for java. so what should I do .
    Best wishes.

    Create a JNI wrapper for rhe dll:
    1)Create a java class that defines methods that correspond to the methds in the c++ dll
    2)compile this, and compile it with the jni compiler to get the c++ header files.
    3)Create a C++ file that implements the methods defined in the header file, calling the c++ code as necesssary and using the JNI helpess to translate parameters from java form to C++ from.
    4)Perform any initialisation of th c++ dll by adding a DllMain() or equivalent under unix/linux
    5)create a makefile to build a dll from the above, linking to your import (.lib) library
    6)make sure both DLLs are with your java class files when you run the java app.

  • Do you have to join MobileMe to have e mail access?

    Hi all-
    I have a problem. First up, forgive me for being a bit stupid - but I'm not very computer savvy so this may be REALLY obvious to the rest of you.
    My issue is this, I use my i-phone for e mail all the time; and when I first got the phone I signed up for a mobile me account as I seemed to have little choice and I wanted to be able to receive and send e mails and this seemed to be the only route. However, I don't use ANY of the other functions offered by mobile Me so I rather resent the annual subscription which I think is pretty steep and now my renewal is up, I'd rather not subscribe. But will I loose all e mail access?
    When I had hotmail accounts they were free. Is it possible to keep my mac.com e mail address and get access, or will I have to go to another type of account and merge that with the phone?
    Thanks for your help!

    You do not require a MobileMe account.
    iPhone will support any POP3 (Hotmail) or IMAP-based email account (Yahoo, Gmail etc.) You'll be better going for an IMAP-based email account because your iPhone will mirror the folders that are used when you logon to your account via the internet. POP3, such as Hotmail, will only show you your inbox, draft, sent and trash.
    I don't have a MobileMe account, but I would expect if you cancel your subscription you will lose your old mac.com email address. Thus, you're better setting up a new web-based account now and change your mac.com email address to your new one for all the web-based services you've subscribed to, before it is closed!

  • Logging HTTP access protocol

    Is there any way to log the HTTP access protocol in the access.log file (HTTP vs
    HTTPS). I tried the extended format using the following format:
    #Fields: c-ip date time cs-method cs-uri status bytes
    The log entries I get are of the format:
    169.254.114.81 2003-09-12 06:31:50 GET /test/HelloWorld.jsp - 459
    Note that the URI is relative to the document root and does not include the protocol
    (HTTP vs HTTPS). Also the status is showing up as a dash, which is surprising.
    Thanks.
    Naresh

    For getting the status use, sc-status in the field header.
    The whole URL can be logged by using a custom Java Class that can be added
    to the 'Fields' header.
    Thanks,
    Selva-
    [email protected]
    "Naresh Bhatia" <[email protected]> wrote in message
    news:3f61d993$[email protected]..
    >
    Is there any way to log the HTTP access protocol in the access.log file(HTTP vs
    HTTPS). I tried the extended format using the following format:
    #Fields: c-ip date time cs-method cs-uri status bytes
    The log entries I get are of the format:
    169.254.114.81 2003-09-12 06:31:50 GET /test/HelloWorld.jsp -459
    >
    Note that the URI is relative to the document root and does not includethe protocol
    (HTTP vs HTTPS). Also the status is showing up as a dash, which issurprising.
    >
    Thanks.
    Naresh

  • Internet mail about form: hyperlink

    Hi,
    HR module,send notification to user(internet mail),the format come from se71 Sap Script.
    I write :<U> https://www.baidu.com </>
    and in the mail display<u>https://www.baidu.com</u>
    is it possible to let user link to a web address???
    How to implement it?

    Hi
    In the editor in SE71, try this:
    1).  Change editor to the classical editor Goto -> Change Editor
    2)   Use tag /* 
    3)   Insert <a href=: https://www.baidu.com> Click here <\a>
    Regards
    Morten Nielsen
    Message was edited by:
            Morten Nielsen
    Message was edited by:
            Morten Nielsen
    Message was edited by:
    Sorry  -  but inserting a tag here so it's display isn't possible - but you need to put the HTML tags around the url in SAP Script

  • SUn Internet Mail Server

    We want to buy SUN Internet Mail Server. Please let me know whom to contact in INDIA

    I don't think SIMS is being sold anymore. You might want to use whatever is contained in the Java Enterprise System. See the Sun web site or a phone book for phone numbers.
    alan

  • How can I move my Verizon e-mail accessed from my iPAD to folders?

    How can I move my Verizon e-mail accessed from my iPAD to folders?

    If your Verizon account is an IMAP account you can create folders on the iPad via the Edit button when you are in the account. If you see an edit button in the window where your inbox, draft folder, sent folder and trash folder appear in that account - tap on it and an Add Mailbox button will pop up at the bottom of the window. If there is no Edit button there - your account is not an IMAP account and you cannot create folders on the iPad in the mail app.

  • Itunes will not connect to the internet or access store with working internet connection. ive already tried updating to latest version and turning off windows firewall. running a new dell computer w/ windows 7 with minimal programs installed

    Itunes will not connect to the internet or access store with working internet connection. ive already tried updating to latest version and turning off windows firewall. running a nItunes will not connect to the internet or access store with working internet connection. ive already tried updating to latest version and turning off windows firewall. running a new dell, windows 7 ultimate, no virus or firewall programs installed.

    This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
    I live in Europe ,So Be persistent and don't give up !  Aug. 2013

Maybe you are looking for

  • Azure remote App with Azure SQL Backend

    Hi, If I had an application which utilised a SQL backend could I host the front end in Azure remote app and the backend on an Azure SQL database or would I need to use IAAS to provide the backend? Many thanks James 

  • Syntax error while compiling

    Hi Gurus, I have started with VC and while compiling a model, I get a syntax error in Fiscalyear (variable in the query). the message is "The expression in field 'FiscalYear' contains an error: Syntax error". "Stopped due to errors" Have no clues as

  • InDesign Crashes When Export to PDF - Only When Hyperlinks Checkbox is Enabled

    I think I've read every single posting on the web for InDesign crashing on export, and have tried pretty much all of the solutions with no luck. I am exporting a document (a table of contents document) in InDesign to PDF. With any of the export optio

  • I cant update my iphoto from 2.0

    I try to update my iphoto but it says i dont have eligible iphoto apps. Help . I want to put pics on my ipod please HELP

  • [SOLVED] I cannot shutdown from Xfce

    I use arch 64 bit, xfce 4.4.1 and kdm. After update today I can no longer shutdown from xfce - I can only log out to kdm, and then shutdown. I am in group 'power' and I have /opt/xfce4/libexec/xfsm-shutdown-helper in sudoers, but that file (xfsm-shut