HFM Web developer API

I need to find some documentation on the HFMwICTransactions and HFMwICReports objects shipped with the HFM web server dll's. There is currently nothing in the HFM Web developer API object guide. Does anyone know where I can get it?

Hi,
Is this still available? Current location Captain Cook -
S.Kona. 8 yrs CF/SQL etc.
Thanks

Similar Messages

  • HFM Web Sever Configuration--Keep Alive and Session Time Out Optimal Config

    We recently implemented an HFM 9.3.1 environment. We are using Windows 2003 Enterprise SP2 servers with IIS6. We have two HFM Web servers connecting to an application cluster with two application servers in the cluster. We were getting some errors when trying to unlock HFM cells in Workspace, but we were able to perform the functions fine on the application using the WIN32 client.
    I opened a ticket with support and they recommended modifying the subcontext.properties file located in %HYPERION_HOME%\deployments\WebLogic9\servers\Workspace\webapps\workspace\conf. They recommended changing the following settings:
    #KeepAliveInterval=30
    #SessionTimeout=60
    From what I understand, these settings are for the communication between the HFM Web Servers and the application cluster servers. I'm wondering how changing these settings may affect our environment. Are there negative effects and/or trade-offs for changing these settings? Is there a recommended threshold or maximum value?

    Hi Dinesh,
    This cannot be achieved without development enhancements to some standard SAP framework component, to introduce a "keep-alive" concept. If you are using a CMS for CTI or email integration, you need to ensure it supports keeping the communications session alive also.
    Sincerely,
    Glenn
    Glenn Abel
    Covington Creative
    www.covingtoncreative.com

  • Need guidance for fusion web developement

    Hi. I am newbie. I am currently using jdeveloper 11.
    I have surfed a lot of videos about application developement using oracle fusion web development. Can anybody please suggest some really good books/tutorials/videos for my requirement below.
    1. There are lot of tables which I have created for my business. The jsf page should have the feature to view existing/add data to these tables. It should be able to plot graphs.
    2. I have created batch files which will send mails. I need to use buttons on the page which when clicked will exectue these batch files. In my previous post, they have asked me to use an ActionListener.
    3. I had studied Java programming a long time ago (forgotten almost all of it). Please tell me what concepts of java should i study again so that i can program all these above things into my aplication.
    I have until now just built a simple application which allows me to display values from a table in an adf form on a jsf page. I have surfed enough forums, like stackoverflow.com but i am not able to find the answers that i need to these above questions. This forum is my last hope! Please help guys!
    P.s : I have glanced through these books,
    Jdeveloper handbook 11g, quick start guide to oracle fusion web development.
    Regards,
    Sachin

    Hi,
    1.http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_58/jdtut_11r2_58_1.html
    2. why do you need batch files? you can send mails through javax.mail API http://adfblogs.blogspot.com.es/2012/01/sending-e-mail-from-adf-application.html
    3.this post resume a lot of resources for training and beginning https://blogs.oracle.com/shay/entry/how_do_i_start_learning_oracle_adf_and_jdeveloper

  • New to J2EE and web development in java

    Hi folks,
    I have been developing desktop app in C# for the past two years. But now I am taking my masters and I am learning in Java. I am also interested in J2EE and wanted to develop web apps in Java. The problem is, I am very much confused with the tools, classes and etc Java uses. For example people say to me, you have to know Struts, Spring, JSP, Ant, Tomcat, Apache Tomcat, Hibernate, and etc. I tried to search every one of those and got some clue but not that much detail and now I am really confused.
    Before I go to coding (which is my interest), I wanted to know what tools to know and why and how they are used, at least the basics. Once I get some idea, I will keep on searching by myself. Can any body please tell me or give me a link of what tools I have to start with as a begineer web developer? Can any body give me a brief description about them?I downloaded Eclipse and I am almost familier on how to use it and I also write some code on it. These days, I downloaded J2EE, Struts, and Hibernate but I dont know how to use them and where to use them. No clue. Help me guys.
    Thank you.

    Step 1 : Download "Eclipse IDE for Java EE Developers". You don't need anything else in terms of tools at the start.
    Step 2 : Get solid experience in basic Java development. Make sure you are very comfortable with the language and core API classes such as I/O, collections, etc. Do this in a basic Java project in Eclipse.
    Step 3 : Learn JSP and Servlets. These two technologies are the foundation of Java EE web app development. Use "Dynamic Web Project" in Eclipse and Tomcat as your server. For a good exercise, build a web app to manage a catalog of something by reading/writing to a text file local to the server.
    Step 4 : Learn JPA. This is the standard for modern Java database access. Make sure you learn JPA standard rather than a specific implementation like Hibernate. In fact, since you are asking on an Oracle site, I would recommend EclipseLink implementation of JPA rather than Hibernate. For an exercise take your app from Step 3 and make it use a database instead of a file. Use MySQL as your database.
    By the time you get this far you will have a good foundational knowledge of Java EE web development. Where you go from here will depend on your interests. If you are more interested in the web tier, you can learn some of the higher-level front-end technologies such as JSF or Struts that make it easier to build very large apps. If your interests are more in middle tier and scalability, start learning EJBs. Don't bother learning Ant or Maven unless your interests are specifically in build systems and release engineering. You don't need to know Ant/Maven to build/run/export Java EE applications in Eclipse.
    Good luck!
    - Konstantin

  • Web Service API for KVM

    Dou you know if KWm supports Web Services clients?
    Thanks

    [becatelvent],
    Dou you know if KWm supports Web Services clients?
    ThanksThere is a JSR (JSR-172) with an expert group working to define the web services APIs for J2ME. Sun is the spec lead for this JSR. You can take a look at this JSR at:
    http://www.jcp.org/jsr/detail/172.jsp
    HTH.
    Rgds,
    Allen Lai
    Developer Technical Support
    Sun Microsystems
    http://access1.sun.com

  • Web Services API Sample w/ Filters

    Does anyone know how to use a Filter in a doOracleSearch call using the Java proxies supplied for the Web Services API? I tried doing this but it appears there is a conflict with Servlet Filter class. When I used the complete path to the class, it compiles, but upon deployment and execution on OC4J I get a symbol not found error. Here is an excerpt of the problem code:
    if( query != null && search_type.equals("advanced") )
    String str_doc_type = request.getParameter("document_type");
    int start = orderByDate ? 1 : startIndex;
    int hits = orderByDate ? recencyHits : pageHitCount;
    oracle.search.query.webservice.client.Filter[] myfilterArray = null;
    oracle.search.query.webservice.client.Filter filterDocType = new oracle.search.query.webservice.client.Filter(112,"string","equals","4918");
    myfilterArray[0] = filterDocType;
    try
    res = ctx.doOracleSearch(
    query, // query
    new Integer( start ), // start index
    new Integer( hits ), // documents requested
    Boolean.TRUE, // duplicates removed
    Boolean.FALSE, // duplicates marked
    groups, // data groups
    locale.getLanguage(), // query language
    null, // document language
    Boolean.TRUE, // return count
    null, // filter connector
    myfilterArray, // filters
    null // fetch attributes
    catch( Exception e )
    searchException = e;
    }

    Hi,
    I am trying to deploy this sample application. I received the following error:
    [oracle@dev1 home]$ /home/oracle/oracle/product/10.1.8/ses1/jdk/jre/bin/java -ja
    r /home/oracle/oracle/product/10.1.8/ses1/oc4j/j2ee/home/admin_client.jar deploy
    er:oc4j:dev1.psa:5740 oc4jadmin oraidev1 -deploy -file /home/oracle/oracle/produ
    ct/10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/sample.ear -deploymentName ses
    _query -bindAllWebApps http-web-site
    08/05/20 11:20:29 Notification ==>Application Deployer for ses_query STARTS.
    08/05/20 11:20:29 Notification ==>Copy the archive to /home/oracle/oracle/produc
    t/10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query.ear
    08/05/20 11:20:29 Notification ==>Initialize /home/oracle/oracle/product/10.1.8/
    ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query.ear begins...
    08/05/20 11:20:29 Notification ==>Unpacking ses_query.ear
    08/05/20 11:20:29 Notification ==>Error while unpacking ses_query.ear
    java.util.zip.ZipException: error in opening zip file
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:112)
    at java.util.jar.JarFile.<init>(JarFile.java:127)
    at java.util.jar.JarFile.<init>(JarFile.java:92)
    at oracle.oc4j.util.FileUtils.unjar(FileUtils.java:309)
    at oracle.oc4j.util.FileUtils.autoUnpack(FileUtils.java:488)
    at com.evermind.server.deployment.EnterpriseArchive.<init>(EnterpriseArc
    hive.java:234)
    at oracle.oc4j.admin.internal.ApplicationDeployer.initArchive(Applicatio
    nDeployer.java:412)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDe
    ployer.java:187)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun
    (OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(Deplo
    yerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:534)
    08/05/20 11:20:29 Notification ==>Operation failed with error:
    Unable to find/read file META-INF/application.xml in /home/oracle/oracle/product
    /10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query (META-INF/application.
    xml)
    Deploy error: Deploy error: Operation failed with error:
    Unable to find/read file META-INF/application.xml in /home/oracle/oracle/product
    /10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query (META-INF/application.
    xml)
    Please help!!
    Thanks!
    Regards,
    Deva

  • Using WebCenter Spaces Web Service API through JDeveloper's Data Control

    Hi,
    I'm trying to access WebCenter Spaces Web Service API (located at http://host:port/webcenter/SpacesWebService)
    using JDeveloper's Web Center Data Control.
    I created a data control in my portal project using JDeveloper's Web Service Data Control wizard.
    I also created and configured key stores (jps-config.xml) at both sides (spaces server and my portal client).
    How I created a data control:
    * First I entered the name and the URL (http://host:port/webcenter/SpacesWebService?WSDL)
    * Then I entered HTTP basic authentication details (user name and password)
    * After that I drag-and-drop the getGroupSpaces() method from the data control to a .jspx page as a ADF read-only table.
    * Then ran my portal project and navigated to this .jspx page and it worked. List of group spaces appeared well on that page.
    The problem is that I got only public group spaces and group spaces created by the user I entered on HTTP basic authentication details.
    I makes no sense to enter some static user details in a web service client (or a data control).
    So the question is; can I use identity propagation to get only group spaces created by the same user which I logged in my portal?
    Edited by: 832886 on Feb 18, 2011 3:09 AM

    Hi,
    You generally get NameError when you are executing the createCred/updateCred from a incorrect location. Are you using the wlst from oracle_common\common\bin?
    Also, In your steps I don't see what you did to populate the walllet at JDeveloper end after your updateCred failed. This is a required step. Use the wlst from the location emntioned above and you should be able to proceed.
    Thanks,
    Vishal

  • Unable to open the HFM web server link

    I am gettng the following error while connecting to the url "http://<servername>/hfm/home/LaunchPage.asp"
    Error Number:1
    Error Description:Please Relogin. Session has Timed out
    Error Source:
    Page On which Error Occurred:
    I have tried setting the Full permission at the website level to the Windows Admin user as well as IUSR and IWAM. but it still didnot work.
    how ever, i was unable to find the Connection timeout tab when i clicked on HFM->Properties.
    Please throw some light on it.

    you didn't specify the version of HFM. I am assuming you are talking about a 9.3.x or 11.1.1.x release.
    In HFM 9.3.0 and 9.3.1 and above, there is no direct link to HFM web. You must login to the BI+ Workspace and use the "Navigate"->"Applications"-"Consolidation" menus to launch HFM.
    This is unlike Planning where there is still a direct link straight to planning.

  • Not able to connect VS Web Developer Express through instant client 10

    I just spent 10 hours attempting to connect Web Developer Express 2010 to an Oracle 10g database. In the end the solution was beyond simple, but with the existing threads there is a lot of talking around the problem. I’m posting this in case it might help someone else.
    Obtain the Oracle instant client software that will work for your database. You will only need the basic package.
    http://www.oracle.com/technetwork/database/features/instant-client/index-100365.html
    Extract the contents to a temp location on your hard disk
    Create a directory for the application – it could be anything, but here is what I used
    C:\instantclient
    Copy the extracted files into the directory you just created.
    Right click on my computer and choose properties
    Under advanced and environment variables you will need to add the directory you created above to the system variables PATH. You will need to create a new system variable called TNS_ADMIN and put the same c:\instantclient path in it.
    Create the file tnsnames.ora under the c:\instantclient directory and put your customized entry in it. Below is an example.
    tnsnams.ora file contents
    <Alias for this tnsnames entry> =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = <Your Oracle Server>)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = <Your database instance>)
    It’s a good idea to restart your system after this installation.
    In web developer express use the .NET Framework Data Provider for OLE DB.
    Here is the key piece of information!!
    Under server name you need to use the alias from the tnsnames.ora file entry. If you do not do this it will not pick up the SERVICE_NAME parm and will give you some goofy error like:
    ORA-12514: TNS:listener could not resolve SERVICE_NAME given in connect descriptor
    or
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor

    I just spent 10 hours attempting to connect Web Developer Express 2010 to an Oracle 10g database. In the end the solution was beyond simple, but with the existing threads there is a lot of talking around the problem. I’m posting this in case it might help someone else.
    Obtain the Oracle instant client software that will work for your database. You will only need the basic package.
    http://www.oracle.com/technetwork/database/features/instant-client/index-100365.html
    Extract the contents to a temp location on your hard disk
    Create a directory for the application – it could be anything, but here is what I used
    C:\instantclient
    Copy the extracted files into the directory you just created.
    Right click on my computer and choose properties
    Under advanced and environment variables you will need to add the directory you created above to the system variables PATH. You will need to create a new system variable called TNS_ADMIN and put the same c:\instantclient path in it.
    Create the file tnsnames.ora under the c:\instantclient directory and put your customized entry in it. Below is an example.
    tnsnams.ora file contents
    <Alias for this tnsnames entry> =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = <Your Oracle Server>)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = <Your database instance>)
    It’s a good idea to restart your system after this installation.
    In web developer express use the .NET Framework Data Provider for OLE DB.
    Here is the key piece of information!!
    Under server name you need to use the alias from the tnsnames.ora file entry. If you do not do this it will not pick up the SERVICE_NAME parm and will give you some goofy error like:
    ORA-12514: TNS:listener could not resolve SERVICE_NAME given in connect descriptor
    or
    ORA-12514: TNS:listener does not currently know of service requested in connect descriptor

  • Process for adding a boolean option to the web service API

    Hey guys,
    Here's a little background:
    I'm currently working on adding an optional "strict" mode to some of the unmarshalling functions in SchemaMarshaller that will throw exceptions when receiving bad data for certain fields, and also improving the date handling while I'm at it (I want null instead of mangled dates when receiving bad data when strict mode is off).
    This is for my benefit at the moment as I'm tired of spending time debugging Flex code when XFire and Oracle are spitting out rubbish (like empty xsd:DateTime nodes, DateTimes in xsd:Date nodes, etc) - but I'm sure other people would like to use it too while we don't have a response validator, so I'd like to do it in a way that I can submit as a feature request (with patch) on Jira.
    My questions are about the procedure for stuff like this- where should this option be made public in the API, and who would I talk to about it? Or would it be best for it to always be strict? - That's how I'd like it :) Perhaps it should just log errors when it encounters bad data?
    This is the first thing I'd like to "add" to the SDK rather than a simple bug-fix, so I just want to do things in a kosher manner. Sorry if I come across like a total noob :)
    Cheers,
    -Josh
    "Therefore, send not to know For whom the bell tolls. It tolls for thee."
    :: Josh 'G-Funk' McDonald
    :: 0437 221 380 ::
    [email protected]

    Hey Josh,<br /><br />I'm swamped at the moment but appreciate your interest and your<br />contributions to Flex and WebServices thus far. I'll try and get some<br />time to look into your specific request and what you're hoping to do at<br />the code level, but to answer your question about test cases, you should<br />consider the NIST testsuite for XML Schema datatypes.<br /><br />BlazeDS has historically maintained the WebService implementation, so it<br />appears their test case for NIST based schema tests starts out here (and<br />refers to many data type test cases in the /nist subdirectory).<br /><br />http://opensource.adobe.com/svn/opensource/blazeds/branches/3.0.x/qa/app<br />s/qa-regress/testsuites/flexunit/src/tests/flexunit/xml/NISTXMLSchemaTes<br />t.as<br /><br />Pete <br /><br />________________________________<br /><br />From: [email protected] [mailto:[email protected]] On Behalf Of Josh<br />McDonald<br />Sent: Tuesday, July 08, 2008 8:21 PM<br />To: [email protected]<br />Subject: Re: Process for adding a boolean option to the web service API<br /><br /><br />A new message was posted by Josh McDonald in <br /><br />Developers --<br />  Process for adding a boolean option to the web service API<br /><br />Yeah I knew it'd have to be somewhere outside of SchemaMarshaller, as<br />it's [ExcludeClass] anyway so end users don't see it, nor is it<br />documented in the api docs. Just wasn't sure where it should be. I'll<br />have a think about it some more when I get some down time to work on it,<br />but webservice was where I was thinking it should be too. Didn't think<br />about having it settable on operation as well though, so thanks for that<br />:)<br /><br />Anybody know a good source of valid values for various XSI types (date<br />and DateTime mainly) for testing purposes? Or even who I should contact<br />to get access to that sort of thing? I assume the W3C will take 6 months<br />to answer me, and the answer will be "buy our $10,000 compliance testing<br />suite" or something along those lines.<br /><br />-Josh<br /><br />On Wed, Jul 9, 2008 at 9:46 AM, Matt Chotin <[email protected]><br />wrote:<br /><br /><br />     A new message was posted by Matt Chotin in<br />     <br />     Developers --<br />      Process for adding a boolean option to the web service API<br />     <br />     I think for a top-level user option I would put the new option<br />on the mx.rpc.soap.Operation class (I think that's the name).  You'd<br />then have that propagate through to the underlying schema classes as<br />they are used.  I'd then also add an option to the WebService class<br />itself, and basically in the Operation it should see if it has its own<br />value set and if not check the value on the WebService.  We do this for<br />a couple of other flags too I think.<br />     <br />     End users in general wouldn't look at any classes other than the<br />WebService and maybe the Operation classes, so asking them to set<br />options on the schema classes themselves probably wouldn't work.<br />     <br />     Matt<br />     <br />     <br /><br /><br /><br />-- <br />"Therefore, send not to know For whom the bell tolls. It tolls for<br />thee."<br /><br />:: Josh 'G-Funk' McDonald<br />:: 0437 221 380 :: [email protected] <br /><br /><br />________________________________<br /><br />View/reply at Process for adding a boolean option to the web service API<br /><a href=http://www.adobeforums.com/webx?13@@.59b5be89/1> <br />Replies by email are OK.<br />Use the unsubscribe<br /><a href=http://www.adobeforums.com/webx?280@@.59b5be89!folder=.3c060fa3>  form<br />to cancel your email subscription.

  • ERROR: The operation could not be performed because the file can't be accessed or doesn't exist. Please contact your web developer to correct the problem.

    Only on one page, the client is receiving this error:
    Error - The operation could not be performed because the
    file cant be accessed or doesnt exist. Please contact your web
    developer to correct the problem.
    I tested it with a couple different usernames and a couple different browsers and it works fine on my end.. but none the less it is happening to him. This is the second time it happened to two different clients.
    ??? Any ideas ??? Anyone else had this happen?

    Here's the setup on the two machines in particular...
    Machine #1:
    XP Pro
    Was IE7, now latest FF
    No antivirus
    Firewall – Windows Firewall, Downloaded AVG free trial ver., but not installed
    Machine #2:
    XP Pro
    IE7
    Again, No AV… had Kaspersky… but uninstalled it
    Windows Firewall
    Maybe that could be of some assistance... not seeing anything that could possibly block or inhibit the ICE. Each machine is independent of the other, separate networks, different locations, JavaScript enabled, no cookie blockers, etc.
    ....STUMPED!!!   

  • I tried to download the Firefox Add on Web Developer and I got an error message and I don't know how to proceed.

    Hi
    I have Firefox 3.0.1 and then it also says Mozilla 5.0. So first I don't even know if this is the right product but I didn't know what else to do.
    I'm trying to I tried to download the Firefox Add on Web Developer and I got an error message of: Firefox could not install the file at http://releases.mozilla.org/pub/mozilla.org/addons/60/web_developer-1.1.9-fx+sm.xpi because: Unexpected installation error Review the Error Console log for more details. -203
    I've tried it like 3-4 times. I don't know what I'm doing wrong.
    Any suggestions???
    THANK YOU :-)
    Erin

    You should update to the latest Firefox 3.6.x version:
    *http://www.mozilla.com/firefox/all.html
    *http://www.mozilla.com/firefox/all-older.html
    See:
    *http://kb.mozillazine.org/Unable_to_install_themes_or_extensions_-_Firefox

  • Java Console in Netscape 7.1 browser under Tools- Web Development

    There must be something wrong: with my Netscape 7.1,
    under Tools->Web Development
    I do not Java Console (JavaScript Console is there).
    How to solve this, please help. Thank you.
    (I use j2sdk1.4.2_04), and did use in /usr/local/netscape/plugins
    ln -s /home/xxxx/j2sdk1.4.2_04/jre/plugin/i386/ns610-gcc-32/libjavaplugin_oji.so .

    There must be something wrongOH NOES!!!!!!
    Did you try looking in the systray? With recent versions of java, you right click the coffe cup icon in the systray to get at the VM info. That's because the sun VM is a system-wide thing, not linked into the browser so much any more.
    If that doesn't work, do any java things? (ie applets)

  • Hostnames with local web development environment

    I'm running the latest version of OS X Server 2.0.23 on Mountain Lion 10.8.2, and am trying to get set up to use X Server as a local web development environment.
    When I went through the steps of installing X Server, I used the hostname "jb.local". By enabling the websites feature, and pointing my browser to jb.local, I was able to see the default welcome page, and thought everything was going well. However, I can't figure out how to add additional hosts to this domain (i.e. drupal.local, or wordpress.local) without modifying my hosts file.
    Do I now need to setup DNS in the server and set my Mountain Lion client to use it or something, or is there some better way that I'm missing?

    When I was installing Server, it guessed the .local extension, (which we are using as the name of our local subnet) but not the whole hostname "jb.local". I added that myself. This machine is not registered as "jb.local" anywhere in our internal DNS.
    This confuses me because pinging jb.local correctly resolves to the internal IP address of this machine on our network. So how is this resolving?  There is no entry for this in my hosts file, and our internal DNS has no record of the hostname "jb.local".
    This hostname was invented during the installation of the Server app, so there must be some communication between this machine, and the server app, that is resolving this hostname correctly, but I can't find anything on it.

  • Web Developer needed in Louisville, Kentucky - Full-time Position

    Hey guys and gals! This is a real job - not a contract job,
    not a freelance job, but a real full-time paid job in a
    professional office.
    So if you are wanting to settle down and make a consistent
    wage and have some fun coding, then give me a yell. Must be willing
    to move to
    Louisville, Kentucky (USA) area. Serious inquiries only.
    We are a small but quickly growing company. We have many web
    development projects in the pipe and many coming down the pipe. We
    are
    looking for a solid Flash Animation / Actionscript / PHP /
    MySQL programmer with osCommerce / CRE Loaded experience
    (preferred).
    We would also like a candidate to have experience with:
    1. Relational database knowledge
    2. SQL Syntax Experience
    3. HTML and CSS Web Layout
    4. Flash 8 (ActionScript 2.0)
    5. ASP (Classic 3.0)
    6. PHP
    We would also prefer experience with:
    1. ASP.NET 2.0
    2. Database Engines: MySQL, MS SQL Server, Access
    3. Visual Basic
    4. XHTML / CSS Advanced Layout
    5. Access Database Programming (VBA)
    6. Photoshop (basic usage and slicing)
    7. Windows Server 2003 & IIS 6
    General Skills and Abilities:
    - Communicate with clients on a technical and non-technical
    level.
    - Basic project management skills (ability to organize tasks
    and communicate status, timeframes, and changes needed).
    - Ability to work with little to moderate supervision.
    - Ability to self educate and learn new techniques and
    skills quickly.
    - Ability to work in fast paced, casual environment where
    tasks and priorities may change from day to day.
    - Must be reliable and dedicated with a high work ethic.
    - Ability to be professional around clients and have fun
    when not.
    - Able to lift up to 55lbs.
    - Able to sit for long periods of time.
    - Able to view computer screens for long periods of time.
    - Able to use computer input devices such as keyboard and
    mouse.
    - Able to easily communicate with clients via e-mail,
    telephone, or written methods.
    - Some travel may be required to meet with clients to
    discuss projects. Mostly local, but may have some overnight stays
    (rare).
    We may offer moving expenses on a case by case basis.
    Day to day overview:
    A normal day would consist of arriving at the office and
    being prepared to work at 9am (Monday through Friday). Your task
    list will be
    created for that day or week (whichever makes sense). You
    will work through the task list until completed.
    Tasks will be taking a web development project from start to
    finish. Setting up the web server, creating the database structure,
    coding any
    programming necessary. Also will assist with general web
    development tasks such as slicing a web design in Photoshop,
    creating the HTML layout of the website, changes to existing
    websites, etc.
    Flash animiations, flash video production, and Actionscript
    programming will also be performed by this position.
    We are a small, but growing company, so other duties may be
    requested to help fill in gaps where needed. We pride ourselves on
    customer
    service and being responsive to our clients. A positive, "can
    do" attitude is required.
    There will be a lot of freedom and opportunities to help
    improve the organization and how projects are completed. We are
    growing rapidly,
    so opportunities for professional growth and promotion will
    be given to staff that go above and beyond and show initiative.
    Some overtime will be required to meet deadlines and keep
    project workload under control.
    About Media Marketers:
    Formed in 2001 as an advertising and promotional company,
    Media Marketers has found a niche and grown in Web Development,
    Video Production,
    and Marketing. Our office is located in the heart of the
    Bluegrass Industrial Park on the east side of Louisville. This
    location allows us
    quick access to many resources. Our work environment is
    casual, open, friendly, and caring. We are a small company and
    value our staff's
    creative ideas. We strive to push the web development and
    marketing envelope with solid technologies and highly creative
    designs and ideas.
    We educate our clients on technology and marketing and help
    them improve their image, streamline their workflow, and
    disseminate
    information.
    Anyone qualified, interested, and hard working should send a
    resume and cover letter to:
    [email protected]
    or
    Careers
    Media Marketers, Inc.
    1808 Cargo Ct
    Louisville, KY 40299
    Website: www.MediaMarketers.com
    No phone calls please. Equal Opportunity Employer

    Hi,
    Is this still available? Current location Captain Cook -
    S.Kona. 8 yrs CF/SQL etc.
    Thanks

