Setting up a provider

Hi there!
I am trying to use the RSA algorithm to generate a keyPair. I am then using that public key f that keyPair to initialize a Cipher object. BUt htis is not working because I am getting an error saying
"java.security.NoSuchAlgorithmException: Cannot find any provider supporting RSA
     at javax.crypto.Cipher.getInstance(DashoA6275)"
How do I go about setting up the provider for RSA. Also I have posted part of my code below because I would like to know if what I am doing is actually possible.
1. I set up a KeyPair with RSA
2. I get an instance of a Cipher with RSA an then initialize the Cipher object with RSA.
3. I create a SealedObject with this cipher
KeyPairGenerator kpg = KeyPairGenerator.getInstance("RSA");
kpg.initialize(1024);
kp = kpg.generateKeyPair();
Cipher encipher = Cipher.getInstance("RSA");
encipher.init(Cipher.ENCRYPT_MODE, kp.getPublic());
SealedObject sealedObject = new SealedObject(vote, encipher);Thanks for your help,
B

Trying to use DES. Getting similar error:
java.security.NoSuchAlgorithmException: Cannot find any provider supporting DES
at javax.crypto.Cipher.getInstance(DashoA6275)
I have SUN's classes loaded on to system. As per the documenation, it should have DES supported.
Code:
Provider providers[]=Security.getProviders();
if(providers == null)
System.out.println("No Providers Installed!!!");
return;
int nSize = providers.length;
for(int i=0;i < nSize; i++)
System.out.println(providers.toString());
java.security.Security.addProvider(new com.sun.crypto.provider.SunJCE());
Cipher cipher = Cipher.getInstance("DES");
SecretKey key = KeyGenerator.getInstance("DES").generateKey();
SUN version 1.2
SunRsaSign version 1.0
java.security.NoSuchAlgorithmException: Cannot find any provider supporting DES
at javax.crypto.Cipher.getInstance(DashoA6275)
In java.security, I have following entries:
security.provider.1=sun.security.provider.Sun
security.provider.2=com.sun.rsajca.Provider
Pls help..

