Migrating  to Weblogic 8.1 from Weblogic 7.0

We are using Weblogic 7.0 with SP2. The application is build on weblogic portal.
Can we have some docs on migrating from 7.0 to 8.1.
thanks in advance.
Selva

Selva -
See the upgrade guide at -
http://e-docs.bea.com/wlp/docs81/upgrade/index.html
Regards,
Kunal
"Selva" <[email protected]> wrote:
>
We are using Weblogic 7.0 with SP2. The application is build on weblogic
portal.
Can we have some docs on migrating from 7.0 to 8.1.
thanks in advance.
Selva

Similar Messages

  • Can we call a bean in Weblogic 6.0 from Weblogic 5.1

    Is it possible to call a (stateless session) bean deployed in weblogic 6.0
    from a bean in weblogic 5.1? I have two versions of weblogic running on two
    different hosts and I have to call a bean that is running in 6.0 from 5.1.
    Are there any limitations?
    Appreciate any feedback/suggestions.
    Thanks,
    Madhu

    Cross posted to 'misc' - please follow up on that newsgroup.
    http://newsgroups.bea.com/cgi-bin/dnewsweb?cmd=xover&group=weblogic.developer.interest.misc&utag=
    Mike
    "Madhu K" <[email protected]> wrote:
    Is it possible to call a (stateless session) bean deployed in weblogic
    6.0
    from a bean in weblogic 5.1? I have two versions of weblogic running
    on two
    different hosts and I have to call a bean that is running in 6.0 from
    5.1.
    Are there any limitations?
    Appreciate any feedback/suggestions.
    Thanks,
    Madhu

  • How to migrate a full J2EE application from WebLogic to NetWeaver?

    I have an independent J2EE application which can be run on WebLogic successfully. Now, I want to migrate it to the platform of NetWeaver. Could you tell me how to do with it? And where can I find the jar files of the application I deployed?
    Thank you very much!

    Have you tried the "exploded" format?
              Also, do you mean Weblogic 6.1 (sp2?).
              Peace,
              Cameron Purdy
              Tangosol, Inc.
              Clustering Weblogic? You're either using Coherence, or you should be!
              Download a Tangosol Coherence eval today at http://www.tangosol.com/
              "adurthy" <[email protected]> wrote in message
              news:[email protected]..
              >
              > HI All,
              >
              > I am trying a migrate a application Jsp application with taglibs from
              tomcat 4.0
              > to weblogic 6.2
              >
              > I tried the example way but none seems to work
              >
              > any help or articles are appreciated
              >
              > thanks
              > sivaji
              

  • Weblogic Sybase driver from weblogic 8.1 sp2

    This issue involves retrieving multiple resultsets from a CallableStatement.
    Lets assume by default when executing the CallableStatment I retrieve 3 result
    sets.
    The first one has 5 records
    The second 10
    The third 15
    If I execute the same CallableStatment with different parameters and the second
    result set has
    no records I get the following, the secode result set is not returned.
    The first one has 5 records
    The second 15.
    It is normal to return 0 records for a specific result set.
    Is it normal to have dynamic number of result sets, I think not.
    Can anyone help?
    Tommy Lapierre
    [email protected]

    We found the issue, we don't know why by at least is works:
    We chaged part on the stored procedure, see comments in the sql statement.
    (This is only a subset of the whol;e stored proc.)
    --Fx InstrumentPrice
    --Todo load fx only if the swap.useInstrumentCurrency is true.
    select
    @currencyPairId,
    isnull(cr.resetDate, r.resetDate),
    @foreignExchangeResetSource,
    isnull(cr.resetValue,r.resetValue),
    isnull(cr.resetValue2,r.resetValue2)
    from
    ResetMarkerEq rm,
    CustomReset cr,
    Reset r
    where
    rm.tradeDateFx *= cr.resetDate
    and rm.tradeDateFx *= r.resetDate
    and cr.instrId=@currencyPairId
    and r.fiId=@currencyPairId
    and rm.swapId=@swapId
    and cr.swapId=@swapId
    --This line was causing the weblogic driver to not return result of this select
    --and isnull(cr.resetValue,r.resetValue)!=null
    and (cr.resetValue is not null or r.resetValue is not null)
    and r.resetSource=@foreignExchangeResetSource
    and rm.settleDate > @asOfDate
    --No fx if both are equal
    and @instrumentTradeCurrencyId != @payCurrencyId
    end;
    "Tommy Lapierre" <[email protected]> wrote:
    >
    After investigating even more!!!!!!
    At the last two seclect I removed the CustomReset table from the statement
    and
    all of its references in that statement, I GET RESULTS.
    Something is fishy with that statement I guess.
    select
    @instrumentId,
    isnull(cr.resetDate, r.resetDate),
    @equityResetSource,
    isnull(cr.resetValue,r.resetValue),
    isnull(cr.resetValue2,r.resetValue2)
    from
    ResetMarkerEq rm,
    CustomReset cr,
    Reset r
    where
    rm.tradeDate *= cr.resetDate
    and rm.tradeDate *= r.resetDate
    and cr.instrId=@instrumentId
    and r.fiId=@instrumentId
    and rm.swapId=@swapId
    and cr.swapId=@swapId
    and isnull(cr.resetValue,r.resetValue)!=null
    and rm.settleDate > @asOfDate
    and r.resetSource=@equityResetSource
    "Tommy Lapierre" <[email protected]> wrote:
    After investigating more I realized that the result sets returned with
    jconn2 and
    not returned with wlsybase.jar is normal and the code fuctions fine.
    I am still getting unaceptable results because with the jconn2 driver
    the last
    result set has data and with the weblogic sybase driver I get no data.
    This is the store proc. look for --Fx InstrumentPrice, this is the result
    set
    that returns no data/
    -- SwapInstrument Store Procedure--
    create procedure dbo.essGetSwapInstrument @swapId int, @instrumentId
    int, @asOfDate
    smalldatetime
    as
    begin
    --Swap
    declare @swapStartDate smalldatetime
    declare @payCurrencyId int, @tradeCurrencyId int
    declare @moveTradeDate int, @moveSettleDate int
    --SwapLeg
    declare @equityLongLeg int, @equityShortLeg int
    declare @equityResetSource varchar(30), @foreignExchangeResetSourcevarchar(30)
    --SwapTypeDomain
    declare @quantityOrderPosition int
    declare @settleDate int
    --Instrument
    declare @multiplier int
    declare @instrumentTradeCurrencyId int
    --CurrencyPair
    declare @currencyPairId int, @majorCurrencyId int, @minorCurrencyIdint
    --Getting some mv trade/settle date flags because it has to be use before
    loading
    data
    select
    distinct
    @moveTradeDate = isnull(std.mvTrdDtToSwpStrt,0),
    @moveSettleDate = isnull(std.mvStlDtToSwpStrt,0),
    @swapStartDate = s.startDate,
    @quantityOrderPosition = isnull(std.qtyOrderPos,0),
    @settleDate = isnull(std.settleDate,0)
    from
    Swap s,
    SwapTypeDomain std
    where
    s.fiId = @swapId
    and s.swapType *= std.type
    --Getting the Equity Long and Short legs
    select
    @equityLongLeg = slLong.fiId,
    @equityShortLeg = slShort.fiId,
    @tradeCurrencyId = slLong.fxId,
    @payCurrencyId = slLong.currencyId,
    @equityResetSource = slLong.resetSource,
    @foreignExchangeResetSource = slLong.fxResetSource
    from
    --todo to track down those index. Taken from old code.
    SwapLeg slLong (index xxx),
    SwapLeg slShort (index xxx),
    SwapLeg slLongInt (index xxx),
    SwapLeg slShortInt (index xxx)
    where
    slLong.parentId = @swapId
    and slShort.parentId = @swapId
    and slLongInt.parentId = @swapId
    and slShortInt.parentId = @swapId
    and slLongInt.linkedLegId=slLong.fiId
    and slShortInt.linkedLegId=slShort.fiId
    and slLongInt.structureType=1
    and slShortInt.structureType=1
    and slLong.structureType=0
    and slShort.structureType=0
    and slLong.longShort=1
    and slShort.longShort=2
    and slLong.status <> 2
    and slShort.status <> 2
    and slLongInt.status <> 2
    and slShortInt.status <> 2
    --Getting instrument values
    select
    @multiplier=multiplier,
    @instrumentTradeCurrencyId=trdCcyId
    from
    Instrument
    where
    fiId = @instrumentId
    --Getting currency pair
    select
    @currencyPairId=ccyPairId,
    @majorCurrencyId=majorCcyId,
    @minorCurrencyId=minorCcyId
    from
    CurrencyPair
    where
    (majorCcyId = @instrumentTradeCurrencyId
    and minorCcyId = @payCurrencyId)
    or
    (majorCcyId = @payCurrencyId
    and minorCcyId = @instrumentTradeCurrencyId)
    and @instrumentTradeCurrencyId != @payCurrencyId
    --Returning SwapInstrument properties
    select
    @equityLongLeg,
    @equityShortLeg,
    @quantityOrderPosition
    --Returning Instrument
    select
    @instrumentId,
    @multiplier,
    @instrumentTradeCurrencyId
    --Returning instrument trade currency
    select
    ccyId,
    display
    from
    Currency
    where
    ccyId = @instrumentTradeCurrencyId
    --Returning currency pair
    select
    @currencyPairId,
    @majorCurrencyId,
    @minorCurrencyId
    --Returning trades to calulate
    select
    isnull(be.eventId, 0 ) as eventId,
    be.legId,
    --tradeDate
    case
         when @moveTradeDate=1 and be.tradeDate<@swapStartDate then @swapStartDate
         else be.tradeDate
    end as 'tradeDate',
    --settleDate
    case
         when @moveSettleDate=1 and be.settleDate<@swapStartDate then @swapStartDate
         when @settleDate=0 then be.tradeDate
         else be.settleDate
    end as 'settleDate',
    be.qty,
    be.price,
    be.basePrice,
    be.fxRate,
    be.intRate
    --ber.realizedAmt,
    --ber.realizedAmtBase,
    --ber.avgCost,
    --ber.avgBaseCost
    --ecf.cashFlow as equityCashFlow,
    --ecf.payDate as equityPayDate,
    --ccf.cashFlow as commissionCashFlow,
    --ccf.payDate as commissionPayDate
    from
    BasketEvent be
    --BasketEventRealized ber
    --cashFlow ecf,
    --cashFlow ccf
    where
    be.legId in (@equityLongLeg, @equityShortLeg)
    and be.instrId = @instrumentId
    and be.settleDate > @asOfDate
    and be.qty!=0
    and be.eventType = 0
    --RealizedAmount and Average cost
    --and be.eventId *= ber.eventId
    --and be.legId *= ber.legId
    --Equity CashFlow (type 0)
    --and be.eventId *= ecf.eventId
    --and be.legId *= ecf.legId
    --and ecf.type = 0
    --Divident CashFlow (type 2) -> Is it related to one trade?? no related
    to position
    --and be.eventId *= dcf.eventId
    --and be.legId *= dcf.legId
    --and ccf.type = 2
    --Commission CashFlow (type 3)
    --and be.eventId *= ccf.eventId
    --and be.legId *= ccf.legId
    --and ccf.type = 3
    union all
    --Returning trades still open before asOfDate
    select
    be.eventId,
    be.legId,
    --tradeDate
    case
         when @moveTradeDate=1 and be.tradeDate<@swapStartDate then @swapStartDate
         else be.tradeDate
    end as 'tradeDate',
    --settleDate
    case
         when @moveSettleDate=1 and be.settleDate<@swapStartDate then @swapStartDate
         when @settleDate=0 then be.tradeDate
         else be.settleDate
    end as 'settleDate',
    be.qty,
    be.price,
    be.basePrice,
    be.fxRate,
    be.intRate
    from
    TradeOpenQty t,
    BasketEvent be
    where
    t.eventId != 0
    and be.legId =
    case
         when t.qty > 0 then @equityLongLeg
         else @equityShortLeg
    end
    and t.swapId = @swapId
    and t.instrId = @instrumentId
    and t.date <= @asOfDate
    and t.dateEnd > @asOfDate
    and t.instrId=be.instrId
    and t.settleDate=be.settleDate
    --Returning TradeRealized for trade to recalc
    select
    ber.eventId,
    ber.legId,
    ber.settleDate,
    ber.realizedAmt,
    ber.realizedAmtBase,
    ber.avgCost,
    ber.avgBaseCost
    from
    BasketEventRealized ber
    where
    --Don't include reset.
    ber.eventId is not null
    and ber.legId in (@equityLongLeg, @equityShortLeg)
    and ber.instrId = @instrumentId
    and ber.settleDate > @asOfDate
    --Returning reset trade and reset traderealized
    select
    ber.legId,
    ber.settleDate,
    ber.realizedAmt,
    ber.realizedAmtBase,
    ber.avgCost,
    ber.avgBaseCost
    from
    BasketEventRealized ber
    where
    ber.legId in (@equityLongLeg, @equityShortLeg)
    and ber.instrId = @instrumentId
    and ber.settleDate > @asOfDate
    and ber.eventId is null
    union all
    --reset that are still open
    select
    ber.legId,
    ber.settleDate,
    ber.realizedAmt,
    ber.realizedAmtBase,
    ber.avgCost,
    ber.avgBaseCost
    from
    TradeOpenQty t,
    BasketEventRealized ber
    where
    t.eventId = 0
    and ber.eventId is null
    and ber.legId =
    case
         when t.qty > 0 then @equityLongLeg
         else @equityShortLeg
    end
    and t.swapId = @swapId
    and t.instrId = @instrumentId
    and t.date <= @asOfDate
    and t.dateEnd > @asOfDate
    and t.instrId = ber.instrId
    and t.settleDate = ber.settleDate
    --Returning trade match
    select
    f.eventIdMatch,
    f.eventId,
    f.legId,
    f.matchId,
    f.settleDate,
    f.qty,
    f.avgCost,
    f.avgBaseCost,
    f.realizedAmt,
    f.realizedAmtBase
    from
    FifoMatch f,
    BasketEvent be
    where
    --todo do we need to join to BasketEvent? FifoMatch already has thesettle
    date.
    be.legId in (@equityLongLeg , @equityShortLeg)
    and f.legId in (@equityLongLeg , @equityShortLeg)
    and be.instrId = @instrumentId
    and be.settleDate > @asOfDate
    and f.instrId=be.instrId
    and f.eventId=be.eventId
    and f.legId =be.legId
    and be.eventType = 0
    order by f.eventId
    --Returning trade match custom
    select
    f.eventIdMatch,
    isnull(f.eventId, 0) eventId,
    f.legId,
    f.matchId,
    f.settleDate,
    f.qty,
    f.avgCost,
    f.avgBaseCost,
    f.realizedAmt,
    f.realizedAmtBase
    from
    FifoMatchCustom f,
    BasketEvent be
    where
    f.eventId = be.eventId
    and f.legId = be.legId
    and be.legId in (@equityLongLeg , @equityShortLeg)
    and be.qty!=0
    and be.instrId = @instrumentId
    and be.settleDate > @asOfDate
    and be.eventType = 0
    --Returning TradeOpenQty
    --TradeOpenQuantity covering asOfDate
    select
    t.eventId,
    t.settleDate,
    case
         when t.qty > 0 then @equityLongLeg
         else @equityShortLeg
    end as legId,
    t.date,
    t.qty,
    t.dateEnd
    from
    TradeOpenQty t
    where
    t.swapId = @swapId
    and t.instrId = @instrumentId
    and t.date <= @asOfDate
    and t.dateEnd > @asOfDate
    union all
    --TradeOpenQuantity after asOfDate
    select
    t.eventId,
    t.settleDate,
    case
         when t.qty > 0 then @equityLongLeg
         else @equityShortLeg
    end as legId,
    t.date,
    t.qty,
    t.dateEnd
    from
    TradeOpenQty t
    where
    t.swapId = @swapId
    and t.instrId = @instrumentId
    and t.dateEnd > @asOfDate
    --Returning daily positions
    --Position covering asOfDate
    select
    bp.date as startDate,
    bp.legId,
    bp.dateEnd as endDate,
    bp.qty,
    bp.avgCost,
    bp.avgBaseCost,
    bp.totalRealized,
    bp.totalBaseRealized
    from BasketPosition bp
    where
    bp.legId in (@equityLongLeg , @equityShortLeg)
    and bp.instrId = @instrumentId
    and bp.date <= @asOfDate
    and bp.dateEnd >@asOfDate
    union all
    --Position after asOfDate
    select
    bp.date as startDate,
    bp.legId,
    bp.dateEnd as endDate,
    bp.qty,
    bp.avgCost,
    bp.avgBaseCost,
    bp.totalRealized,
    bp.totalBaseRealized
    from BasketPosition bp
    where
    bp.legId in (@equityLongLeg , @equityShortLeg)
    and bp.instrId = @instrumentId
    and bp.dateEnd > @asOfDate
    --Returning Instrument base price from Reset/CustomReset table
    select
    @instrumentId,
    isnull(cr.resetDate, r.resetDate),
    @equityResetSource,
    isnull(cr.resetValue,r.resetValue),
    isnull(cr.resetValue2,r.resetValue2)
    from
    ResetMarkerEq rm,
    CustomReset cr,
    Reset r
    where
    rm.tradeDate *= cr.resetDate
    and rm.tradeDate *= r.resetDate
    and cr.instrId=@instrumentId
    and r.fiId=@instrumentId
    and rm.swapId=@swapId
    and cr.swapId=@swapId
    and isnull(cr.resetValue,r.resetValue)!=null
    and rm.settleDate > @asOfDate
    and r.resetSource=@equityResetSource
    --Fx InstrumentPrice
    --Todo load fx only if the swap.useInstrumentCurrency is true.
    select
    @currencyPairId,
    isnull(cr.resetDate, r.resetDate),
    @foreignExchangeResetSource,
    isnull(cr.resetValue,r.resetValue),
    isnull(cr.resetValue2,r.resetValue2)
    from
    ResetMarkerEq rm,
    CustomReset cr,
    Reset r
    where
    rm.tradeDateFx *= cr.resetDate
    and rm.tradeDateFx *= r.resetDate
    and cr.instrId=@currencyPairId
    and r.fiId=@currencyPairId
    and rm.swapId=@swapId
    and cr.swapId=@swapId
    and isnull(cr.resetValue,r.resetValue)!=null
    and r.resetSource=@foreignExchangeResetSource
    and rm.settleDate > @asOfDate
    --No fx if both are equal
    and @instrumentTradeCurrencyId != @payCurrencyId
    end;
    Joe Weinstein <[email protected]> wrote:
    Tommy Lapierre wrote:
    This issue involves retrieving multiple resultsets from a CallableStatement.
    Lets assume by default when executing the CallableStatment I retrieve3 result
    sets.
    The first one has 5 records
    The second 10
    The third 15
    If I execute the same CallableStatment with different parameters
    and
    the second
    result set has
    no records I get the following, the secode result set is not returned.
    The first one has 5 records
    The second 15.
    It is normal to return 0 records for a specific result set.
    Is it normal to have dynamic number of result sets, I think not.
    Can anyone help?
    Tommy Lapierre
    [email protected]
    Hi. I'd like to see the stored procedure. If the procedure does dothe
    three selects, the jdbc driver should/will return a result set foreach
    one,
    and any query that returns no rows should result in a result set that
    returns false from the first call to next().
    If the procedure may skip a given query under some executions,then
    there would be no result set for a given skipped query. In other words,
    JDBC doesn't care or know whether a given execution of a statementwill
    return the same number of result sets as it did last time.
    It is not common to have a procedure return a variable number of
    result sets, but it has been done, and is fine as far as JDBC is concerned.
    The 'canonical style' for handling Prepared/Callable statements will
    handle
    this just fine.
    Joe

  • Problems migrating from weblogic 8.1 to 9.2

    Hello All,
    I am in the process of migrating a J2EE/EJB application from weblogic 8.1 to 9.2. I am able to deploy the application but could not run it. The application was working fine in 8.1.
    weblogic 9.2 throws the following error...
    <Error> <HTTP> <AQ1647> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1257288283875> <BEA-101017> <[weblogic.servlet.internal.WebAppServletContext@1e5d16d - appName: 'portal', name: '/', context-path: ''] Root cause of ServletException.
    javax.servlet.jsp.JspException: ServletException in '/common/layouts/column.jsp': Can't insert page '/phonebook/favouritePeople.do' : null
         at org.apache.struts.taglib.tiles.InsertTag$InsertHandler.doEndTag(InsertTag.java:921)
         at org.apache.struts.taglib.tiles.InsertTag.doEndTag(InsertTag.java:460)
         at jsp_servlet._common._layouts.__portal._jsp__tag11(__portal.java:663)
         at jsp_servlet._common._layouts.__portal._jspService(__portal.java:205)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:394)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:309)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:530)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:266)
         at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1056)
         at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:261)
         at org.apache.struts.tiles.TilesRequestProcessor.processTilesDefinition(TilesRequestProcessor.java:237)
         at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:300)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:231)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1164)
         at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:397)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at com.planetj.servlet.filter.compression.CompressingFilter.handleDoFilter(CompressingFilter.java:191)
         at com.planetj.servlet.filter.compression.CompressingFilter.doFilter(CompressingFilter.java:175)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3242)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    >
    I understand 9.2 is strict with standards, does this have to do something with the standards?
    Thank you in advance.

    This was an issue with flushing in tiles. I set flush="false" and all is working fine.
    Thank you.

  • Error in Migrating Weblogic 8.2 to Weblogic 9.2

    Hi,
    We are trying to upgrade to Weblogic 9.2 from Weblogic 8.2.
    We are using Queues in our application and we are using default host and port in our application for connecting that
    t3://localhost/
    But when we tried to migrate the application, Weblogic 9.2 expects the port to be supplied as part of Connection URL instead of taking the default port
    java.rmi.ConnectException: No known valid port for: 'Default[t3]:t3(t3):null:7001:10.45.4.131:-1'; No available router to destination
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:475)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:326)
    at weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:261)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:204)
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:226)
    Truncated. see log file for complete stacktrace
    >
    Please help me how to connect to JMS without specifying the default port in the connection string.
    -Vendhan

    According to this: http://e-docs.bea.com/wls/docs92/javadocs/weblogic/jndi/WLInitialContextFactory.html
    You can skip the url completely, if you are using the default hostname/port:
    Hashtable env = new Hashtable(5);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    Context ctx = new InitialContext(env);
    If your component looking up jms is in a servlet, ejb, etc. use the default InitialContext() constructor and skip all this stuff!
    Context ctx = new InitialContext();
    Cheers,
    -Adrian

  • Calling a WebLogic web service from a WebLogic web application

    We would like to call a WebLogic web service from WebLogic web application. The current architecture looks like:
    LoadBalancer--->iPlanet-1/iPlanet-2--->Firewall--->WebLogic-AppServer-1/WebLogic-AppServer-2
    The web application and web service are in the same WebLogic cluster. We would prefer that the web services do not get published externally.
    Does the WebLogic web application need to make a call back outside the firewall to the load balancer?
    Is there a way the web services can be called locally with load balancing?
    Can web service calls be made over the t3 protocol?
    Thanks,
    Mike

    I think one solution is to use a Java proxy to call the Web services.
    In the Java proxy you can have a method that accepts the user/pass and sets them correctly for the Web service.
    Then you expose that Java proxy as a data control (right click, create data control) - and then create a page that invokes that method.
    (For the basics of working with a POJO data control see: http://blogs.oracle.com/shay/2009/07/java_class_data_control_and_ad.html )

  • In applet,how can i got the thin client jar for JMS from weblogic.jar?

    who can give it to me?
    and,when i used the weblogic.jar coming from weblogic 7sp2 for linux advance server
    2.1 as the client jar,i still got a error message that Class (.....Stub.class)is
    not found,why?What should i do?

    That approach is a hack and an absolute nightmare. It never worked
    completely. I could not get any support for durable subscriptions etc. You
    can add this (Thin JMS client) as a request for new feature (but it should
    have been available long time ago).
    -- Vish Magapu
    "Bruce Stephens" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    You might want to take a look at the JMS white paper and asociated
    discussion for supporting thin clients: check the reference on:
    http://e-docs.bea.com/wls/docs70/faq/jms.html#252418
    HTHs,
    Bruce
    jerry8006 wrote:
    who can give it to me?
    and,when i used the weblogic.jar coming from weblogic 7sp2 for linux advance
    server
    2.1 as the client jar,i still got a error message that Class
    (.....Stub.class)is
    not found,why?What should i do?

  • Communicating between Weblogic 8.1 and Weblogic 10.3

    Hi,
    I have a requirement where in I need to access Queues in Weblogic 10.3 from Weblogic 8.1 and viceversa.
    Weblogic 8.1 :
    This has a proxy/web application that needs to put request to a Queue exposed in weblogic 10.3
    And will again poll for a Response Queue in weblogic 10.3
    Is it feasible, knowing the fact that jdk version in 8.1 is 1.4 & Jdk version is 1.6 in 8.1 ?
    Can we lookup for Queue defined in 8.1 in Weblogic 10.3 ? Can we use JMS adapter in 10.3 for acheiving this.
    Any help is greatly appreciated.
    Thanks !!

    Avoid using Message Bridges to receive messages.
    See the best practice: http://download.oracle.com/docs/cd/E15051_01/wls/docs103/jms/interop.html#wp1009272
    Q. When should I avoid using a messaging bridge?
    A. Other methods are preferred in the following situations:
        * Receiving from a remote destination—use a message driven EJB or implement a client consumer directly.
        * Sending messages to a local destination—send directly to the local destination.
        * Environment with low tolerance for message latency. Messaging Bridges increase latency and may lower throughput. Messaging bridges increase latency for messages as they introduce an extra destination in the message path and may lower throughput because they forward messages using a single thread.
        * Forward messages between WebLogic 9.0 domains—Use WebLogic Store-and-Forward.

  • Creation of domain issues - migration from weblogic 10.3.0 to 10.3.5 versio

    Hello,
    i would like to kindly ask for a help with following issue:
    Basically we are migrating from the 10.3.0 to the 10.3.5 version. We are building the domain using the template in "silent mode". And when i try to create the domain with new weblogic 10.3.5 im getting some errors.
    The command to run the creation of the domain is following:
    ${WL_HOME}/common/bin/config.sh -mode=silent -silent_script=${SILENT_SCRIPT} -log=${WLLOGFILE} >> ${LOGFILE} 2>&1
    returnCode=$?
    SILENT_SCRIPT contains following commands:
    read template from "/local/wg372/BM/appl/config/NEW_DOMAIN_CONFIGURED.jar";
    write domain to "/local/wg372/BM/appl/BmDomain";
    set OverwriteDomain "true";
    close template;
    When i setup new env(solaris) with weblogic 10.3.5 im getting following error when the silent_script command (*write domain to "/local/wg372/BM/appl/BmDomain";*) is executed:
    2011-07-18 16:53:00,427 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - succeed: read template from "/local/wg372/BM/appl/config/NEW_DOMAIN_CONFIGURED.jar"
    2011-07-18 16:53:00,427 INFO [runScript] com.oracle.cie.domain.script.ScriptExecutor - write Domain to "/local/wg372/BM/appl/BmDomain"
    2011-07-18 16:53:00,505 ERROR [runScript] com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask - There was an error executing the script: /local/wg372/BM/appl/installer/silent_script
    java.lang.NullPointerException
         at com.oracle.cie.domain.security.SecurityGenerateLDIFT.buildSecurityInfo(SecurityGenerateLDIFT.java:460)
         at com.oracle.cie.domain.security.SecurityGenerateLDIFT.<init>(SecurityGenerateLDIFT.java:119)
         at com.oracle.cie.domain.script.ScriptExecutor.writeDomain(ScriptExecutor.java:718)
         at com.oracle.cie.domain.script.ScriptParserClassic$StateMachine.processWrite(ScriptParserClassic.java:573)
         at com.oracle.cie.domain.script.ScriptParserClassic$StateMachine.execute(ScriptParserClassic.java:429)
         at com.oracle.cie.domain.script.ScriptParserClassic.parseAndRun(ScriptParserClassic.java:148)
         at com.oracle.cie.domain.script.ScriptParserClassic.doExecute(ScriptParserClassic.java:110)
         at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:72)
         at com.oracle.cie.domain.script.ScriptParser.execute(ScriptParser.java:35)
         at com.oracle.cie.wizard.domain.helpers.Executor.runSilentScript(Executor.java:68)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.runScriptWithExecutor(RunScriptTask.java:551)
         at com.oracle.cie.wizard.domain.silent.tasks.RunScriptTask.execute(RunScriptTask.java:335)
         at com.oracle.cie.wizard.silent.tasks.AbstractSilentTask.run(AbstractSilentTask.java:28)
         at java.lang.Thread.run(Thread.java:662)
    In Windows env im getting following error:
    create.domain:
    [exec] -mode="silent" -silent_script=J:/_dev/build/installer/silent_script
    [exec] << read template from "J:/_dev/build/config/NEW_DOMAIN_CONFIGURED.jar"
    [exec] >> succeed: read template from "J:/_dev/build/config/NEW_DOMAIN_CONFIGURED.jar"
    [exec] << write Domain to "J:/_dev/build/BmDomain"
    [exec] CFGFWK-60550: Script execution aborted. The script may contain an error.
    [exec] null
    CFGFWK-60550: - doc says
    CFGFWK-60550: Script execution aborted. The script may contain an error.
    Cause:
    Action:
    Level: 1
    Type: ERROR
    Impact: Configuration
    I tried to google for this issue, look into the weblogic documentation but with no luck.
    So i would like to kindly ask, if anyone of you perhaps could give me a hint/advise with this problem.
    Thanks in advance.

    Hi,
    thanks for the reply but im not sure if we are talking about the same thing. What i need is to upgrade the weblogic "DOMAIN" not the weblogic installation itself.
    Anyway,
    after some googling and testing im again stucked with another issue:
    1. First i have created the old doman (10.3.0)
    2. Then i have tested the domain with the new weblogic version 10.3.5 - as it should be (and is) compatible within those 2 versions
    ---> worked fine
    3. Then via offline WLST(of weblogic 10.3.5) i have managed to create new template with command writeTemplate(nameOfTemplate.jar)
    4. But when i try to create the new domain with the new template via WLST(of weblogic 10.3.5) im again stucked (im able to read the template in wlst but not able to writeDomain ) - error:
    wls:/offline> readTemplate('/home/wg372/tmp/new_template.jar')
    wls:/offline/BmDomain>writeDomain('/home/wg372/tmp/new_domain')
    Error: writeDomain() failed. Do dumpStack() to see details.
    wls:/offline/BmDomain>dumpStack()
    com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.ScriptException: The application location must have write permission.
    at com.oracle.cie.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:51)
    at com.oracle.cie.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1538)
    at com.oracle.cie.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:803)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.python.core.PyReflectedFunction.__call__(Unknown Source)
    at org.python.core.PyMethod.__call__(Unknown Source)
    at org.python.core.PyObject.__call__(Unknown Source)
    at org.python.core.PyInstance.invoke(Unknown Source)
    at org.python.pycode._pyx3.writeDomain$15(/var/tmp/WLSTOfflineIni6651397525640719781.py:71)
    at org.python.pycode._pyx3.call_function(/var/tmp/WLSTOfflineIni6651397525640719781.py)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyFunction.__call__(Unknown Source)
    at org.python.pycode._pyx24.f$0(<console>:1)
    at org.python.pycode._pyx24.call_function(<console>)
    at org.python.core.PyTableCode.call(Unknown Source)
    at org.python.core.PyCode.call(Unknown Source)
    at org.python.core.Py.runCode(Unknown Source)
    at org.python.core.Py.exec(Unknown Source)
    at org.python.util.PythonInterpreter.exec(Unknown Source)
    at org.python.util.InteractiveInterpreter.runcode(Unknown Source)
    at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
    at org.python.util.InteractiveInterpreter.runsource(Unknown Source)
    at weblogic.management.scripting.WLST.main(WLST.java:173)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.WLST.main(WLST.java:29)
    Caused by: com.oracle.cie.domain.script.ScriptException: The application location must have write permission.
    at com.oracle.cie.domain.script.ScriptExecutor.writeDomain(ScriptExecutor.java:757)
    at com.oracle.cie.domain.script.jython.WLScriptContext.writeDomain(WLScriptContext.java:795)
    ... 29 more
    I tried to have a look around for the "The application location must have write permission." problem but again with no luck.
    Furthemore when i try to do the same with old domain template, with old version of WLST (of weblogic 10.3.0), i have no problems with creating of the domain.
    Any ideas?
    Ill keep you updated :-)

  • Error while migrating from Weblogic 8.1 to 10.1.3

    Hi
    I am getting the below error while building the xml during migrating from Weblogic 8.1 to 10.1.3.
    Could anyone please suggest how to resolve the below error:
    Error:
    Exception in thread "main" java.lang.NoClassDefFoundError: weblogic/i18n/logging/LogMessage
    [java]      at weblogic.application.compiler.Appc.runBody(Appc.java:179)
    [java]      at weblogic.utils.compiler.Tool.run(Tool.java:158)
    [java]      at weblogic.utils.compiler.Tool.run(Tool.java:115)
    [java]      at weblogic.application.compiler.Appc.main(Appc.java:188)
    [java]      at weblogic.appc.main(appc.java:14)
    [java] Caused by: java.lang.ClassNotFoundException: weblogic.i18n.logging.LogMessage
    [java]      at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    [java]      at java.security.AccessController.doPrivileged(Native Method)
    [java]      at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    [java]      at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
    Regards
    Kiran
    [java]      at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    [java]      at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
    [java]      ... 5 more

    You have to make sure the LogMessage class (weblogic/i18n/logging/LogMessage) is in the classpath
    Using WebLogic Internationalization utilities: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13704/utilities.htm#i1011073
    and an example: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13704/textformatterclasses.htm#g1016464
    and: http://download.oracle.com/docs/cd/E17904_01/web.1111/e13704/loggerclasses.htm#g1020871

  • JMS issues when migration from weblogic 9.2 to 10.3.5

    We are facing some issues when migration from weblogic 9.2 to 10.3.5
    In  weblogic 9.2 :_
    BMP Entity EJBs used in our project are read-only in nature using entity cache, below is the configuration details
    <!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>
    Company
    </ejb-name>
    <entity-descriptor>
    <pool>
    <max-beans-in-free-pool>300</max-beans-in-free-pool>
    <initial-beans-in-free-pool>150</initial-beans-in-free-pool>
    </pool>
    <entity-cache>
    <max-beans-in-cache>3500</max-beans-in-cache>
    <idle-timeout-seconds>100000</idle-timeout-seconds>
    <read-timeout-seconds>0</read-timeout-seconds>
    <concurrency-strategy>ReadOnly</concurrency-strategy>
    </entity-cache>
    Entity beans will get refreshed using the JMS messges. with in the MDB descriptor files(weblogic-ejb-jar.xml) we are using the provider URL directly and XA enabled connection factory is set to false.
    migration to Weblogic 10.3.5_
    With the same configurations MDB are not not getting deployed in weblogic 10 with some exception, so we removed the provider URL from weblogic-ejb-jar.xml and changed the JMS configuration to use foreign JMS and XA enable connection factory is set to true. Now when ever the JMS message is triggered Entity bean is not getting refreshed with the updated values. i.e values are stale.
    Can some one look into this and provide your inputs to resolve this issue.

    I think the Entity bean refresh problem appears to be unrelated to MDBs. The MDB is only responsible for getting the message to your application (which in turn interacts with Entity beans). You might want to try posting your question to an EJB newsgroup.
    Tom

  • Can't migrate from Weblogic 8.1 to 10.1. Problems with Web services.

    Hi,
    I'm beginner in the BEA Weblogic technologies. My current task is a migration of working application (from Weblogic 8.1 to Weblogic 10.1).
    I've created the new ear-file for WLS 10.1 successfully.
    But during deploying of new ear-file on server I retrieve the next error:
    java.lang.IllegalStateException: Could not find binding for QNameProperty ValidateRoles : BindingTypeName[com.actuate.schemas.actuate8.ArrayOfString;t=ArrayOfString@http://schemas.actuate.com/actuate8] Bean type :interface com.actuate.schemas.actuate8.Login XmlType {http://schemas.actuate.com/actuate8}Login
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.createQNameProps(Deploytime109MappingHelper.java:1507)
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.processTypeMappings(Deploytime109MappingHelper.java:546)
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.initBindingFileFrom109dd(Deploytime109MappingHelper.java:250)
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.<init>(Deploytime109MappingHelper.java:161)
         at weblogic.wsee.bind.runtime.internal.RuntimeBindingsBuilderImpl.createRuntimeBindings(RuntimeBindingsBuilderImpl.java:86)
         Truncated. see log file for complete stacktrace
    The short structure of my wsdl-file is follow:
    <wsdl:definitions name="ActuateAPI"
         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
         xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
         xmlns:typens="http://schemas.actuate.com/actuate8"
         xmlns:wsdlns="http://schemas.actuate.com/actuate8"
         targetNamespace="http://schemas.actuate.com/actuate8">
              <wsdl:types>
              <xsd:schema xmlns="http://schemas.actuate.com/actuate8"
                        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                        xmlns:enc="http://schemas.xmlsoap.org/soap/encoding/"
                        xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
                        targetNamespace="http://schemas.actuate.com/actuate8"
                        elementFormDefault="qualified">
    <xsd:complexType name="Login">
    <xsd:sequence>
    <xsd:element name="User" type="xsd:string"/>
    <xsd:element name="Password" type="xsd:string" minOccurs="0"/>
    <xsd:element name="EncryptedPwd" type="xsd:string" minOccurs="0"/>
    <xsd:element name="Credentials" type="xsd:base64Binary" minOccurs="0"/>
    <xsd:element name="Domain" type="xsd:string" minOccurs="0"/>
    <xsd:element name="UserSetting" type="xsd:boolean" minOccurs="0"/>
    <xsd:element name="ValidateRoles" type="ArrayOfString" minOccurs="0"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:element name="Login" type="Login"/>
         <xsd:complexType name="ArrayOfString">
                        <xsd:sequence>
                             <xsd:element name="String" type="xsd:string" maxOccurs="unbounded" minOccurs="0"/>
                        </xsd:sequence>
         </xsd:complexType>
              </xsd:schema>
              </wsdl:types>
         <wsdl:message name="Login">
                   <wsdl:part name="Request" element="typens:Login"/>
              </wsdl:message>
              <wsdl:message name="LoginResponse">
                   <wsdl:part name="Response" element="typens:LoginResponse"/>
              </wsdl:message>
              <wsdl:portType name="ActuateSoapPort">
                   <wsdl:operation name="login">
                        <wsdl:input message="wsdlns:Login"/>
                        <wsdl:output message="wsdlns:LoginResponse"/>
                   </wsdl:operation>
              </wsdl:portType>
              <wsdl:binding name="ActuateSoapBinding" type="wsdlns:ActuateSoapPort">
                   <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
                   <wsdl:operation name="login">
                        <soap:operation soapAction=""/>
                        <wsdl:input>
                             <soap:body use="literal" parts="Request"/>
                        </wsdl:input>
                        <wsdl:output>
                             <soap:body use="literal" parts="Response"/>
                        </wsdl:output>
                   </wsdl:operation>
              </wsdl:binding>
    Please let me know if you need additional information.
    Many thanks,
    Yuriy.

    Thanks for response.
    There is a full stack trace of problem from log file:
    weblogic.application.ModuleException: Could not setup environment
         at weblogic.servlet.internal.WebAppModule.activateContexts(WebAppModule.java:960)
         at weblogic.servlet.internal.WebAppModule.activate(WebAppModule.java:345)
         at weblogic.application.internal.flow.ModuleStateDriver$2.next(ModuleStateDriver.java:182)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.activate(ModuleStateDriver.java:48)
         at weblogic.application.internal.flow.ScopedModuleDriver.activate(ScopedModuleDriver.java:194)
         at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:107)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:381)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:71)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:63)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:566)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:136)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:104)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:320)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:816)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1223)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:434)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:161)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:464)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    java.lang.IllegalStateException: Could not find binding for QNameProperty ValidateRoles : BindingTypeName[com.actuate.schemas.actuate8.ArrayOfString;t=ArrayOfString@http://schemas.actuate.com/actuate8] Bean type :interface com.actuate.schemas.actuate8.Login XmlType {http://schemas.actuate.com/actuate8}Login
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.createQNameProps(Deploytime109MappingHelper.java:1507)
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.processTypeMappings(Deploytime109MappingHelper.java:546)
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.initBindingFileFrom109dd(Deploytime109MappingHelper.java:250)
         at weblogic.wsee.bind.runtime.internal.Deploytime109MappingHelper.<init>(Deploytime109MappingHelper.java:161)
         at weblogic.wsee.bind.runtime.internal.RuntimeBindingsBuilderImpl.createRuntimeBindings(RuntimeBindingsBuilderImpl.java:86)
         at weblogic.wsee.ws.WsBuilder.createRuntimeBindingProvider(WsBuilder.java:691)
         at weblogic.wsee.ws.WsBuilder.buildService(WsBuilder.java:405)
         at weblogic.wsee.ws.WsFactory.createClientService(WsFactory.java:45)
         at weblogic.wsee.jaxrpc.ServiceImpl.init(ServiceImpl.java:149)
         at weblogic.wsee.jaxrpc.ServiceImpl.<init>(ServiceImpl.java:139)
         at weblogic.wsee.jaxrpc.ServiceRefProcessorImpl.<init>(ServiceRefProcessorImpl.java:76)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at weblogic.deployment.ServiceRefProcessorFactory.constructProcessor(ServiceRefProcessorFactory.java:63)
         at weblogic.deployment.ServiceRefProcessorFactory.getProcessor(ServiceRefProcessorFactory.java:49)
         at weblogic.deployment.BaseEnvironmentBuilder.addServiceReferences(BaseEnvironmentBuilder.java:556)
         at weblogic.servlet.internal.CompEnv.activate(CompEnv.java:138)
         at weblogic.servlet.internal.WebAppServletContext.activate(WebAppServletContext.java:2902)
         at weblogic.servlet.internal.WebAppModule.activateContexts(WebAppModule.java:958)
         at weblogic.servlet.internal.WebAppModule.activate(WebAppModule.java:345)
         at weblogic.application.internal.flow.ModuleStateDriver$2.next(ModuleStateDriver.java:182)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.ModuleStateDriver.activate(ModuleStateDriver.java:48)
         at weblogic.application.internal.flow.ScopedModuleDriver.activate(ScopedModuleDriver.java:194)
         at weblogic.application.internal.flow.ModuleListenerInvoker.activate(ModuleListenerInvoker.java:107)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$2.next(DeploymentCallbackFlow.java:381)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:71)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.activate(DeploymentCallbackFlow.java:63)
         at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:635)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:26)
         at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
         at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:154)
         at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:566)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:136)
         at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:104)
         at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:320)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:816)
         at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1223)
         at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:434)
         at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:161)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:181)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:12)
         at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:67)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:464)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    >
    Thanks.
    Yuriy.

  • Migration from Weblogic 7.0 to 8.1

    Hi,
    I have this project where we have to migrate from Weblogic Portal 7.0 to 8.1 . I have a few questions,
    1. Is there any anything like a wildcard event in Page Flow, which existed in the Webflow?
    2. What about proxy nodes? Does Page flow support proxy nodes?
    The reason I ask is my webflow has these things and I need to manually convert it into a page flow.
    Thanks
    PS: This is just the beginning of a long path of migration.:-)

    Hi,
    I have this project where we have to migrate from
    m Weblogic Portal 7.0 to 8.1 . I have a few
    questions,
    1. Is there any anything like a wildcard event in
    Page Flow, which existed in the Webflow?i believe it does - you shoudl post your question on the pageflow newsgroups, as this is not portal specific
    2. What about proxy nodes? Does Page flow support
    proxy nodes?
    The reason I ask is my webflow has these things and I
    need to manually convert it into a page flow.
    Thanksfrom what i remember about webflow the proxy thing was just an IDE thing and as used to kind uf break up you weblows in to nested ones. Pageflow do support tru nested pageflows
    PS: This is just the beginning of a long path of
    migration.:-)

  • Migration of weblogic 8.1 from solaris to 10.3 in Linux

    Hello All,
    We want migrate our WebLogic 8.1 from Solaris to 10.3 in linux, i am unable to find any documents on this.
    Can any one help me on this.
    Thanks,
    Nkhil

    install linux version of weblogic 10.3
    create domain, you may have to extend your domain to include adf libraries.
    start admin server
    goto, console create datasource
    also you can enable tunneling
    open your project in jdev
    create an app. server for tunneling
    deploy it.
    that's what I did.

Maybe you are looking for

  • HP Envy Hard Drive Imminent Failure message

    I've been getting this error when I turn on my laptop. It reads "SMART Hard Drive detects imminent failure. To ensure no data loss, backup contents and contact HP" I've run the Hard Drive Self Test and it has failed that along with most of the other

  • OIM and ldap sync

    I am using OIM 11gR2 and OID 11.1.1.6. Users and groups will be in OID, and OIM is required to do the provisioning of users. Plan is to use ldap sync between oid and oim. With ldap sync, all users will be available in OIM. And then in OIM can one do

  • Updating multiple rows of a table at once

    Hi All, I am writing a stored procedure which fills out all columns in a table, say Table A with one query except for one column, say column 'ABC' in that table. I have to load this left out column using a different query that is referring to some ot

  • How we implement push on a flex applications?

    Hi         Can any body tell me how we can implement push in flex.please tell me what actually this push means.even i have no idea what is push in flex? So please provide me link of some basic tutorial or explain me. Thanks In advance        Vineet o

  • Importing 10,000's lines of text error

    I have several documents that have 10,000's of lines of data updated every month, but every time I import the data I get a problem. Every 6393 lines an extra blank line is inserted. Is this a known error, and is there a patch to fix it? I have tried