Maybe you are looking for

  • NEED ADVISE

    I want to purchase APPLE TV. Is connecting it to the 30" display station a good idea or are there better displays available? I have to buy either a HD display or TV but I am not sure which is best. I also have a Fujitsu Siemens Lifebook Windows XP Pr

  • KM Repository images,and XML Forms not displaying.

    Hello All, I am currently running NW04 SPS14 Portal with KM & Collaboration. However, the icons in the Content Management>> Explorer>> Documents repository are not displaying. Instead a little while box, with a red x sign appears in place of the imag

  • List-range partition

    Hi Oracle Gurus, I have a table with list partition, as the partitions are growing large I need to create subpartitions. Is it possible to create a range subpartition under list partition. If yes I need that subpartition to be built on time not on da

  • Dynamic UI Manipulation

    Hi All,     i have created context and the ui elements  dynamically. i have binded the ui elements to the context also through coding. i want to change the alingment of inputfiled dynamically through coding . how to do this?........ please help on th

  • IPod 160GB does not sync all tracks in iTunes

    I recently bought an iPod Classic (160GB). I had loaded about 8000 tracks for my 60GB iPod. I loaded another 1148 tracks and tried to sync my 160GB iPod. Out of 9148 tracks, it will only sync 8414 tracks. Why does it stop at 8414?