Similar Messages

  • Problems setting up foreign provider

    Hi, I'm trying to get my Weblogic 8.1 server to talk to a remote Websphere server (this is the trial installation of WS so it's not a full version of MQ).
              Basically I set up a connection factory and topic on the websphere machine. THen in Weblogic I created a foreign server containing the initial context factory com.ibm.websphere.naming.WsnInitialContextFactory and the provider url iiop://xxx.xx.xx.xx:2809 (no user/password). Then I proceded to setup a connection factory and a topic.
              I have a stand-alone client running outside the server that tries to connect to the local name of the foreign connection factory but I get an InvalidName exception when it tries to look up the connection factory. From teh stack trace it looks like it is actually trying to look it up on the foreign server but failing.
              portion of config.xml that defines the foreign JMS server:
              <ForeignJMSServer ConnectionURL="iiop://10.0.00.00:2809"
              InitialContextFactory="com.ibm.websphere.naming.WsnInitialContextFactory"
              JNDIProperties="" Name="websphere" Targets="myServer">
              <ForeignJMSConnectionFactory LocalJNDIName="com.abc.def.WSCF"
              Name="Websphere CF" RemoteJNDIName="com.abc.def.connectionFactory"/>
              <ForeignJMSDestination LocalJNDIName="com.abc.def.WSXYZ"
              Name="WSXYZ" RemoteJNDIName="XYZ"/>
              </ForeignJMSServer>
              In the code I set up the initial context with a provider URL that points to the local server (same machine actually) and the standard weblogic initial context factory class.
              The code is very simple JMS client code that works when talking to the local server with a normal connection factory etc and a local topic but when I change the connection factory to "com.abc.def.WSCF" and the topic to "com.abc.def.WSXYZ" I get the following error:
              javax.naming.InvalidNameException: Exception in lookup. [Root exception is org.omg.CosNaming.NamingContextPackage.InvalidName: IDL:omg.org/CosNaming/NamingContext/InvalidName:1.0]
              at weblogic.corba.j2ee.naming.Utils.wrapNamingException(Utils.java:47)
              at weblogic.corba.j2ee.naming.ContextImpl.lookup(ContextImpl.java:235)
              at weblogic.corba.j2ee.naming.ContextImpl.lookup(ContextImpl.java:171)
              at javax.naming.InitialContext.lookup(InitialContext.java:347)
              at kmr.jms.PublishToTopic.main(PublishToTopic.java:95)
              Caused by: org.omg.CosNaming.NamingContextPackage.InvalidName: IDL:omg.org/CosNaming/NamingContext/InvalidName:1.0
              at weblogic.iiop.OutboundRequestImpl.sendReceive(OutboundRequestImpl.java:187)
              at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:284)
              at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteRef.java:244)
              at weblogic.corba.cos.naming.NamingContextAny_IIOP_WLStub.resolve_any(Unknown Source)
              at weblogic.corba.j2ee.naming.ContextImpl.lookup(ContextImpl.java:213)
              ... 3 more
              Caused by: org.omg.CosNaming.NamingContextPackage.InvalidName: IDL:omg.org/CosNaming/NamingContext/InvalidName:1.0 IDL:omg.org/CosNaming/NamingContext/InvalidName:1.0
              at org.omg.CosNaming.NamingContextPackage.InvalidNameHelper.read(InvalidNameHelper.java:60)
              at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
              at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
              at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
              at java.lang.reflect.Method.invoke(Method.java:324)
              at weblogic.iiop.IIOPInputStream.readWithHelper(IIOPInputStream.java:2071)
              at weblogic.iiop.IIOPInputStream.read_IDLEntity(IIOPInputStream.java:2060)
              at weblogic.iiop.IIOPInputStream.read_IDLEntity(IIOPInputStream.java:2051)
              at weblogic.iiop.ReplyMessage.getThrowable(ReplyMessage.java:360)
              at weblogic.iiop.InboundResponseImpl.getThrowable(InboundResponseImpl.java:59)
              at weblogic.iiop.OutboundRequestImpl.sendReceive(OutboundRequestImpl.java:174)
              ... 7 more
              I took the iiop stuff in the stack trace to mean that it is actually trying to go over to the websphere server and do the lookup but it's not working for some reason...
              Can anybody give me some suggestions on what to try??

    Thanks for the response Tom. Here is the classpath:
              /h/COTS/BEAPLT/weblogic81/server/lib/webservices.jar:/h/COTS/BEAPLT/weblogic81/server/lib/ejbgen.jar::::/h/COTS/BEAPLT/weblogic81/common/eval/pointbase/lib/pbserver44.jar:/h/COTS/BEAPLT/weblogic81/common/eval/pointbase/lib/pbclient44.jar:/h/COTS/BEAPLT/weblogic81/common/eval/pointbase/lib/pbtools44.jar::/utils_common.jar:/h/COTS/BEAPLT/jdk142_06/lib/tools.jar:/h/COTS/BEAPLT/weblogic81/server/lib/weblogic_sp.jar:/h/COTS/BEAPLT/weblogic81/server/lib/weblogic.jar
              wlclient.jar is the thin one right? I don't see any here that are thin and the thick one is at the end.
              Also, I'm using "t3://localhost:80" for the provider url into weblogic (I know 80 is not default but this server was configured ot use 80 for some reason).
              Thanks again for the response - any addtnl info is greatly appreciated.

  • Intermittent error on x86 chip set: Cannot validate provider JSDP

    <p>Hello,</p>
    <p>
    I am experiencing an intermittant issue on an X86 chip set machine running Solaris 10.
    </p>
    <p>
    I have statically registerd the JSDP provider with the jre used by WLS by adding it to the java.security file:
    security.provider.8=com.entegrity.jsdp.security.provider.JSDP
    </p>
    <p>
    I did not copy the jsdp.jar file to the jre ext folder however as this causes class loading issues.
    </p>
    <p>
    This was all that was required to allow the JSDP provider to be trusted by the jvm on sparc solaris 10 machine, however on the X86 machine we get the following error:
    </p>
    <p>
    6/17/08 2:36:29 PM (thread 0 run 0): Aborted run, script threw class java.rmi.RemoteException: Error in ejbCreate:; nested exception is:
    javax.ejb.CreateException: java.lang.InstantiationException: java.lang.SecurityException: Cannot validate provider JSDP:java.lang.Securi
    tyException: The jar is not signed by a trusted signer
    java.rmi.RemoteException: Error in ejbCreate:; nested exception is:
    javax.ejb.CreateException: java.lang.InstantiationException: java.lang.SecurityException: Cannot validate provider JSDP:java.lang.Securi
    tyException: The jar is not signed by a trusted signer
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:211)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:338)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:252)
    at com.somechumpcomp.at.beans.impl.MadBean_9a7x6e_EOImpl_922_WLStub.getRandom(Unknown Source)
    </p>
    <p>
    I initially appced the ejb on again on the X86 machine and this seemed to resolve the issue however the next day the problem returned, apprantly no one had touched anything..
    </p>
    <p>
    I have asked the ejb vendor to dynamically register the JSDP provider which is used to establish trust of a signed jar file.
    </p>
    <p>
    Does anyone else have any ideas I can try for instance can I register the provider on using environment varibles that I can pass to the WLS managed sercer JVM, or has anyone experienced similar issues on WLS9.2, JDK1.5.11 running on Solaris 10 X86?
    </p>
    <p>
    Hussein Badakhchani
    London Middleware
    </p>
    Edited by hoos at 06/17/2008 7:40 AM

    Hello,
    What API guide are you looking at? It appears your version of FDM is 9.3.0 and I do not see anything like what you are mentioning in the v9.3.0 API guide.
    Keep in mind that newer API guides might not contain all the information from previous releases are are only valid for the release for which they were intended.
    On a side note a Permissions Denied - 70 error generally can be traced with ProcessMonitor / ProcessExplorer ... I would start there.
    Thank you,

  • How to set java.naming.provider.url when multiple oc4j instances in iAS

    Hi Folks,
    I have problems engaging a connection to a deployed application in a 9.0.3 iAS instance. I created 2 oc4j instance within the iAs instance.
    I wonder how to set up the JNDI provider url?!?
    According http://download-west.oracle.com/docs/cd/A97329_01/web.902/a95879/jndi.htm
    the provider url contains of ormi://host:port/application.
    Unfortunatly I get a connection refused Naming Exception.
    What's wrong?
    Where can I look up the
    java.naming.security.principal
    java.naming.security.credentials
    Are they set by default?
    I tried the following scenario:
    java.naming.provider.url=ormi://host/oc4j-instance/application/
    and a user/password from principals.xml in the application/config directory, but don't have any success.
    So please help me ;-).
    Bye & Thx
    Toby

    This is correct as far as aI remember
    1) java.naming.provider.url = t3://server1:port1,server2:port2
    see
    http://download.oracle.com/docs/cd/E13222_01/wls/docs81/jndi/jndi.html -- Using WebLogic JNDI from a Client in a Clustered Environment

  • What is best possible set-up to provide music less...

    Hello! 
    What is the best possible setup (skype, internet, any other parameters) for music lessons by Skype on a Mac? We are currently doing this but would like to improve the experience as there is a time lag (teacher and student cannot play simultaneously, sometimes audio and video don't match exactly), sometimes there are problems with audio and/or video quality and on rare occasions the connection is dropped. Are these issues to do with our internet service provider or is there someway we can change Skype parameters to improve lesson quality? We currently have 5Mbps internet service (which is more or less reliable), and the lessons are done near the Wifi router (doesn't seem to make a difference if we use ethernet cable or Wifi). Is there anything we can do to improve things?
    Thanks in advance,
    Music Lover
    Subject/title expanded from "music lessons" to better reflect post content.

    I am in a similar situation and have similar questions. 
    Some of my "friends in the know" that perhaps Skype is optimized for voice, so transmitting musical audio might not work as well. I have a 3Mbs speed and am having similar problems to what you describe. 
    Wish I could be of further help but hope my post prods others to chime in.

  • TS3276 Is it at all possible to set Mail to provide read or receive receipts?

    Is it possible to do the follwoing in Mail?
    - read or receive receipts
    And can one create a shared calendar that multiple users can access and edit?
    Many thanks

     You have a "Chicago" motherboard and the link that you referenced has the "Joshua" motherboard.  Apples and oranges. Look at the Zotac graphics cards as they are listed as being compatible back to PCI-E 1.1.  Be sure to match it with a appropriate size power supply (300+ watts). The reality is that there is no guarantee that any particular graphics card will work in any particular PC even if the graphics card works in other PCs or even the same or similar model PCs. Know what the return policy is before you buy.

  • Problem setting a provider specific property : JMS adapter

    Hi Experts:
    I need to set a provider specific property as required by the third party in a IDoc to JMS scenario.
    The property name starts with JMS_ and is offcourse a property specific to the JMS provider.
    The way I am setting it is I have declared a Additional JMS message property by the same name as desired by the third party say
    JMS_XXX
    and then using the DynamicConfigurationBean I assign a value to this in the reciever channel.
    The problem that we have observed is, all other properties are set as desired, only this one for which the name starts with JMS_ is not set correctly.
    Is it possible to set such a provider specific property using XI or not?

    Hi Amol,
    Adapter-Specific Message Properties
    ·        To store adapter attributes in the message header of the XI message, select Set Adapter-Specific Message Properties.
    ·        To apply the following attributes in XI message headers, set the corresponding indicators:
           Name                                           Technical Name
    JMS Message Correlation ID               DCJMSCorreleationID
    JMS Message Delivery Mode               DCJMSDeliveryMode
    JMS Message Destination                   DCJMSDestination
    JMS Message Expiration                     DCJMSExpiration
    JMS Message ID                                DCJMSMessageID
    JMS Message Priority                         DCJMSPriority
    JMS Message Redelivered Flag            DCJMSRedelivered
    JMS Message ReplyTo Destination      DCJMSReplyTo
    JMS Message Time Stamp                   DCJMSTimestamp
    JMS Message Type                              DCJMSType
    Used JMS Message Selector                 DCJMSMessageSelector
    Used JMS Message Queue                    DCJMSMessageQueue
    JMS User                                                DCJMSUser
            If you want to set additional JMS message attributes, select Specify Additional JMS Message Properties (10 Maximum).
    ·        In the table, enter the names of the JMS message properties whose values are to be included in the message header of the XI message.
    The technical names of the additional attributes are DCJMSMessageProperty0, DCJMSMessageProperty1, ..., DCJMSMessageProperty9.
    You can enter more than 10 properties in the table, but only the first 10 are taken into account.
    The attribute namespace for the adapter is http://sap.com/xi/XI/System/JMS.
    if found worth pls do the req
    Thanx
    Sampath

  • Info set , info provider and info spoke

    Hi gurus plz give me the difference in between info set and info provider and info spoke. and give me what are the prerequisites are needed to process infoset, infoprovider and info spoke?
    Regards
    Vidhu

    InfoProvider
    An InfoProvider is an object for which queries can be created or executed in BEx
    Check this for more,
    http://help.sap.com/saphelp_nw04/helpdata/en/4d/c3cd3a9ac2cc6ce10000000a114084/content.htm
    Infoset:
    An InfoSet is a special view of a dataset, such as logical database, table join, table, and sequential file, and is used by SAP Query as a source data. InfoSets determine the tables or fields in these tables that can be referenced by a report. In most cases, InfoSets are based on logical databases.
    SAP Query includes a component for maintaining InfoSets. When you create an InfoSet, a DataSource in an application system is selected.
    Navigating in a BW to an InfoSet Query, using one or more ODS objects or InfoObjects.You can also drill-through to BEx queries and InfoSet Queries from a second BW system, that isConnected as a data mart.
    The InfoSet Query functions allow you to report using flat data tables (master data reporting).Choose InfoObjects or ODS objects as data sources. These can be connected using joins.You define the data sources in an InfoSet. An InfoSet can contain data from one or more tables that are connected to one another by key fields.The data sources specified in the InfoSet form the basis of the InfoSet Query.
    Check the link for more,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ad/2225391d4f000be10000000a114084/frameset.htm
    InfoSpoke:
    Info spoke is an open hub destination defines to which target the data is to be relayed.
    Check this link for more,
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ad/2225391d4f000be10000000a114084/frameset.htm
    Check this doc also,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/eb462104-0701-0010-07ae-d866630e0989
    Hope this gives you a good idea...

  • [Solved] Setting Security Provider to LDAP during Deployment

    Hi,
    One of our developers has created an ant script that deploys our application to an Oracle Application Server. Our application requires users to be authenticated via OID, and so we modify the security provider accordingly amd restart the application.
    However, everytime we redeploy the application, the security provider is always "reset" to File Based Authentication. Is there a way in ant or in some other else to set the security provider to LDAP so we don't have to keep changing the security provider and bouncing application whenever we redeploy?
    We've tried creating an orion-application.xml file already with jazn entry set to LDAP. What happens is that this file gets included in the ear file, but when it is deployed, it is placed in the OC4J_HOME/applications/myapp/META-INF directory instead of the OC4J_HOME/application-deployments/myapp directory, which is where the proprietary application deployment descriptor should go.
    Is there something we're missing?
    Cheers,
    Rey

    Hi Thanassis,
    I figured out how to deploy using ant with LDAP as security provider! It's a bit of work though.
    1. Create application.xml because application needs to be deployed as an ear file.
    2. Create orion-application.xml because this will contain the entry of using LDAP instead of xml.
    3. Create a Deployment Plan. This is done in JDeveloper by creating a WAR Deployment Profile, then right clicking it and deploying to an Oracle Application Server. Before actual deployment, JDeveloper will show a dialog for the Deployment Plan. Save the file, and cancel the deployment. You can view the contents of the file in JDeveloper. Make sure the line <jazn provider="LDAP"> exists; otherwise, there was something wrong with the orion-application.xml file.
    4. I edited the Deployment Plan and removed the line for data-sources.xml because I don't want to include one. You can create one alterantively if you don't want to remove this line.
    5. Finally, in the ANT script, add some lines to generate the ear file. Then in the oracle:deploy tag, make sure you use the deploymentplan attribute, and set it to the deployment plan you saved in step 3.
    That's it! Works beautifully!
    Cheers,
    Rey

  • Set up teamcapsule wifi and airport express

    Good day.  I have strange problem. At home i have dsl router witch setted up  by provider. It configured as dhcp, def gatevays.
    At timecapsule (with wifi) i setted up wifi . the timecapsulconnected to router by lan at bridge port.
    Also i have airport express device  witch is turned on at another room (but not in lan connection) and it use same wifi settings (;linked to time capsule).
    The question i have is seems to me the signal is wery bad.
    Please may be i didn't setted up themproperly or what can i do to extend signal from time capsule to another rooms?
    I don't want toset up different wifi areas in one appartment.I want the same  network nameand security settings and also all network settings for both devices.

    Good day.  I have strange problem. At home i have dsl router witch setted up  by provider. It configured as dhcp, def gatevays.
    At timecapsule (with wifi) i setted up wifi . the timecapsulconnected to router by lan at bridge port.
    Also i have airport express device  witch is turned on at another room (but not in lan connection) and it use same wifi settings (;linked to time capsule).
    The question i have is seems to me the signal is wery bad.
    Please may be i didn't setted up themproperly or what can i do to extend signal from time capsule to another rooms?
    I don't want toset up different wifi areas in one appartment.I want the same  network nameand security settings and also all network settings for both devices.

  • How to create the Sap script & Layout Set (wants sample code)

    Hi All ,
    Can you please provide me the step by step procedure
    to create the Sap script & Layout Set .(please provide sample
    code/links /docs for layout & print program).
    Regards
    Rahul

    hi,
    go through the following links  what i found to create sap script.
    http://www.thespot4sap.com/Articles/SAPscript_Introduction.asp
    http://abapliveinfo.blogspot.com/2008/01/free-sapscript-made-easy-46-book.html
    http://www.thespot4sap.com/articles/SAPscript_example_code.asp
    http://idocs.de/www3/cookbooks/sapscript/sapscript_1/docu.htm
    http://idocguru.com/www5/cookbooks/sapscript/sapscript_1/example.htm
    www.geocities.com/wardaguilar25/sapscript-tutorial.html
    http://logosworld.de/www3/cookbooks/sapscript/sapscript_8/docu.htm
    how to create a  scripts?give steps?
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=2969311
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=2902391
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=3205653
    https://forums.sdn.sap.com/click.jspa?searchID=1811669&messageID=3111402
    http://www.sap-img.com/sapscripts.htm
    http://sappoint.com/abap/
    http://www.henrikfrank.dk/abapexamples/SapScript/sapscript.htm
    http://help.sap.com/saphelp_crm40/helpdata/en/16/c832857cc111d686e0000086568e5f/content.htm
    http://www.sap-basis-abap.com/sapabap01.htm
    http://www.sap-img.com/sapscripts.htm
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci943419,00.html
    http://sap.ittoolbox.com/topics/t.asp?t=303&p=452&h2=452&h1=303
    http://www.sapgenie.com/phpBB2/viewtopic.php?t=14007&sid=09eec5147a0dbeee1b5edd21af8ebc6a
    Other Links

  • How do I set up a conference call that people can call into via phone?

    Hi, I need to do the following things:
    find some kind of provider that will let me register a toll free number to use with Connect
    set up this provider in my Connect account
    make a meeting where people can call the toll free number to join the conference
    Could someone walk me through this step by step, like you would to a 2nd grader who was trying to set all of this up for the first time? Thank you.

    1. There are more providers of teleconferencing than is reasonable to list here. You can do some searching on the Internet and find some or you can start with those who fully integrate with Connect. Those that fully integrate with Connect are MeetingOne, Intercall, Arkadin and Premiere Global. You can use any SIP enable provider though (I'd be shocked if you could find one that isn't SIP to be honest).
    2. If dealing with one of the providers that fully integrate, they should be able to walk you through the process, it's pretty simple. If dealing with another provider, follow these instructions: https://www.connectusers.com/tutorials/2012/10/universal_voice_setup/index.php
    3. Browse to the desired folder in the Meeting library of Connect. Click the New Meeting button and go through the wizard for creating a new room. At the end of step 1 of the wizard you will have 3 audio options. Choose the middle option and select the desired phone bridge that is associated with your account. The meeting should then prompt you to connect to the audio bridge every time you start a meeting.

  • How to get a list of Layout Sets

    Hi Experts,
    How do I get a list of Layout sets in Portal ?
    I am using a KM Navigation IView to show a list of External Links. I have used a copy of Links IView for this. The Layout set used here is "LinkListExplorer".
    The problem with this layout set is it provides an option of Organize Entries to all End users. An end user might potentially delete a link or edit it due to this.
    I want to get rid of Organize Entries feature in this IView, which I feel can be achieved only by changing Layout of the IVIew.
    Please guide me to list of Layout sets or a way to maintain permissions for Links IView.
    Thanks,
    Yomesh.

    System Administration -> System Configuration -> Knowledge Management -> Content Management
    then,
    User Interface -> Settings -> Layout Set
    You will see lots of layouts sets that you can use...

  • Please Read This if You Need Help Setting Up Email...

    Hi Everyone!
    If you are hoping to use your Nokia phone for send and receiving emails you will need to set this up prior to use.
    You may find that your phone has already been setup to send and receive emails by your network. This will be for the email address that has been provided to you by your network. If you would like to set up your phone for another email account, like your private or work email account, this will need to be set up by you.
    The easiest way to do this is to order the settings from our site. You can do this from this link: Nokia Settings Page Here you can order all the settings you might need, to get your email settings click on Order Advance Settings and choose email when prompted.
    Dont worry if you can't see your email provider in that list, if you have Nokia PC Suite installed you can connect your phone to your PC and configure your email account with some software.
    If you have a 9500, 9300 or 9300i communicator you can go here: Nokia Configuartion Tool
    If you have 3220, 6230i, 8800, 6810, 6820 or 6822 you can go here: Nokia Email Configuration Tool
    If you have a series 60 phone like a 6680 or 7610 etc you can install the Settings Wizard from here: Nokia Settings Wizard. This application will attempt to configure your email settings for you. You will need a working installation of PC Suite to install this from your PC. If you are able to get the installation file on to your phone you will be able to install from there.
    If your phone has not been listed in any of the above points, then unfortunately you will need to configure the phone manually. If you need to do this you will have to find out some basic information first:
    Your incoming server address
    Your outgoing server address
    Do you require a secure incoming/outgoing connection?
    Do you need SSL?
    Your email provider will be able to provide all this information, if you get stuck during the setup on what you should be entering for a setting, your email provider will be able to help you out.
    Hope this is enough to help some of you out, any comments are welcome - just send me a PM.
    Cheers
    Karim
    EDIT: Updated link to the phonesettings pageMessage Edited by ajak on 20-Aug-2007 04:27 PM

    Road Runner is a pain at times to get to work on both Wi-Fi and EDGE. It seems as if their outgoing mail server doesn't like to roam. CWMX is ONLY for use on the cellular network, and if you plan on using Wi-Fi to send e-mails periodically, CWMX will NOT work.
    My solution: Sign up for a GMAIL account, and forward your e-mails to the GMAIL account (provided POP access is enabled). Just log-in to this GMAIL account with your iPhone, and you'll get all your e-mails! If you need any help, let me know, I'll be glad to get you some directions.

  • How to set password for every application

    Hi,
    As a administrator how to set password for every weblication in sharepoint 2013.
    Is there any way to set?
    Thanks,

    Who's password are you trying to set? Please provide more details.

Maybe you are looking for