Problems about deploy a adapter.Who can help??

I confirm that the zip file path is right.I use the winrar to create the rar file,and use the winzip to create .sda file.
Who can help??Thanks very much
===========================================================================
Deployment started Wed Sep 13 13:54:19 GMT+08:00 2006
===========================================================================
Starting Deployment of cmbc.accenture.connector
Aborted: development component 'cmbc.accenture.connector'/'sap.com'/'SAP AG'/'7.0004.20050713150837.0000':
Caught exception during application deployment from SAP J2EE Engine's deploy API:
com.sap.engine.deploy.manager.DeployManagerException: com.sap.engine.services.deploy.container.DeploymentException: Cannot update archive file cmbc_ra.rarerror in opening zip file. Reason:
(message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).DMEXC)
Deployment of cmbc.accenture.connector finished with Error (Duration 5609 ms)

Hi Sky,
Please ensure that the content of cmbc_ra.sda is the following:
- META-INF (check in all files if all the names are comliant for your adapter structure)
- cmbc_ra.rar
In the cmbc_ra.rar
META-INF (check the content of ra.xml file)
cmbc_ra.jar
Hope this help.
Francesco Bersani

Similar Messages

  • I meet a big problems with my Z 10 , Who can help me??

    i can not log into the BBW(it said the BBW meet a problem and i should shut down it), and i can not use the BBM with the WI-FI (it works with the data serivices), any one can help me, i really need your help???

    No need for duplicated threads:
    http://supportforums.blackberry.com/t5/BlackBerry-Z10/NEED-HELP-FOR-limitied-WIFI/m-p/2876174#nobann...
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I can't download the apps with big size like need for spees, but in apps with normal size(less than 100KB)there is no problem,is there any body who can help me?

    I can't download the apps with big size like need for spees

    Have a little patience. 4 minutes is only a short time for someone to find your post and reply to it. Also clicking on "This Solved My Problem" marks your problem as solved so many folks that may otherwise help will pass the question by since it is "solved."
    I suggest you start a new question that gives a good title to a specific problem. Then in the body of the thread describe the problem in detail, tell us what steps you have tried so far to correct the problem, what happened, and what error messages you received.

  • Deploy EAR failure,Who can help me to deploy?

    Dear all:
              I'm running two cluster set-ups in the WLS6.1 , follow introduction my
              test condition:
              Two members on NT server and an Admin server, they reside all different
              Machine.
              I test it before package EAR , jsp and servlet call SessionBean to work
              very well,but
              I package a test EAR file , it includes a Stateful Session Bean and war
              file(only one Servlet and three JSPs)
              When I deployed EAR file, Server show a error message to below:
              > > <Error> <Management> <Error initializing module Login.war of
              application ClusterAdmin:Name=gfortuneNet,
              > > Type=Application from path
              .\config\ClusterAdmin\applications\gfortuneNet.ear: Login.war does not
              exist.>
              > > <Notice> <Management> <Application Poller not started for production
              server.>
              I check out the Administrator Console , I find "Login.war" to deploy
              unsuccessful , Following is my test code and configuration:
              ***Servlet***
              public class loginServlet extends HttpServlet implements
              java.io.Serializable {
              private static final String CONTENT_TYPE = "text/html; charset=BIG5";
              public void doPost(HttpServletRequest request, HttpServletResponse
              response) throws ServletException, IOException {
              response.setContentType(CONTENT_TYPE);
              PrintWriter out = response.getWriter();
              doGet(request,response);
              public void doGet(HttpServletRequest request, HttpServletResponse
              response) throws ServletException, IOException {
              response.setContentType(CONTENT_TYPE);
              PrintWriter out = response.getWriter();
              HttpSession session = request.getSession(false);
              try{
              Context ctx = getInitialContext();
              LoginQueryHome home = (LoginQueryHome) ctx.lookup("LoginQuery");
              LoginQuery the_ejb = home.create();
              } catch (NamingException e)
              {  e.printStackTrace();   }
              catch (RemoteException e)
              { e.printStackTrace(); }
              catch (CreateException e)
              { e.printStackTrace();}
              public static Context getInitialContext()throws NamingException
              Properties p = new Properties();
              p.put(Context.INITIAL_CONTEXT_FACTORY,
              "weblogic.jndi.WLInitialContextFactory");
              p.put(Context.PROVIDER_URL, "t3://10.168.168.32:9001"); //
              cluster1 server
              return new InitialContext(p);
              **web.xml :**
              <?xml version="1.0" ?>
              <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web
              Application 1.2//EN"
              "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd>
              <web-app>
              <servlet>
              <servlet-name>loginServlet</servlet-name>
              <servlet-class>com.servlet.loginServlet</servlet-class>
              </servlet>
              <servlet-mapping>
              <servlet-name>loginServlet</servlet-name>
              <url-pattern>/loginServlet</url-pattern>
              </servlet-mapping>
              </web-app>
              **weblogic.xml :**
              <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web
              Application 6.0//EN"
              "http://www.bea.com/servers/wls600/dtd/weblogic-web-jar.dtd>
              <weblogic-web-app>
              <description>WebLogic Descriptor</description>
              <session-descriptor>
              <session-param>
              <param-name>
              PersistentStoreType
              </param-name>
              <param-value>
              replicated
              </param-value>
              </session-param>
              </session-descriptor>
              </weblogic-web-app>
              **application.xml:**
              <?xml version="1.0" encoding="ISO8859_1"?>
              <!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE
              Application 1.2//EN'
              'http://java.sun.com/j2ee/dtds/application_1_2.dtd'>
              <application>
              <display-name>login</display-name>
              <description>Application description</description>
              <module>
              <ejb>Test_BookBean.jar</ejb> // This is
              Stateful Session Bean
              </module>
              <module>
              <web>
              <web-uri>Login.war</web-uri>
              <context-root>clicklit</context-root>
              </web>
              </module>
              </application>
              ***weblogic-ejb-jar.xml***
              <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD
              WebLogic 6.0.0 EJB//EN'
              'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
              <weblogic-ejb-jar>
              <weblogic-enterprise-bean>
              <ejb-name>LoginQueryBean</ejb-name>
              <stateful-session-descriptor>
              <stateful-session-clustering>
              <home-load-algorithm>RoundRobin</home-load-algorithm>
              <replication-type>InMemory</replication-type>
              </stateful-session-clustering>
              </stateful-session-descriptor>
              <reference-descriptor>
              <resource-description>
              <res-ref-name>jdbc/CORDataSource</res-ref-name>
              <jndi-name>GalaxyDataSource</jndi-name>
              </resource-description>
              </reference-descriptor>
              <jndi-name>LoginQuery</jndi-name>
              </weblogic-enterprise-bean>
              </weblogic-ejb-jar>
              Please every bea consultants tell me what's lost to build up ?
              Best Regards,
              James Huang
              

    I'm not really a servlet expert, but it appears that you've enabled
              in-memory replication for the Login servlet, but your WLS is not
              clustered.
              -- Rob
              james wrote:
              >
              > Hi! Rob Woollen:
              > First thanks for your responsion , I forget Configure the
              > HttpClusterServlet .
              > but I configure the HttpClusterServlet to web.xml lately, and only deploy
              > Login.war to WLS6.1 , finding the other error message,Can you tell me,
              > what's wrong for me?
              >
              > > > **web.xml
              > file************************************************************************
              > **
              > <?xml version="1.0" ?>
              > <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application
              > 1.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
              > <web-app>
              > <servlet>
              > <servlet-name>loginServlet</servlet-name>
              > <servlet-class>com.servlet.loginServlet</servlet-class>
              > </servlet>
              > <servlet>
              > <servlet-name>HttpClusterServlet</servlet-name>
              >
              > <servlet-class>weblogic.servlet.internal.HttpClusterServlet</servlet-class>
              > <init-param>
              > <param-name>defaultServers</param-name>
              >
              > <param-value>10.168.168.32:9001:9002|10.168.168.200:9001:9002|10.168.168.154
              > :9001:9002</param-value>
              > </init-param>
              > <init-param>
              > <param-name>DebugConfigInfo</param-name>
              > <param-value>OFF</param-value>
              > </init-param>
              > </servlet>
              > <servlet-mapping>
              > <servlet-name>loginServlet</servlet-name>
              > <url-pattern>/loginServlet</url-pattern>
              > </servlet-mapping>
              > <servlet-mapping>
              > <servlet-name>HttpClusterServlet</servlet-name>
              > <url-pattern>/</url-pattern>
              > </servlet-mapping>
              > <servlet-mapping>
              > <servlet-name>HttpClusterServlet</servlet-name>
              > <url-pattern>*.jsp</url-pattern>
              > </servlet-mapping>
              > <servlet-mapping>
              > <servlet-name>HttpClusterServlet</servlet-name>
              > <url-pattern>*.htm</url-pattern>
              > </servlet-mapping>
              > <servlet-mapping>
              > <servlet-name>HttpClusterServlet</servlet-name>
              > <url-pattern>*.html</url-pattern>
              > </servlet-mapping>
              > </web-app>
              >
              > > > **Error
              > message*********************************************************************
              > *****
              > <2001/9/10 ??11?35?52?> <Error> <HTTP Session> <FATAL: replicated HTTP sess
              > ions specified but clustering not enabled for webapp: /Login>
              > javax.management.MBeanException
              > at
              > weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl
              > .java:960)
              > at
              > weblogic.management.internal.DynamicMBeanImpl.addDeployment(DynamicMBeanImpl
              > .java:913)
              > at
              > weblogic.management.internal.DynamicMBeanImpl.add(DynamicMBeanImpl.java:898)
              > at
              > weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
              > .java:618)
              > at
              > weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
              > 90)
              > at
              > weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
              > nImpl.java:350)
              > at
              > com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              > at
              > com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              > at
              > weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:444)
              > at
              > weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:185)
              > at $Proxy69.addTarget(Unknown Source)
              > at
              > weblogic.management.mbeans.custom.ApplicationManager.autoDeploy(ApplicationM
              > anager.java:833)
              > at
              > weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
              > ionManager.java:930)
              > at
              > weblogic.management.mbeans.custom.ApplicationManager.addApplication(Applicat
              > ionManager.java:852)
              > at
              > weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
              > .java:768)
              > at
              > weblogic.management.mbeans.custom.ApplicationManager.poll(ApplicationManager
              > .java:701)
              > at
              > weblogic.management.mbeans.custom.ApplicationManager.update(ApplicationManag
              > er.java:198)
              > at java.lang.reflect.Method.invoke(Native Method)
              > at
              > weblogic.management.internal.DynamicMBeanImpl.invokeLocally(DynamicMBeanImpl
              > .java:606)
              > at
              > weblogic.management.internal.DynamicMBeanImpl.invoke(DynamicMBeanImpl.java:5
              > 90)
              > at
              > weblogic.management.internal.ConfigurationMBeanImpl.invoke(ConfigurationMBea
              > nImpl.java:350)
              > at
              > com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1555)
              > at
              > com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
              > at
              > weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:444)
              > at
              > weblogic.management.internal.MBeanProxy.invoke(MBeanProxy.java:185)
              > at $Proxy5.update(Unknown Source)
              > at
              > weblogic.management.console.webapp._domain.__upload_app._jspService(__upload
              > _app.java:150)
              > at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              > at
              > weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > :263)
              > at
              > weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > :200)
              > at
              > weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
              > l.java:190)
              > at
              > weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
              > at
              > weblogic.management.console.actions.ForwardAction.perform(ForwardAction.java
              > :35)
              > at
              > weblogic.management.console.actions.internal.ActionServlet.doAction(ActionSe
              > rvlet.java:172)
              > at
              > weblogic.management.console.actions.internal.ActionServlet.doPost(ActionServ
              > let.java:85)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
              > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
              > at
              > weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > :263)
              > at
              > weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > :200)
              > at
              > weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              > ntext.java:2390)
              > at
              > weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              > :1959)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              > <2001/9/10 ??11?35?52?> <Error> <Management> <Error deploying application
              > .\config\ClusterAdmin\applications\Login.war :
              > java.lang.reflect.UndeclaredThrowableException>
              >
              > > > Best Regards,
              > > >
              > > > James Huang 09/10/2001
              >
              > "Rob Woollen" <[email protected]> ?????
              > news:[email protected]...
              > > It looks like the server is complaining about the Login.war file not
              > > existing (or in the specified place) in the ear file.
              > >
              > > -- Rob
              > >
              > > james wrote:
              > > >
              > > > Dear all:
              > > > I'm running two cluster set-ups in the WLS6.1 , follow
              > introduction my
              > > > test condition:
              > > > Two members on NT server and an Admin server, they reside all different
              > > > Machine.
              > > > I test it before package EAR , jsp and servlet call SessionBean to work
              > > > very well,but
              > > > I package a test EAR file , it includes a Stateful Session Bean and war
              > > > file(only one Servlet and three JSPs)
              > > > When I deployed EAR file, Server show a error message to below:
              > > >
              > ****************************************************************************
              > > > *******************
              > > > > > <Error> <Management> <Error initializing module Login.war of
              > > > application ClusterAdmin:Name=gfortuneNet,
              > > > > > Type=Application from path
              > > > .\config\ClusterAdmin\applications\gfortuneNet.ear: Login.war does not
              > > > exist.>
              > > > > > <Notice> <Management> <Application Poller not started for
              > production
              > > > server.>
              > > >
              > ****************************************************************************
              > > > *******************
              > > > I check out the Administrator Console , I find "Login.war" to deploy
              > > > unsuccessful , Following is my test code and configuration:
              > > >
              > > > ***Servlet***
              > > > public class loginServlet extends HttpServlet implements
              > > > java.io.Serializable {
              > > > private static final String CONTENT_TYPE = "text/html;
              > charset=BIG5";
              > > > public void doPost(HttpServletRequest request, HttpServletResponse
              > > > response) throws ServletException, IOException {
              > > > response.setContentType(CONTENT_TYPE);
              > > > PrintWriter out = response.getWriter();
              > > > doGet(request,response);
              > > > }
              > > > public void doGet(HttpServletRequest request, HttpServletResponse
              > > > response) throws ServletException, IOException {
              > > > response.setContentType(CONTENT_TYPE);
              > > > PrintWriter out = response.getWriter();
              > > > HttpSession session = request.getSession(false);
              > > > . . . . . . . . . . . . . .
              > > > . . . . . . . . . . . . . .
              > > > try{
              > > > Context ctx = getInitialContext();
              > > > LoginQueryHome home = (LoginQueryHome) ctx.lookup("LoginQuery");
              > > > LoginQuery the_ejb = home.create();
              > > > . . . . . . . . . . . . . .
              > > > . . . . . . . . . . . . . .
              > > > } catch (NamingException e)
              > > > {  e.printStackTrace();   }
              > > > catch (RemoteException e)
              > > > { e.printStackTrace(); }
              > > > catch (CreateException e)
              > > > { e.printStackTrace();}
              > > > }
              > > > public static Context getInitialContext()throws NamingException
              > > > {
              > > > Properties p = new Properties();
              > > > p.put(Context.INITIAL_CONTEXT_FACTORY,
              > > > "weblogic.jndi.WLInitialContextFactory");
              > > > p.put(Context.PROVIDER_URL, "t3://10.168.168.32:9001");
              > //
              > > > cluster1 server
              > > > return new InitialContext(p);
              > > > }
              > > > }
              > > >
              > ****************************************************************************
              > > > ********
              > > > **web.xml :**
              > > > <?xml version="1.0" ?>
              > > > <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web
              > > > Application 1.2//EN"
              > > > "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd>
              > > > <web-app>
              > > > <servlet>
              > > > <servlet-name>loginServlet</servlet-name>
              > > >
              > <servlet-class>com.servlet.loginServlet</servlet-class>
              > > > </servlet>
              > > > <servlet-mapping>
              > > > <servlet-name>loginServlet</servlet-name>
              > > > <url-pattern>/loginServlet</url-pattern>
              > > > </servlet-mapping>
              > > > </web-app>
              > > >
              > > > **weblogic.xml :**
              > > > <!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web
              > > > Application 6.0//EN"
              > > > "http://www.bea.com/servers/wls600/dtd/weblogic-web-jar.dtd>
              > > > <weblogic-web-app>
              > > > <description>WebLogic Descriptor</description>
              > > > <session-descriptor>
              > > > <session-param>
              > > > <param-name>
              > > > PersistentStoreType
              > > > </param-name>
              > > > <param-value>
              > > > replicated
              > > > </param-value>
              > > > </session-param>
              > > > </session-descriptor>
              > > > </weblogic-web-app>
              > > >
              > ****************************************************************************
              > > > ********
              > > > **application.xml:**
              > > > <?xml version="1.0" encoding="ISO8859_1"?>
              > > > <!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD
              > J2EE
              > > > Application 1.2//EN'
              > > > 'http://java.sun.com/j2ee/dtds/application_1_2.dtd'>
              > > > <application>
              > > > <display-name>login</display-name>
              > > > <description>Application description</description>
              > > > <module>
              > > > <ejb>Test_BookBean.jar</ejb> // This is
              > > > Stateful Session Bean
              > > > </module>
              > > > <module>
              > > > <web>
              > > > <web-uri>Login.war</web-uri>
              > > > <context-root>clicklit</context-root>
              > > > </web>
              > > > </module>
              > > > </application>
              > > >
              > ****************************************************************************
              > > > ********
              > > > ***weblogic-ejb-jar.xml***
              > > > <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD
              > > > WebLogic 6.0.0 EJB//EN'
              > > >
              > 'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
              > > > <weblogic-ejb-jar>
              > > > <weblogic-enterprise-bean>
              > > > <ejb-name>LoginQueryBean</ejb-name>
              > > > <stateful-session-descriptor>
              > > > <stateful-session-clustering>
              > > >
              > <home-load-algorithm>RoundRobin</home-load-algorithm>
              > > > <replication-type>InMemory</replication-type>
              > > > </stateful-session-clustering>
              > > > </stateful-session-descriptor>
              > > > <reference-descriptor>
              > > > <resource-description>
              > > > <res-ref-name>jdbc/CORDataSource</res-ref-name>
              > > > <jndi-name>GalaxyDataSource</jndi-name>
              > > > </resource-description>
              > > > </reference-descriptor>
              > > > <jndi-name>LoginQuery</jndi-name>
              > > > </weblogic-enterprise-bean>
              > > > </weblogic-ejb-jar>
              > > >
              > > > Please every bea consultants tell me what's lost to build up ?
              > > >
              > > > Best Regards,
              > > >
              > > > James Huang
              > >
              > > --
              > >
              > > ----------------------------------------------------------------------
              > >
              > > AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
              > >
              > > by Michael Girdley, Rob Woollen, and Sandra Emerson
              > >
              > > http://learnWebLogic.com
              AVAILABLE NOW!: Building J2EE Applications & BEA WebLogic Server
              by Michael Girdley, Rob Woollen, and Sandra Emerson
              http://learnWebLogic.com
              

  • Massively Mail-problems since using Mountain Lion :-( who can help?)

    Dear Community,
    first time I need be excuse my long text but it's the first time I use a discussion to sort / find solutions!
    First I like to describe a bit the situation:
    Our company use since years very successfully Kerio Mail Mail-server which is an Multi-platform Exchange solution...
    In the past we never ever ad have problems with the solution and was very happy with it about the reason that it was after many tests the only platform which had have worked on all in our company used plattforms (Apple, Windows & Linux)...
    Since mountain lion we realize several problems in the Mountain lion and become about this unlucky Apple users:-(
    Final we hope to get over this way's solutions and lucky users again..:
    Attached the short list of problems:
    1.) View day's ago me and an other employ had have changed into new MacBook Pro with Mountain Lion (first time on Mountain Lion!) where we first at all become the problems that all with Mails, then already read'n Emails are becoming unwritten marked and now my postbox have 35000 and more unread'n emails and it is no more possible to check which I have read already and which not!
    2.) Also the Emails in the sent folder become the same problems :-(
    3.) One other big problem is that since this change the connectivity from mail to our sever looks like 1000times more, than my 5GB Mobil Data-stick was empty after 2 days using Emails!
    --> In the past I had have never ever need more the 1GB in a month! 
    4.) Also a big problem realized here in Asia where I traveling actual my outgoing Emails are not sent out from my MacBook Pro (just from my iPad and iPhone!)....
    --> Our system administrator explains me that this are about the "missing" ActiveSync from the Apple Email!?!
    Hopeful become here ASAP answers / solutions to solve all my problems and become again a happy Apple & Mail user :-)
    All the best
    Thomas

    You said,
    the blogs I subscribed to via RSS feed disappeared from iMail
    See this thread on the Apple discussions forum:
    *https://discussions.apple.com/thread/4143746 RSS and Mail Error
    This looks to be issue with the Apple iMail application in Mountain Lion, which apparently no longer includes an RSS reader. You'll have to find another RSS reader application or Firefox extension (check with add-ons.mozilla.org for RSS reader extensions).
    You could also try the Firefox [[Live Bookmarks]] feature to subscribe to feeds: First, add the "Subscribe" icon back to the Firefox navigation toolbar, if necessary (see [[Customize Firefox controls, buttons and toolbars]]). Next, go to Firefox -> Preferences -> Applications and change the action for "Web Feed" to Live Bookmarks (the default is "Preview in Firefox"). See [[Set how Firefox handles different types of files]] for details.

  • Pls: I have some problems with GOP java card. who can help me?

    hello, all
    I am going to install my cap file into Global Open Platform Card( S1-TiEx-S32J, which uses GP2.0.1) now.
    but, I have failed.
    I use J2SDK1.4.2.10 when I compile the java file.
    And use Java Card 2.2.1 Development Kit when I convert to cap file.
    The sequences of the command / response are below;
    [SEND]00A4040007A0000000030000
    [RECV]611F
    [SEND]00C000001F
    [RECV]6F188408A000000003000000A50D9F6E0A42505042474F317601019F6501FE9000
    [SEND]80500000082021222324252627
    [RECV]611C
    [SEND]00C000001C
    [RECV]0000FFFFFFFFFFFFFFFF0000E1C81BD9C2573DF5AA8EEB95251A95A59000
    [SEND]8482000010A8BD185CD6A3940C83855021A4DFF412
    [RECV]9000
    [SEND]80E60200050000000000
    [RECV]6700
    What was wrong?
    If you are experience with this kind of java card, pls help me.
    with best regards,
    yong lee

    Andalib3,
    There are a couple of options that you have as far as getting this to work. First off go to Control Panel and then to Sounds and Audio Devices (or multimedia depending on the version of windows). In here go to the Audio tab and then under preferred Midi Playback Device you should have a couple of options. There are two settings here that will work:
    ) Microsoft GS Wavetable Synth - This is a very basic midi sound set that is emulated by the OS
    2) Li've! Midi Synth (A or B) - This is the hardware midi synth on the card.
    Make sure one of these is selected as the default midi playback device and then test your games again.
    Jeremy

  • I hope someone gets this who can help me. i don't find anything helpful in the help section of icloud. i'm using my 4th generation itouch for about 3 weeks with the ical. but today when i tried to edit an event or d an event a window would pop up and sa

    i hope someone gets this who can help me. i don't find anything helpful in the help section of icloud. i'm using my 4th generation itouch for about 3 weeks with the ical. but today when i tried to edit an event or add an event a window would pop up and say "event can't be saved" or "no calendar chosen" or something like "this event doesn't belong with this calendar" and stuff like that.
    can you please help me fix this?

    You could repartition your drive to have a different OS X with the older iTunes there, and the newer iTunes on the existing partition. Back up everything beforehand. See Kappy's advice in this thread. Partitioning my Hard Drive

  • Who can help me :)--a problem with java program(reset problem in java )

    I do not know how to make the button reset,my program only could reset diagram but button.If any one who could help me to solve this problem.The problem is When the reset button is pressed, the image should immediately revert to the black square, and the 4 widgets listed above should show values that
    correspond to the black square.The code like this,first one is shapes:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class shapes extends JFrame {
         private JPanel buttonPanel; // panel for buttons
         private DrawPanel myPanel;  // panel for shapes
         private JButton resetButton;
        private JComboBox colorComboBox;
         private JRadioButton circleButton, squareButton;
         private ButtonGroup radioGroup;
         private JCheckBox filledButton;
        private JSlider sizeSlider;
         private boolean isShow;
         private int shape;
         private boolean isFill=true;
        private String colorNames[] = {"black", "blue", "cyan", "darkGray", "gray",
                                   "green", "lightgray", "magenta", "orange",
                                   "pink", "red", "white", "yellow"};   // color names list in ComboBox
        private Color colors[] = {Color.black, Color.blue, Color.cyan, Color.darkGray,
                              Color.gray, Color.green, Color.lightGray, Color.magenta,
                              Color.orange, Color.pink, Color.red, Color.white, Color.yellow};
         public shapes() {
             super("Draw Shapes");
             // creat custom drawing panel
            myPanel = new DrawPanel(); // instantiate a DrawPanel object
            myPanel.setBackground(Color.white);
             // set up resetButton
            // register an event handler for resetButton's ActionEvent
            resetButton = new JButton ("reset");
             resetButton.addActionListener(
              // anonymous inner class to handle resetButton events
                 new ActionListener() {
                       // draw a black filled square shape after clicking resetButton
                     public void actionPerformed (ActionEvent event) {
                             // call DrawPanel method setShowStatus and pass an parameter
                          // to decide if show the shape
                         myPanel.setShowStatus(true);
                             isShow = myPanel.getShowStatus();
                             shape = DrawPanel.SQUARE;
                         // call DrawPanel method setShape to indicate shape to draw
                             myPanel.setShape(shape);
                         // call DrawPanel method setFill to indicate to draw a filled shape
                             myPanel.setFill(true);
                         // call DrawPanel method draw
                             myPanel.draw();
                             myPanel.setFill(true);
                             myPanel.setForeground(Color.black);
                   }// end anonymous inner class
             );// end call to addActionListener
            // set up colorComboBox
            // register event handlers for colorComboBox's ItemEvent
            colorComboBox = new JComboBox(colorNames);
            colorComboBox.setMaximumRowCount(5);
            colorComboBox.addItemListener(
                 // anonymous inner class to handle colorComboBox events
                 new ItemListener() {
                     // select shape's color
                     public void itemStateChanged(ItemEvent event) {
                         if(event.getStateChange() == ItemEvent.SELECTED)
                             // call DrawPanel method setForeground
                             // and pass an element value of colors array
                             myPanel.setForeground(colors[colorComboBox.getSelectedIndex()]);
                        myPanel.draw();
                }// end anonymous inner class
            ); // end call to addItemListener
            // set up a pair of RadioButtons
            // register an event handler for RadioButtons' ItemEvent
             squareButton = new JRadioButton ("Square", true);
             circleButton = new JRadioButton ("Circle", false);
             radioGroup = new ButtonGroup();
             radioGroup.add(squareButton);
             radioGroup.add(circleButton);
            squareButton.addItemListener(
                // anonymous inner class to handle squareButton events
                new ItemListener() {
                       public void itemStateChanged (ItemEvent event) {
                           if (isShow==true) {
                                 shape = DrawPanel.SQUARE;
                                 myPanel.setShape(shape);
                                 myPanel.draw();
                   }// end anonymous inner class
             );// end call to addItemListener
             circleButton.addItemListener(
                   // anonymous inner class to handle circleButton events
                new ItemListener() {
                       public void itemStateChanged (ItemEvent event) {
                             if (isShow==true) {
                                 shape = DrawPanel.CIRCLE;
                                 myPanel.setShape(shape);
                                 myPanel.draw();
                             else
                                 System.out.println("Please click Reset button first");
                   }// end anonymous inner class
             );// end call to addItemListener
             // set up filledButton
            // register an event handler for filledButton's ItemEvent
            filledButton = new JCheckBox("Filled", true);
             filledButton.addItemListener(
              // anonymous inner class to handle filledButton events
            new ItemListener() {
                  public void itemStateChanged (ItemEvent event) {
                    if (isShow==true) {
                            if (event.getStateChange() == ItemEvent.SELECTED) {
                                  isFill=true;
                                  myPanel.setFill(isFill);
                                  myPanel.draw();
                            else {
                                isFill=false;
                                  myPanel.setFill(isFill);
                                  myPanel.draw();
                    else
                        System.out.println("Please click Reset button first");
              }// end anonymous inner class
             );// end call to addItemListener
            // set up sizeSlider
            // register an event handler for sizeSlider's ChangeEvent
            sizeSlider = new JSlider(SwingConstants.HORIZONTAL, 0, 300, 100);
            sizeSlider.setMajorTickSpacing(10);
            sizeSlider.setPaintTicks(true);
            sizeSlider.addChangeListener(
                 // anonymous inner class to handle sizeSlider events
                 new ChangeListener() {
                      public void stateChanged(ChangeEvent event) {
                          myPanel.setShapeSize(sizeSlider.getValue());
                             myPanel.draw();
                 }// end anonymous inner class
             );// end call to addChangeListener
            // set up panel containing buttons
             buttonPanel = new JPanel();
            buttonPanel.setLayout(new GridLayout(4, 1, 0, 50));
             buttonPanel.add(resetButton);
             buttonPanel.add(filledButton);
            buttonPanel.add(colorComboBox);
            JPanel radioButtonPanel = new JPanel();
            radioButtonPanel.setLayout(new GridLayout(2, 1, 0, 20));
            radioButtonPanel.add(squareButton);
            radioButtonPanel.add(circleButton);
            buttonPanel.add(radioButtonPanel);
            // attach button panel & draw panel to content panel
            Container container = getContentPane();
            container.setLayout(new BorderLayout(10,10));
            container.add(myPanel, BorderLayout.CENTER);
             container.add(buttonPanel, BorderLayout.EAST);
            container.add(sizeSlider, BorderLayout.SOUTH);
            setSize(500, 400);
             setVisible(true);
         public static void main(String args[]) {
             shapes application = new shapes();
             application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }second one is drawpanel:
    import java.awt.*;
    import javax.swing.*;
    public class DrawPanel extends JPanel {
         public final static int CIRCLE = 1, SQUARE = 2;
         private int shape;
         private boolean fill;
         private boolean showStatus;
        private int shapeSize = 100;
        private Color foreground;
         // draw a specified shape
        public void paintComponent (Graphics g){
              super.paintComponent(g);
              // find center
            int x=(getSize().width-shapeSize)/2;
              int y=(getSize().height-shapeSize)/2;
              if (shape == CIRCLE) {
                 if (fill == true){
                     g.setColor(foreground);
                      g.fillOval(x, y, shapeSize, shapeSize);
                else{
                       g.setColor(foreground);
                    g.drawOval(x, y, shapeSize, shapeSize);
              else if (shape == SQUARE){
                 if (fill == true){
                     g.setColor(foreground);
                        g.fillRect(x, y, shapeSize, shapeSize);
                else{
                        g.setColor(foreground);
                    g.drawRect(x, y, shapeSize, shapeSize);
        // set showStatus value
        public void setShowStatus (boolean s) {
              showStatus = s;
         // return showstatus value
        public boolean getShowStatus () {
              return showStatus;
         // set fill value
        public void setFill(boolean isFill) {
              fill = isFill;
         // set shape value
        public void setShape(int shapeToDraw) {
              shape = shapeToDraw;
        // set shapeSize value
        public void setShapeSize(int newShapeSize) {
              shapeSize = newShapeSize;
        // set foreground value
        public void setForeground(Color newColor) {
              foreground = newColor;
         // repaint DrawPanel
        public void draw (){
              if(showStatus == true)
              repaint();
    }If any kind people who can help me.
    many thanks to you!

    4 widgets???
    maybe this is what you mean.
    add this inside your actionPerformed method for the reset action
    squareButton.setSelected(true);
    colorComboBox.setSelectedIndex(0);
    if not be more clear in your post.

  • Problem With GUI ( Who can help me! )

    Hallo,
    It�s a very simple program to See the Clock on a panel. The program works well, but if I want to include a GUI to my program, it don�t want. I use runable action and I think that is be the problem.
    Here below you can see the code�s. I�m sure there is someone who can help me.
    Thanks a lot,
    Seyyed
    The code:
    public class Clock_maken extends java.applet.Applet
    implements Runnable {
    public volatile Thread clockThread = null;
    JLabel           Datuum_label;
    DateFormat      formatter;
    Locale           locale;
    Date           currentDate;
    String          today;
    public void init(){ 
    locale = Locale.getDefault();
    Datuum_label = new JLabel("date");
    public void start() {       
    Datuum_label.setForeground(Color.black);
    add(Datuum_label);
    if(clockThread == null) {
    clockThread = new Thread(this);
    clockThread.start();
    public void run() {
         Thread myThread = Thread.currentThread();
         while (clockThread == myThread) {
         currentDate = new Date();
    formatter =                     DateFormat.getDateTimeInstance(DateFormat.FULL,
              DateFormat.MEDIUM, locale);
    today = formatter.format(currentDate);
    Datuum_label.setText(today);
    try {
    Thread.sleep(1000);
    } catch (InterruptedException e){ }
    public void stop() {clockThread = null;}
    public static void main(String[] args){
    JFrame.setDefaultLookAndFeelDecorated(true);
    JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
    lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Clock_maken phases = new Clock_maken();
    phases.init();
    phases.start();
    lunarPhasesFrame.pack();
    lunarPhasesFrame.setVisible(true);
    Now i want to create a GUI like folowing, but it dont work. Do u know wat is de probleem of mijn prograam.
    private static void createAndShowGUI() {
    JFrame.setDefaultLookAndFeelDecorated(true);
         /*     JFrame      lunarPhasesFrame = new JFrame("Lunar Phases");
              lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    */ Clock_maken phases = new Clock_maken();
         /*     phases.init();
              phases.start();
              lunarPhasesFrame.pack();
         lunarPhasesFrame.setVisible(true);*/
    public static void main(String[] args) {
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    Continued here, with formatted code:
    http://forum.java.sun.com/thread.jspa?threadID=725022

  • I have a problem, i can't change my lockscreen wallpaper after i upgrade my iphone 4s to ios 5.1.1... Is there anyone who can help me?

    I have a problem, i can't change my lockscreen wallpaper? Doesnt work...is there anyone who can help me regarding this problem? Thx

    To help, we need more detailed information.
    --What steps are you trying?
    --What does the device tell you (any pop-ups or messages)?
    --Are you able to change the Home screen wallpaper, or is that affected too?
    --Are you the phone's owner/administrator, or is this a device used for work (assigned/administered by IT staff, possible on an Exchange server)?
    --Have you jailbroken the device?

  • About Ranking List, who can help me?

    Dear Guru;
        when i use ME65 - Ranking lists in IDES,  and i choose purchasing organization <1000> vendor between 1000 ad 2000,
    after execute , it show error message as below.. and who can help me solve it?
    Runtime errors         ASSIGN_OFFSET_NOTALLOWED
           Occurred on     2009/12/12 at 23:36:19
    Invalid field assignment in the ASSIGN statement in the program "RM06LBEU ".
    What happened?
    Error in ABAP application program.
    The current ABAP program "RM06LBEU " had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    Error analysis

    Hi,
    I am not sure which version of IDES you are using.
    Try getting the latest version wherein this problem might have been fixed.
    Hope this helps.

  • Ive finished my first website now my next problem, who can help?

    Hi there,
    With lots of help from Nadia, ive finished my website..
    http://www.tlmgoldman.com/
    Now ive got to move on to an other level and i hope you can help me.
    As you can see the website is working fine. Now ive got one new question from my client. Is it possible that my client can change the text himself? And he want to add a new page with a lot off new pictures.. for the employers.
    What is the best way to do this. Is it possible to do this without a cms system because cms is for me like flying to mars..
    Is there some kind of program so my client can upload some pictures and changes some text on all the pages?
    I will be happy to hear from you..
    Regards Brian

    Hi thank you for your response,
    but when i replace the text my whole left column dissapears. Must i replace the first text or just add it can you tell me where to put it?
    Welkome bij TLM Goldman<br />
    TLM Goldman levert sinds 2007 consultingdiensten in de branche Trading & Investments. De focus van onze cliënten ligt op de handel in financiële instrumenten en derivaten zoals aandelen, obligaties, energie, carbon, opties, equity swaps, futures en gerelateerde producten. TLM Goldman zet zich in voor zijn cliënten opdat zij concurrerend blijven in hun markt, operationele voordelen behalen en aan internationale wet- en regelgeving voldoen.
    Date: Mon, 24 May 2010 15:54:07 -0600
    From: [email protected]
    To: [email protected]
    Subject: Ive finished my first website now my next problem, who can help?
    Switch to Code View.
    <div id="left_column">
    h3. Welcome to TLM Goldman
    <!begin Cushy CMS editable division>
    <div class="cushycms">
    </div>  <!end cushycms>
    </div>  <!end left_column>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com
    >

  • I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help pleas

    I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help please?

    click setup, not autoplay.

  • Error Message:"Cannot find or create the font 'WP-MathA'. Some characters may not display or print correctly."  Who can help me solve this problem?

    Some of the pdf files I work with (receive) come up with a comment: “Cannot find or create the font ‘WP-MathA’. Some characters may not display or print correctly.”  Who can help me solve this problem?
    Thank you in advance for  your time.
    Marlen

    Hello Anubha,
    I am having a similar problem on my machine.  I was using Word 2008 and I created a PDF inside Word.
    I am opening the file on the system itself and I am running Windows 8.1.  I am using Version 11 of Reader.
    When the PDF I created (my resume) attempts to open, it says:  cannot find or create the file Times, Bold.  Some characters may not display or print correctly. 
    However, the entire Reader keeps freezing and will not allow me to open or test print the document.  Also, it is not displaying any of the Bold Times New Roman Print.  Can you please help?  Thanks.

  • Even though I have repaired, deinstalled and reinstalled itunes, the assitent still tells me that I can't burn or import music due to an incomplete installation... I have been using itunes for years now and never had a problem...who can help??? thx

    Hey everybody,
    even though I have repaired, deinstalled and reinstalled itunes, the assitent still tells me that I can't burn or import music due to an incomplete installation... I have been using itunes for years now and never had a problem...who can help??? thx

    check out this support article.

Maybe you are looking for

  • Adobe Flash Player problems

    Hi have installed latest version of Adobe Flash player but when i go to a site that ueses this app it says i need to down load latest version ? Can any one help me

  • SmartForms: Template: Box for Single Cell

    Hi all, I am using template of one row and two Column, I want to draw a box around for Column(1,1), where don't want to draw any box around Column(1,2). Which pattern should i select so that i can achieve this? Thanks in advance.

  • How can only one Checkbox can be Selected in Table with Boolean CheckBoxes?

    I have an editable ADF table where one of the attributes is a Boolean Checkbox... and stores the value with Y or N. Is there any way where only one checkbox should be selected at the time of commit ? For example, in case its an Answers Table to a Sin

  • Javac -classpath / -sourcepath does not work ?

    when i call javac in the current directory (where the java source files within subdirectories for package names) the compilation works. but when i go one directory up and want to use the -classpath or the -sourcepath options, i just get errors: D:\TE

  • Error in preloading Servlet

    Hi, I am new to Weblogic....I have an application built on struts and are able to deploy in Tomcat and Websphere. I copy the exploded application to user_projects\mydomain\applications and start the server. The following comes up:           ####<2005