Weblogic with ColdFusion

Hi,
We want to host a coldfusion (Version 4.5) application on Weblogic.
Is it possible/feasible.
Thanks.
Jag

Hi,
Has anyone any ideas regarding this ?
Thanks for any help offered..
Jag
j wrote in message <3c4dad39$[email protected]>...
Hi,
We want to host a coldfusion (Version 4.5) application on Weblogic.
Is it possible/feasible.
Thanks.
Jag

Similar Messages

  • Flex 3 App not working in with ColdFusion 9

    We have a Flex 3 application that uses flash remoting to connect to ColdFusion.   This app was working great with ColdFusion 8,  but will not work after installing ColdFusion 9.
    I am looking for any suggestions on what I might look for to fix this issue.

    Hey Tikis,
    There are a few factors that could be throwing this thing
    through a loop. I've had this exact same thing happen to me once
    before and the culprit for me was that my crossdomain.xml file
    wasn't 100% perfectly formed. Apparently Firefox didn't care enough
    and went on with it's life however IE decided it wasn't going to
    read it and I received that error, so that would be the first thing
    I would check.
    The next thing is what version of PHP are you running on the
    server, it seems to me that the newest release of 5.2.2 is throwing
    this error more often then ever before, something I might suggest
    is upgrading to AMFPHP 1.9. RemoteObjects natively send data in
    what's called the AMF3 format which is much speedier then it's
    predecessor of AMF0. Only AMFPHP 1.9 has the ability to receive /
    send the data back in AMF3 format, where as with the 1.2 version
    it's sending the call, converts it down to AMF0 sends the data (at
    a slower pace) and generates a result. The other advantage to being
    able to use AMF3 is having true type casted results such as if PHP
    returns a number you can check it by if(event.result == 0) where as
    AMF0 everything is converted into a string and then sent back to
    Flash / Flex. So aside from all of these advantages the last one is
    less code, you no longer need to use the RemotingConnection to
    convert everything down to AMF0. I would make a copy of amfphp on
    your linux of the 1.9 version and send the remote object at that
    first and see what happens, if you are still receiving the same
    error then the problem lies in something else.
    Hope this helps.

  • Does Adobe have some beef with ColdFusion developers?

    I think I will be keeping FB 4 after the trial expires. There are some very nice things about it and I especially like the new styling/skinning tools.
    I am not impressed with the new “data-centric” paradigm in FB 4. I see it as Adobe’s way to market FB 4 to hobbyists and other people who are not really serious about development, of whom there are many. Other than repeatedly pitching that you can do a bunch of things “without writing a single line of code”, there is not a lot of information out there about how the thing really works, and am hoping that situation improves as time passes. At this point, I am not planning to use those data-centric features, except perhaps for quick prototyping. Anybody who agrees can add to this thread: http://forums.adobe.com/thread/617704?tstart=30, in which I describe a few things I learned while playing with these features.
    I do my Flex back end work with ColdFusion and am also trying the new CF Builder. The $300 bucks it costs doesn’t affect us CFers because it comes with FB 4. From what I have seen so far, it does not do much more than the ColdFusion Extensions for Flex Builder, which were free.
    But there is one thing about which I am somewhat miffed: they took away two of the best things about the extensions:
    the ACtionScript to CFC wizard;
    the CFC to ActionScript wizard.
    Those make it very easy to generate a CFC from an AS value object and viceversa. I tried to install them in FB 4, but it won’t allow it, generating an error about a dependency or something.
    Those 2 items are great time - and error - savers. Without them, you have to do double the coding. I can’t figure out Adobe's reasoning for not making them available anymore; they are already there and all we need is a way to install them. Is Adobe so intent in pitching this “without writing a single line of code” that they are willing to take this great tool away from us?
    Am I the only one who would like to have these available?
    I would really appreciate it if someone can provide some logical reason for this and please, CORRECT ME IF I AM WRONG OR MISSING SOMETHING!
    Greetings to all,
    Carlos

    Following Ansury’s suggestion, I did some more digging (which I should
    have done from the beginning) and found 4 extensions to CF builder that
    are there for the taking. By installing two of them, I can now generate
    an AS class from a CFC and create a mapping between the two; but I
    cannot generate a CFC from an AS class. The FB 3 wizards did this both
    ways, but this is better than nothing.
    That's good news. The rest you'll probably find out about by doing further reading. I don't use CF, but I really doubt FB4 has less than before.
    2.    it looks like you have to
    call the service each time you want to bind the data to another control
    or to somehow use it more than one time. I could not figure out how to
    access the data that has come in from a service call and been bound to x
    control – and no one in these forums was willing or able to answer that
    when I asked the question in a previous post.
    Regarding 2, I'm assuming you're talking about PHP, No, you don't have to call the service each time you want to bind the data. You define the service, call it once to bring in the data, then bind to that data using .lastResult because the data is already in.
    Here's the process I follow when I need data. I set up the class which let's say has a getRecords() method that returns data. I then use the data/services wizard as usual to introspect the class and set up the return types.
    THEN in design mode, I just drag a useless datagrid (that I delete later) onto the screen. With the datagrid on the screen, I drag my method (getData() from the data/services view) to the datagrid. This sets up the service call and wires the dataProvider property of the datagrid. All I do after that is move around the code that's been generated to where I need it, before deleting the useless datagrid.
    This defined your service. It can stay where it is.
           xmlns:myservice="services.myservice.*"
            <myservice:MyService id="myService"
                                             fault="Alert.show('some event fault message')"
                                             showBusyCursor="true" />
            <s:CallResponder id="getRecordsResult" />
    This is the call to your service that actually brings the data in. I move it to the init() function.
    private function init():void{
        getRecordsResult.token = myService.getRecords();
    Then to use the data returned from getRecords(), you could either instruct the <s:CallResponder itself to wire its data when returns using result.
            <s:CallResponder id="getRecordsResult"
                                           result="{doFurtherDataProcessing()}" />
    or tap into the data from anywhere at anypoint using lastResult. In this case the list is asking for the data.
    <s:List dataProvider="getRecordsResult.lastResult" />
    The first way with result means that the source of the data passes it to destination structures. The second way with lastResult means that the destination structures call for the data. But still they call for the data from its inside location, from where it's already sitting inside the app, they don't have to bring it in again from the outside, because the data has already been brought into the app by CallResponder once and is sitting and waiting to be used whenever.
    Hope this helps you. For PHP, I recommend you watch the 2 videos by Tom Lane from Adobe on ADC. Must watch and very helpful. Rest will come from use. For CF, not sure, others may pitch in.

  • How do I get flex remoting to work with Coldfusion 11

    Hi,
    Coldfusion 11 (Developer)
    Flex 3
    Existing Flash Application works with Coldfusion 8
    Flex Integration is turned on.
    Running latest update
    CentOS 6.1 with latest updates
    I have done the following:
    http://127.0.01/flashservices/gateway  ---> Page Not found
    http://127.0.01/flashservices/gateway/  ---> Page Not found
    http://forums.adobe.com/message/5621721#5621721
    Confusion Blog » Apache + Debian + Coldfusion 10 + flex2gateway = Error 404
    https://groups.google.com/forum/#!topic/railo/6j2i6gl8Ac4
    \config\wsconfig\1\uriworkermap.properties file to include:
    /flashservices/gateway/* = cfusion
    /flashservices/gateway = cfusion
    I have modified the mod_jk.conf like so:
    # Select the timestamp log format
    JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
    # Fix para Flex2gateway
    <IfModule jk_module>
        JkMount /*.cfm ajp13
        JkMount /*.cfc ajp13
        JkMount /*.do ajp13
        JkMount /*.jsp ajp13
        JkMount /*.cfchart ajp13
        JkMount /*.cfres ajp13
        JkMount /*.cfm/* ajp13
        JkMount /*.cfml/* ajp13
        JkMountCopy all
    </IfModule>
    AddHandler jakarta-servlet .cfm .cfml .cfc .cfr .cfswf
    Alias /CFIDE "/opt/coldfusion10/cfusion/wwwroot/CFIDE"
    I uncommented the "start flex 2" section in web.xml
    Nothing has worked.
    I have searched Google and Adobe.
    I was hoping that Adobe would have the "Flex Integration Check Box" working
    by now.  It only been around since ColdFusion 8 and basically does nothing.
    Adobe could post a tutorizl on how to get this working.
    Job Security for "Tech Support".
    Any ideas.
    Brian

    Do you have internet when wired to the router?
    What exactly is the problem? What error messages do you get?
    What are the current settings on the WRT?

  • Integrate two weblogic with LDAP embedded

    I need connect a weblogic with a LDAP embedded. I make the settings as follows:
    1)Create a new provider of type LDAPAuthenticator.
    2)The parameters  the provider are:
    <sec:authentication-provider xsi:type="wls:ldap-authenticatorType">
            <sec:name>Authenticator</sec:name>
            <sec:control-flag>SUFFICIENT</sec:control-flag>
            <wls:port>7041</wls:port>
            <wls:user-object-class>wlsUser</wls:user-object-class>
            <wls:principal>cn=Admin</wls:principal>
            <wls:user-base-dn>ou=people,ou=myrealm,dc=base_domain_adf</wls:user-base-dn>
            <wls:credential-encrypted>{AES}23vkfCfP/jzmmoqK2g/zkH9uJ8zMSmJ/Xwa6GDjCCQc=</wls:credential-encrypted>
            <wls:user-from-name-filter>(&amp;(uid=%u)(objectclass=wlsUser))</wls:user-from-name-filter>
            <wls:group-base-dn>ou=groups,ou=myrealm,dc=base_domain_adf</wls:group-base-dn>
            <wls:use-retrieved-user-name-as-principal>true</wls:use-retrieved-user-name-as-principal>
          </sec:authentication-provider>
    The problem is that the application do not authenticated. I think that the problem is because do not returns all attributes of the users. This is log de LDAPemebedeb the weblogic:
    15:45:47.896 ldc=2 op=235 SearchRequest {baseObject=ou=people,ou=myrealm,dc=base_domain_adf, scope=2, derefAliases=0,sizeLimit=1000, timeLimit=0, attrsOnly=false, filter=(&(uid=pribpm22)(objectclass=wlsUser)), attributes=description}
    15:45:47.901 ldc=2 op=235 SearchResponse {entry='uid=pribpm22,ou=people,ou=myrealm,dc=base_domain_adf', attributes='LDAPAttribute {type='description', values='Tue May 14 17:34:51 COT 2013'}'}
    any ideas?..
    Have you made this configuration?
    Thanks....

    As far as I know, you cannot navigate between workspaces without logins.
    You can do it, if the applications are in the same workspace
    Gus

  • ODBC Standard with Coldfusion 9

    Hello,
    I have a customer using Coldfusion 9. Our ODBC driver is not working with Coldfusion and I was wondering what version of ODBC standard is used with this product.
    Thank you.

    waltereo001 wrote:
    > Hi,
    >
    > I got the following problem when I try to acces a Oracle
    9 database. with
    > the an ODBC datasource.
    > With the JDBC, the same query is working fine.
    >
    > Someone has an idea of the problem ?
    >
    >
    ======================================================================
    >
    > Error Occurred While Processing Request
    > Error Executing Database Query.
    > [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Oracle][ODBC]Restricted data
    > type attribute violation.
    >
    > The error occurred in
    >
    D:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\itdm_portal\ITDM\pc_tdm_ToolPar
    > ams.cfm: line 88
    >
    > 86 : <cfelse>
    > 87 : AND (TDM_PARAM_CONFIG.FAMILY_ID IN
    > ('#replace(Variables.strLFIDList,",","','","ALL")#'))
    > 88 : </cfif>
    > 89 : ORDER BY CODE_ID_PK
    > 90 : </cfquery>
    If FAMILY_ID is a number you don't need the quotes. And you
    should use
    cfqueryparam:
    <cfelse>
    AND (TDM_PARAM_CONFIG.FAMILY_ID IN
    (<cfqueryparam cfsqltype="cf_sql_integer"
    value="#Variables.strLFIDList#" list="true">)
    </cfif>
    Jochem
    Jochem van Dieten
    Adobe Community Expert for ColdFusion

  • Stored procedure not found when creating a new recordset binding in Dreamweaver CS6 with ColdFusion Server 11

    Stored procedure not found when creating a new recordset binding in Dreamweaver CS6 with ColdFusion Server 11.  I can see the tables and views in the database tab, but no stored procedures.  If I connect to a data source created in ColdFusion Server 6 I am able to see the stored procedures.

    Ben thanks for the reply!
    Yes that is the process I am following:
    In Dreamweaver, open the page that will run the stored procedure.
    In the Bindings panel (Window > Bindings), click the Plus button, and then select Stored Procedure.
    In the Data Source pop‑up menu, select a connection to the database containing the stored procedure
    Enter the ColdFusion Data Source user name and password.
    At this point in the procedure drop down I would get a message that said No Stored Procedure Found.
    Right now it appears to be working, I had to create a new site that pointed to the older CF 6 server's data source and create a page following the process above, then when I went back to the CF 11 site the stored procedures were now populated.  I need to make sure it is pulling from the correct server but right now it appears to be working.
    Thanks
    Dwight

  • Creating A New MySQL Database With Coldfusion Code

    Hi,
    I was wondering if anyone knew how to create a whole entire
    new database simply by executing a Coldfusion template (via a form
    for example).
    I'm pretty confident at creating a new table in an already
    existing database but not sure how to go about creating an entirely
    new database from pure ColdFusion code using MySQL.
    I basically want to create some portal for myself to do this
    to save on arduous time. It'll need to be a form because I'll have
    to give it a name, username, password etc. I need the seperate
    databases for my separate clients you see.
    One point I should make is that it is on a shared server so I
    don't have direct access to the CF Administrator.
    Any advice on achieving this or highlighting the pitfalls
    would be greatly appreciated.
    Many thanks in advance!
    Michael.

    quote:
    Originally posted by:
    Sabaidee
    if it is on a shared server, then you very likely do not have
    enough permissions to create new batabases in MySQL either...
    is there an option for you in your hosting control panel (or
    whatever it is called) to create a new MySQL database for your
    account without any involvement of server admins? if so then,
    technically you may be able to create a new db programmatically.
    but i doubt you can...
    I know it sounds cheeky but any chance you could supply
    example code for doing this with ColdFusion and MySQL? This way I
    will then be able to try it rather than waiting for my host to get
    back to me.
    I would have tried doing it already because I use SQL quite
    often with queries etc, but I just don't have the technical know
    how for this specific task at hand.
    Many thanks for your help!

  • Save weblog with source code

    Hi,
    Does anyone an easy way of downloading weblogs with source codes?
    If I select all/copy&paste into Microsoft Word 2000 (SP3), the source codes get this "nice" frame, where they are scrollable. When I save it and open it again, the source code is not scrollable, so I can only diplay the part of it:-(
    Is there a way of avoid it from my side?
    I know from the composer side it can be done, as foir example Sergei did in his weblog:
    /people/sergey.korolev/blog/2005/03/14/the-time-for-me-to-have-a-badi-of-my-own
    Or is it planned to change this annoying scrollable code frame?
    Thanks,
    Peter

    Printing of Weblogs
    Take a look at that thread for some possible help.
    As for the "annoying scrollable code frame" well we've been doing it for awhile now and nobody has been complaining too loudly.
    If the thought of everyone is to be rid of the textarea then I suppose I wouldn't have a problem using the styles instead.

  • How to start weblogic with jdk1.4.0

    anybody can tell how to start weblogic with jdk1.4.0 correctly?

    "jacky" <[email protected]> wrote in message news:<[email protected]>...
    anybody can tell how to start weblogic with jdk1.4.0 correctly?Take a look at:
    http://www.genuitec.com/products/JDK14_WLS61.pdf

  • What is best method for learning how to use mySQL with Coldfusion?

    I have been using access databases for years with Coldfusion. I have a client that wants me to build an online classroom. I figure it's time to finally start using mySQL, but there is so much info out there, I don't know which way to turn.
    Where do you experts recommend I get started?
    Also, I am using coldfusion entrprise on my system at home. My machine is a 64-bit, 3.30Ghz AMD FX - 6100 six-core processor with 8gig of ram. Can I install mySQL on the machine and run CF8 without any problems?

    How much RAM left on your system? If the computer is strictly for development, then you have more than enough to run ColdFusion, MySQL, browsers, and other development tools.
    For MySQL download the MySQL Community Server and MySQL Workbench. There is also all-in-one package for Windows, http://dev.mysql.com/downloads/windows/installer/ that you don't need to download the server and workbench separately. The installation should be straight forward.
    By the way, other CF users may suggest you to use MariaDB (https://mariadb.org/), which is a branch of MySQL.

  • Web Services with ColdFusion and PHP mixed

    Hi,
    We need to used web services provided by remote server. The
    problem is the
    remote server is on PHP and our server is on ColdFusion. Is
    there a way to
    use the web services on PHP server with our ColdFusion
    server?
    I understand ColdFusion automatically generate the WSDL by
    adding ?wsdl
    after the CFC, but I can't do the same thing because the
    remote server is
    not on ColdFusion. They have given us the wsdl web address,
    but it seems
    using the wsdl address directly without CFC is not working.
    Is that right?
    Please let me know.
    YC

    From the coldfusion side of things, it all seems okay what
    you are doing. It
    is an issue with the php/wsdl side of things. I can access
    the wsdl ok, but
    got the same error as PaulH just then when I tried to use web
    service in
    cf..
    "YC" <[email protected]> wrote in message
    news:[email protected]...
    > OK, I learned a good thing. I tired the Dreamweaver +
    icon with a
    > ColdFusion CFC file and it works fine. Now I learned I
    don't have to code
    > the <cfinvoke> tag, but just drag and drop. But
    when I tried the WSDL
    file:
    >
    http://cyfernet.ces.ncsu.edu/ws/resources.wsdl,
    and "ColdFusion MX" as the
    > proxy generator, I had an error. Do I need any other
    option to choose
    from?
    > It seems "Edit Proxy Generator list" doesn't provide a
    sufficient answer.
    >
    > I know the URL of the WSDL file is correct because I
    used it to create a
    web
    > service in PHP locally on my laptop, and it works. From
    the previous
    > answers of you and PaulH, it seems if the WSDL works
    with PHP, it should
    > also work with any other language, right?
    >
    > Have you tried yourself? Did it work?
    >
    > YC
    >
    > "Eric" <[email protected]> wrote in message
    > news:[email protected]...
    > >
    > >
    > > An easy way to do this is to use the dreaweaver
    'components' palette.
    > > Select
    > > 'web services' from the drop down list and then
    click the '+' icon to
    > > create
    > > the call to the web service. (this uses the
    cfinvoke tag)
    > >
    > >
    > > "YC" <[email protected]> wrote in message
    > > news:[email protected]...
    > >> I feel very sorry to keep asking this
    apparently very basic question,
    but
    > >> please be patient with me.
    > >>
    > >> Yes, it is right that I just need to consume
    the pre-existing web
    > >> service.
    > >> This is the WSDL page:
    http://cyfernet.ces.ncsu.edu/ws/resources.wsdl
    and
    > >> this is the web service page on the server
    using it:
    > >>
    http://cyfernet.ces.ncsu.edu/ws/getresources-client.php,
    provided as an
    > >> example.
    > >>
    > >> So in order to have the page run in ColdFusion,
    at least the following
    > >> tag
    > >> below should come up without an error?
    > >> <cfset
    > >>
    > >
    ws=createObject("webservice","
    http://cyfernet.ces.ncsu.edu/ws/getresources-c
    > > lient.php")>
    > >>
    > >> Sorry, but I still get an error message.
    > >> I need to provide "getResourcesByCatid" as the
    method and "catid" as
    the
    > >> parameter, but it should work only if the
    previous tag works without an
    > >> error, right?
    > >>
    > >> YC
    > >>
    > >>
    > >> "Eric" <[email protected]> wrote in
    message
    > >> news:[email protected]...
    > >> >>>We need to used web services
    provided by remote server.
    > >> >
    > >> > Right, so the web service already exists -
    you just want to consume
    it?
    > >> >
    > >> >>Is there a
    > >> >> >> way to use the web services
    on PHP server with our ColdFusion
    > > server?
    > >> >
    > >> > Yes - thats the whole point of web
    services, you can create them in
    one
    > >> > language/platform and consume them in
    another.
    > >> >
    > >> >> Whey you say "create a web service,"
    do you mean I need to create a
    > >> >> <cfcomponent> tag in CFC format?
    Creating a CFC is not a problem,
    but
    > >> >> how
    > >> >> can I place it on the remote server
    because it is running with PHP,
    > >> >> not
    > >> > with
    > >> >> ColdFusion?
    > >> >
    > >> > Sorry if I am not understanding the
    question clearly, but it seems to
    > >> > me
    > >> > that you want to make use of an existing
    php based web service. Why
    do
    > > you
    > >> > you need to place a CFC on the php server?
    You just need to execute
    the
    > >> > web
    > >> > service from the coldfusion server using
    cfml. As Paulh says:
    > >> >
    > >> > <cfset
    ws=createObject("webservice","url to the php based web service
    > >> > here")>
    > >> >
    > >> > The variable 'ws' being your hook into the
    php web service from
    within
    > >> > your
    > >> > cfml code.
    > >> >
    > >> >
    > >> >
    > >> >
    > >> >
    > >> >
    > >> > "YC" <[email protected]> wrote in
    message
    > >> > news:[email protected]...
    > >> >> Eric,
    > >> >> Whey you say "create a web service,"
    do you mean I need to create a
    > >> >> <cfcomponent> tag in CFC format?
    Creating a CFC is not a problem,
    but
    > >> >> how
    > >> >> can I place it on the remote server
    because it is running with PHP,
    > >> >> not
    > >> > with
    > >> >> ColdFusion?
    > >> >>
    > >> >> YC
    > >> >>
    > >> >> "Eric" <[email protected]>
    wrote in message
    > >> >>
    news:[email protected]...
    > >> >> > >We need to used web services
    provided by remote server. The
    > >> >> > >problem
    > >> >> > >is
    > >> >> > >the
    > >> >> > remote server is on PHP and our
    server is on ColdFusion.
    > >> >> >
    > >> >> > Thats one of the main nenefits of
    web services - this does not
    > > matter.
    > >> >> >
    > >> >> >>> I understand ColdFusion
    automatically generate the WSDL by
    adding
    > >> > ?wsdl
    > >> >> >> after the CFC, but I can't do
    the same thing because the remote
    > > server
    > >> > is
    > >> >> >> not on ColdFusion.
    > >> >> >
    > >> >> > Sounds like you want to consume a
    web service, not create one. You
    > > can
    > >> >> > create the call in Dreamweaver,
    just look up help on calling a web
    > >> >> > service. Also see Adobe site
    using search for 'using web services
    in
    > >> >> > coldfusion'
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >> >
    > >> >> > "YC" <[email protected]>
    wrote in message
    > >> >> >
    news:[email protected]...
    > >> >> >> Hi,
    > >> >> >> We need to used web services
    provided by remote server. The
    > >> >> >> problem
    > >> >> >> is
    > >> >> >> the remote server is on PHP
    and our server is on ColdFusion. Is
    > > there
    > >> > a
    > >> >> >> way to use the web services
    on PHP server with our ColdFusion
    > > server?
    > >> >> >>
    > >> >> >> I understand ColdFusion
    automatically generate the WSDL by adding
    > >> >> >> ?wsdl
    > >> >> >> after the CFC, but I can't do
    the same thing because the remote
    > > server
    > >> > is
    > >> >> >> not on ColdFusion. They have
    given us the wsdl web address, but
    it
    > >> > seems
    > >> >> >> using the wsdl address
    directly without CFC is not working. Is
    > >> >> >> that
    > >> >> >> right?
    > >> >> >>
    > >> >> >> Please let me know.
    > >> >> >>
    > >> >> >> YC
    > >> >> >>
    > >> >> >
    > >> >> >
    > >> >>
    > >> >>
    > >> >
    > >> >
    > >>
    > >>
    > >
    > >
    >
    >

  • Unable to start weblogic with JRockit

    i am using a 32 bit machine to start weblogic server on JRockit JVM. Doing this in order to have already installed Oracle SOA suite and when I start weblogic using JRockit it is Running out of memory. Tried the solutions given in the forum but not able to resolve this issue.
    Also when using jdk getting permgen error. Tried with resetting the maxPermSize value etc in the startweblogic server but not able to do so.
    For JRockit OOM has any one faced a similar issue?
    Can any one help me with same ?

    Thanks Carlos. The value was getting overridden in startweblogic.cmd for Sun jdk but was not sufficient for my problem as I was using Jrockit and with JRockit there is no Permsize issue inturn there was OOM.
    I followed these steps:
    1. changed maxpermsize in startweblogic.
    2. Tried increasing system swap space.
    3. Used a profiler which controls JVM running, tried reduce memory leaks, but none worked.
    I switched to JRockit for weblogic
    1. tried increasing memory etc. Finally I switched to 64 bit machine as suggested in one of the forums for JRockit oom.
    Now both jdk and JRockit weblogic with all SOA components working successfully.
    Thanks,
    Dipti Karnataki

  • Tryin to Profile weblogic with NetBeans Profiler, getting jrocke exception

    Hi there,
    I am using Weblogic 10, and want to profile a web application on it with Netbeans Profiler. But am getting the following exception upon starting weblogic (Please tell a solution......)
    JAVA Memory arguments: -Xms256m -Xmx512m
    WLS Start Mode=Development
    +.+
    CLASSPATH=;C:\bea\patch_wls1001\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\bea\JROCKI~1\lib\to
    +;C:\bea\WLSERV~1.0\server\lib\weblogic_sp.jar;C:\bea\WLSERV~1.0\server\lib\weblogic.jar;C:\bea\modules\features\w+
    +.server.modules_10.0.1.0.jar;C:\bea\modules\features\com.bea.cie.common-plugin.launch_2.1.2.0.jar;C:\bea\WLSERV~1+
    er\lib\webservices.jar;C:\bea\modules\ORGAPA~1.5/lib/ant-all.jar;C:\bea\modules\NETSFA~1.0/lib/ant-contrib.jar;;C
    LSERV~1.0\common\eval\pointbase\lib\pbclient51.jar;C:\bea\WLSERV~1.0\server\lib\xqrl.jar;;
    +.+
    PATH=C:\bea\patch_wls1001\profiles\default\native;C:\bea\WLSERV~1.0\server\native\win\32;C:\bea\WLSERV~1.0\server
    +\bea\modules\ORGAPA~1.5\bin;C:\bea\JROCKI~1\jre\bin;C:\bea\JROCKI~1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS+
    +32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\CVSNT\;C:\bea\WLSERV~1.0\server\native\win\32\oci92+
    +.+
    +*  To start WebLogic Server, use a username and   *+
    +*  password assigned to an admin-level user.  For *+
    +*  server administration, use the WebLogic Server *+
    +*  console at http:\\hostname:port\console        *+
    starting weblogic with Java version:
    Listening for transport dt_socket at address: 8453
    java version "1.5.0_11"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03)
    BEA JRockit(R) (build R27.3.1-1_CR344434-89345-1.5.0_11-20070925-1628-windows-ia32, compiled mode)
    Starting WLS with line:
    C:\bea\JROCKI~1\bin\java -jrockit -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=8453,server=y,suspend=n
    +.compiler=NONE -Xms256m -Xmx512m -agentpath:"C:\Program Files\NetBeans 6.1\profiler3\lib\deployed\jdk15\windows\+
    +rinterface.dll=\"C:\Program Files\NetBeans 6.1\profiler3\lib\"",5140 -Xverify:none -ea -da:com.bea... -da:javel+
    da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole... -Dplatform.home=C:\bea\WLSERV~1.
    +.home=C:\bea\WLSERV~1.0\server -Dweblogic.home=C:\bea\WLSERV~1.0\server -Dwli.home=C:\bea\WLSERV~1.0\integration+
    ogic.management.discover=true  -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.di
    ea\patch_wls1001\profiles\default\sysext_manifest_classpath -Dweblogic.Name=AdminServer -Djava.security.policy=C:
    SERV~1.0\server\lib\weblogic.policy   weblogic.Server
    Profiler Agent: Initializing...
    Profiler Agent: Options: >"C:\Program Files\NetBeans 6.1\profiler3\lib",5140<
    Profiler Agent: Initialized succesfully
    Listening for transport dt_socket at address: 8453
    Profiler Agent: Waiting for connection on port 5140 (Protocol version: 8)
    Profiler Agent: Established local connection with the tool
    Profiler Agent: Unable to get address of JVM_DumpHeap function
    +===== BEGIN DUMP =============================================================+
    JRockit dump produced after 0 days, 00:00:20 on Thu Aug 28 18:46:28 2008
    Additional information is available in:
    C:\bea\user_projects\domains\nms_dev\jrockit.3728.dump
    C:\bea\user_projects\domains\nms_dev\jrockit.3728.mdmp
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error Message: Unhandled native exception [85]
    Exception Rec: EXCEPTION_STACK_OVERFLOW (c00000fd) at 0x004FE3DF
    Minidump     : Wrote mdmp. Size is 297MB
    SafeDllMode  : -1
    .

    It looks like NetBeans does not support JRockit: http://profiler.netbeans.org/docs/help/5.5/vms.html
    Regards,
    /Staffan

  • Problems defining the datasource with coldfusion 9

    I just upgraded Macromedia MX7 with coldfusion 9. The local host was http://localhost:8500/ows. I am not sure if this address is the same for coldfusion 9. When I try to define the datasource, I still see Macromedia MX7 instead of coldfusion 9 in administor and I cannot proceed to Login because of the URL "http://127.0.0.1:8500/CFIDE/administrator/index.cfm", and a I get a message "the page cannot be displayed" Please HELP. Thanks, Conabre

    It sounds to me like you might have done a parallel install rather than an upgrade?
    Is there anything in your filesystem that looks like a CF9 install?
    What steps did you follow to perform the upgrade?
    If it's just a local machine, it might be quicker to not bother to work out what happened, and just install CF9 and migrate your stuff across to it, rather than doing an inline upgrade.  I have to concede I had such poor luck trying to upgrade CF in the past I abandoned it as a practice and always did a deinstall / resinstall rather than an upgrade.
    Adam

Maybe you are looking for

  • Need help understanding PC vid card options in MP

    Hi all, I have a 2008 MP with the 2600 XT video card, but I just installed Windows 7 via Boot Camp and decided I'd like to get a second video card just to play games in Windows. I do know that a PC video card won't work in OSX unless flashed, but I'm

  • Customer statement report 2007 A PL37

    Good day I need to do a layout on PLD on the customer statement report for a client, but they do not want a full record of debits and credits to show on this statement. They only want the open and unreconciled transactions to show. How do I achieve t

  • Navigation problem (back button)

    Hi all, I'm new to jsf and I'm having a problem with navigation. There are two pages one for the header information and one for the details, a button permit to add a row of details. What I need is to place e "back" button to allow to return to header

  • ERROR WHILE CONNECTING COMPANIES TO SERVER IN VISTA CLIENTS

    Hi All ! We upgraded one of our client to 2007A. Only  2 client machine are getting an error while trying to connect them to server.  Connection Error. SQL state 08001. Error de SQL Server: 21. Microsoft SQL Native Client  No se admite el cifrado del

  • Simple ListView not works?

    Stage {     title: "Application title"     scene: Scene {         width: 400         height: 400         content: [             ListView {                 items: ["Item", "Item2", "Item3"]                 height:200 }The code runs, no items is displa