IAS/BC4J using iCache

Hi,
I have installed iAS Enterprise Edition on solaris and am trying to change the sample Bc4J application to use iCache (which is installed and working). What I did was:
add $ORACLE_HOME/jdbc/lib to LD_LIBRARY_PATH in jserv.propertes
add an entry in jserv.properties wrapper.env=ORA_OCI_CACHE=1
all of the other stuff looks fine.
Then, I editted the submit_login.jsp and changed "jdbc:oracle:thin:" to "jdbc:oracle:oci8:"
When logging in , I use "@tnsname" as the connection string. However, when trying to access any of the data screens, I am getting "JBO-26061" (unable to open the jdbc connection) mentioning an "SO error". What is the proper procedure for taking the sample BC4J app in iAS and converting it to use the oci drivers instead of the thin drivers?
Much obliged!

More info:
The text with the JBO-26061 is:
"Io exception: SO Exception was generated"
Regards

Similar Messages

  • Master-detail jsp for bc4j using JBO tags

    I have created a master-detail jsp for bc4j using JBO tags. However, I can not get the correct result. There are some examples on OTN, but they are about jsp programs. How to define the relationship of the master view-object and the detail view-object?
    Thanks for your help.

    I know you're having a problem upgrading, but...
    Could you upgrade to 9.0.3 and tell us what problems you're encountering?
    Thanks.
    Sung

  • Deployments of BC4J using Jdeveloper3.2 on Oracle9i AS

    I would like to know the deployment proceedures of deploying a BC4J to Oracle 9iAS. At present i am trying deploying BC4J from Jdeveloper directly to an oracle8i.
    In future 8i is going to be used as a database with 9i as an application server.
    Would appreciate the help put forth,
    David.

    David,
    Here is a document that describes the steps in detail, following the online orders example in JDev 3.2.
    Hope this helps,
    Lynn
    Java Tools Team
    IAS 1.0.1 Installation On NT or 2000
    ==============================
    You do not have to do an enterprise installation of IAS to make a jsp
    application works. IAS enterprise editions includes Forms, Reports, Discoverer,
    Oracle HTtp Server.
    For running a jsp application created by oracle Jdeveloper you can just install
    Oracle Http Server which is going to take about 250 MB space in your hard drive.
    This is the first option Of IAS installation.
    Accept all default, when asked for creating Directory Service
    (Oracle Internet Directory), ignore this step. You can however
    create a local net8 service to test with sql plus. IAS comes in two cds,
    you will have to restart your machine when the first cd finishes,
    then you will be asked to insert the second cd. after successfully
    finishing the installtion, Apache http server will start automatically.
    to test it, type the ip address of your machine in any browser http://ipAddress
    (no port is needed to be entered)
    you should see ORACLE HTTP SERVER default page.
    Note: You can install IAS to any directory you want . normally it will
    be in Oracle\IAS.
    Sample JSP Application
    ======================
    For this demo, we will use Online Auction Sample.
    This sample comes with jdeveloper 3.1 or 3.1.1.2 installation under
    samples\bc4j directory.
    Open jdeveloper and go to FILE\OPEN and navigate to the samples directory
    of jdeveloper to select the bc4jauctions.jws
    When you open this worspace, you will see 4 projects related to each other.
    (businesslogic.jpr, hotbids.jpr, jsps.jpr,setup.jpr)
    Before talking about IAS here, you need to open setup.jpr and go to
    BC4JAuctions.html to learn about how to run this sample in jdeveloper.
    Before compiling, you need to go to jsps.jpr and open the jsp source files
    and remove this statement from the IMPORT section:
    oracle.jbo.common.appmgr.*,
    if you left it, it will work in jdeveloper, but when you run it in the web
    server, it will generate some errors that it will not be able to resolve
    the appmgr.* classes.
    this import is not needed.
    Deploying to Sample to IAS 1.0.1
    ============================
    After compiling and running successfully the jsp application in jdeveloper
    follow the following steps:
    after IAS installation, your IAS_home might look like this:
    C:\Oracle\iAS
    1. go to C:\Oracle\iAS\Apache\Apache\htdocs and create a folder.
    Name that folder auctionDemo.
    2. in Jdeveloper, select jsps.jpr and go to Project menu \ Deploy \
    new Deployment Profile.
    in the deployment wizard, click next and select Web Application to Web server
    from the drop down list.
    in step 2 of 6, browse to C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo,
    (still in step 2 of 6) From file to deploy, check buildjsps.
    This will deploy all the jsp and html file plus the webbeans classes,
    click next, accept the defaults.
    in step 5 of 6 , click next without moving the files
    (this is needed only for applets),
    in step 6 of 6 move all project libraries to deployed libraries,
    click next then FINISH.
    click YES to deploy.
    After this C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo directory
    will have all the following files in it:
    including a folder that will be generated by the wizard.
    the name of the folder is bc4jauctions and this will contain
    another folder called buildjsps in which all the jsp files will be included.
    jsps.jar: this contains the jsp files and the webbeans class files
    Jdeveloper libraries: use winzip utility to jar these files into one
    jar file and call it jdevLib.jar.
    the files that need to be jarred are :
    aurora_client.jar
    classes12.zip
    connectionmanager.zip
    javax_ejb.zip
    jbohtml.zip
    jbojdbcpatch.zip
    jbomt.zip
    jboo8i.zip
    jbooorasql.zip
    jboremote.zip
    jboremoteejb.zip
    jdev-rt.zip
    jndi.jar
    ojc.jar
    ojsp.jar
    runtime.zip
    servlet.jar
    vbjorb.jar
    vbjapp.jar
    xmlparser2.jar
    3. copy connections.properties file to auctionDemo. make sure you open
    this file in notepad and see if the auction connection is there.
    4.copy package1_Package1Module.properties file from jdeveloper_home\samples
    \bc4j\bc4jauctions to
    C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo
    5.in jdeveloper select businesslogic.jpr and go to project menu\deploy\
    new deployment profile.
    choose to deploy as a simple archive, click next. when asked about the archive
    path , browse to C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo,
    the name of the jar file will be businesslogic.jar
    click next, finish then accept to deploy
    6. For the images that the jsp application is using , you need to point
    to webapp folder that contains them. therefore create a folder in
    C:\Oracle\iAS\Apache\Apache\htdocs and call it bc4jauctions.
    copy webapp folder from jdeveloper_home\samples\bc4j\bc4jauctions\webapp to
    C:\Oracle\iAS\Apache\Apache\htdocs\bc4jauctions
    Note: right now, your folder C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo
    should contain the following files:
    *)jsps.jar
    *)jdevLib.jar
    *)businesslogic.jar
    *)connections.properties
    *)package1_Package1Module.properties
    *)and a folder named bc4jauctions (wich has another folder called buildjsps)
    7. you need to set the classpath to point to the above jar files.
    to do this you need to modify the jserv.properties file of the http server.
    Note: you might find duplicate jser.properties file, make sure to go to
    the properties of the file by right clicking on jserv file (located in
    C:\Oracle\iAS\Apache\Jserv\Conf)
    and make sure that it says in TYPE of FILE: Properies file. that is the one
    you need to edit.
    open jserv.properties file and add these lines in wrapper.classpath section
    wrapper.classpath=C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo
    wrapper.classpath=C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo\jdevLib.jar
    wrapper.classpath=C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo\connections.properties
    wrapper.classpath=C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo\package1_Package1Module.properties
    wrapper.classpath=C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo\businesslogic.jar
    wrapper.classpath=C:\Oracle\iAS\Apache\Apache\htdocs\auctionDemo\jsps.jar
    remember that the main.jsp is inside C:\Oracle\iAS\Apache\Apache\htdocs\
    auctionDemo\bc4jauctions\buildjsps
    therefore to run this sample in IAS, make sure first that the Oracle Http
    Server is running.If it is not running, go to the START menu
    \PROGRAMS\Oracle-iAs Home\Oracle Http Server click on
    start Http server powered by Apache
    8. To run the auction sample in the browser, open netscape or Internet explorer
    and type the following URL: http://yourIpAddress/auctionDemo/bc4jauctions/buildjsps/main.jsp
    Now you can Play with it.
    Cool, isn't it?
    null

  • BC4J using Tomcat DataSource: ClassCast Exception

    Hi
    need help with this problem:
    i have deployed a bc4j module to tomcat.
    the module is confgured to use an excisting datasource within the servlets context.
    everything works fine, like
    o ApplicationModule is created (using the correct Datasource on Tomcat)
    o a ViewObject is looked up by name
    but here it starts to get messy:
    executing the a query on the ViewObject leads to a ClassCast Exception (see below)
    One additional remark:
    The same code works fine, when using a Connection instead of a DataSource.
    But this is J2EE, so why not use a DataSource ?
    Thanks for any ideas
    Volker
    java.lang.ClassCastException: org.apache.commons.dbcp.DelegatingPreparedStatement
         at oracle.jbo.server.OracleSQLBuilderImpl.doStatementSetRowPrefetch(OracleSQLBuilderImpl.java:976)
         at oracle.jbo.server.DBTransactionImpl.createPreparedStatement(DBTransactionImpl.java:3346)
         at oracle.jbo.server.DBTransactionImpl2.createPreparedStatement(DBTransactionImpl2.java:425)
         at oracle.jbo.server.DBTransactionImpl.createReUsePreparedStatement(DBTransactionImpl.java:4173)
         at oracle.jbo.server.ViewObjectImpl.getPreparedStatement(ViewObjectImpl.java:7750)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:586)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:547)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3422)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:663)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:769)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:706)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3363)
         at de.mtag.demo.server.Demo.start(Demo.java:88)

    I know it´s been a long time since you've posted this question. But did you resolve this problem ? I'm having the exact same situation here.
    Any help would be good.
    Thanks a lot,
    John

  • BC4J- using Update/delete queries??

    How do I send a delete/update query using the BC4J without iterating over the viewObject ??? -
    I would like to execute the operation at the database side.
    null

    I'm not sure exactly what you mean by executing the operation at the database side, but I'll explain a bit about how updating a view object works.
    To delete or update rows in a view object, you update the row set, then commit your changes. As you're updating the row set, the entity cache is automatically being updated, and when you do a commit(), the correct database query is generated and executed. So in effect the operation does take place on the database side.
    You could get the JDBC connection and write the update statement directly in JDBC, bypassing the business components, but you lose the transaction handling, locking, and so on that business components are giving you, so that probably isn't a good idea.
    Thanks
    Blaise

  • Bc4j using JNDI

    Hi,
    I need help please. I developed an application in jdeveloper using bc4j and it uses bc4j.xcfg for database connections. When I try to deployed it to a remote server 9iAS 9.0.3, it says deployment incomplete.
    I read in the forum that we need to modify bc4j.xcfg to make jdev use JNDI. So I modified it as follows
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig>
    <AppModuleConfigBag>
    <AppModuleConfig name="BC4JTestPKGModuleLocal">
    <AppModuleJndiName>BC4JTestPKG.BC4JTestPKGModule</AppModuleJndiName>
    <DeployPlatform>LOCAL</DeployPlatform>
    <JDBCDataSource>OracleDS</JDBCDataSource>
    <ApplicationName>BC4JTestPKG.BC4JTestPKGModule</ApplicationName>
    <jbo.project>BC4JTestPRJ</jbo.project>
    </AppModuleConfig>
    </AppModuleConfigBag>
    <ConnectionDefinition name="OracleDS">
    <ENTRY name="jdbc/mmrrcdb" value="java:comp/env/jdbc/mmrrcdb"/>
    </ConnectionDefinition>
    </BC4JConfig>
    I am not sure of what fits exactly in <JDBCDataSource>
    and also <ENTRY name="jdbc/mmrrcdb" ---/>
    I also added resource-ref to web.xml
    Do we need to configure anything else other than above?
    Someone please help me in solving this
    Thanks,
    Kavitha

    Hi,
    I need help please. I developed an application in jdeveloper using bc4j and it uses bc4j.xcfg for database connections. When I try to deployed it to a remote server 9iAS 9.0.3, it says deployment incomplete.
    I read in the forum that we need to modify bc4j.xcfg to make jdev use JNDI. So I modified it as follows
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BC4JConfig>
    <AppModuleConfigBag>
    <AppModuleConfig name="BC4JTestPKGModuleLocal">
    <AppModuleJndiName>BC4JTestPKG.BC4JTestPKGModule</AppModuleJndiName>
    <DeployPlatform>LOCAL</DeployPlatform>
    <JDBCDataSource>OracleDS</JDBCDataSource>
    <ApplicationName>BC4JTestPKG.BC4JTestPKGModule</ApplicationName>
    <jbo.project>BC4JTestPRJ</jbo.project>
    </AppModuleConfig>
    </AppModuleConfigBag>
    <ConnectionDefinition name="OracleDS">
    <ENTRY name="jdbc/mmrrcdb" value="java:comp/env/jdbc/mmrrcdb"/>
    </ConnectionDefinition>
    </BC4JConfig>
    I am not sure of what fits exactly in <JDBCDataSource>
    and also <ENTRY name="jdbc/mmrrcdb" ---/>
    I also added resource-ref to web.xml
    Do we need to configure anything else other than above?
    Someone please help me in solving this
    Thanks,
    Kavitha

  • Problems with CORBA deployed BC4J used by JSP app

    Hi JDev Team all is beginning to run
    , we are trying with EJB's but now we are turn to CORBA for close
    view, in a first look CORBA is more complicated than EJB's but
    the performance for EJB's is poor from our point of view, if you
    are interested in our tryings, more in a another message.
    But now in our very first probe with CORBA using the
    onlineOrders tuttorial as base, with the jars, classpaths and all
    the inner works in a ( as far we knows ) correct state, deployed
    and generated, when i try to navigate from de main.jsp (
    generated ) to, for example, CustomerView i get this error in the
    browser :
    Error Message: JBO-25008: Object SupplierView is referenced by
    SuppliedByLink. Cannot be removed
    Remember that for now we do not modify any code in the generated
    jsp's, and the tester runs OK on the deployed BC from
    onlineorders, deployed in a fresh schema created in the process
    and prepared like the tutorial says.
    We continue impressed and very very pleased in the process of
    learning JDdev 3.0 and your works :-)
    Regards, Nacho
    null

    Hi
    It is a bug discovered late but there is a workaround for this.
    The error lies in the following iine in
    oracle\DataWebBeanImpl.java am.getTransaction().reconnect(false);
    Commenting this line out solves the problem.
    Workaround Description:
    1.Extract jboHTMLsrc.zip to get
    oracle\jdeveloper\html\DataWebBeanImpl.java
    and comment out the line:
    am.getTransaction().reconnect(false);
    2. Add this file to your project or compile it and add the .class
    file to the classpath.
    regards
    raghu
    Ignacio Ortega (guest) wrote:
    : Hi JDev Team all is beginning to run
    : , we are trying with EJB's but now we are turn to CORBA for
    close
    : view, in a first look CORBA is more complicated than EJB's but
    : the performance for EJB's is poor from our point of view, if
    you
    : are interested in our tryings, more in a another message.
    : But now in our very first probe with CORBA using the
    : onlineOrders tuttorial as base, with the jars, classpaths and
    all
    : the inner works in a ( as far we knows ) correct state,
    deployed
    : and generated, when i try to navigate from de main.jsp (
    : generated ) to, for example, CustomerView i get this error in
    the
    : browser :
    : Error Message: JBO-25008: Object SupplierView is referenced by
    : SuppliedByLink. Cannot be removed
    : Remember that for now we do not modify any code in the
    generated
    : jsp's, and the tester runs OK on the deployed BC from
    : onlineorders, deployed in a fresh schema created in the process
    : and prepared like the tutorial says.
    : We continue impressed and very very pleased in the process of
    : learning JDdev 3.0 and your works :-)
    : Regards, Nacho
    null

  • JClient/BC4J using Java web start deploy error

    I have created the JClient/BC4J Applications,when I run local.html within JDeveploper,there is an error,which message is
    that Can't find the resource http://localhost:8988/sqlj/lib/runtime12.jar.How can I sovle it?
    Env:Windows2000,Oracle8i,JDeveloper9.03
    Thanks for your help!

    Hello,
    JDev 9.0.3 preview release includes support for signing the bc4j jar files and
    your project jar files. When you run the JClient WebStart wizard, Ant build
    scripts are generated. One of the Ant build target 'signs' the jar file.
    You can download the JDev 9.0.3 preview release from
    http://otn.oracle.com/software/products/jdev/content.html
    HTH,
    Sathish.

  • Switch/Router can only use PAP to communicate with IAS

    I was securing my switches to allow users to login using radius and notice that I have to set the IAS server to PAP for the Cisco equipment to authenticate. Is there an alternative to this since PAP is clear text.
    [ PC ]__SSH__[Switch]___PAP___[ IAS ]

    When using SSH to the switch for switch based authentication you need to
    enable PAP on the Radius policy.
    Telnet/SSH work on PAP only.
    Regards,
    ~JG
    Do rate helpful posts

  • Architecture for APEX using iAS 10.1.2 and 10g with Dataguard replication

    We are currently using APEX in a stand-alone architecture using iAS 10.1.2 on with 10g as the DB(all on the same server). Our APEX apps are fast becoming a significant part of our production environment and I would like to set up a redundant failover site using Dataguard replication. I am very familiar with the DB failover, but I am struggling with how I can set up iAS on the standby server.
    Oracle guidelines for iAS failover using Dataguard (this is not AS Dataguard) specify that the primary and standby server local hostname must be identical for the failover architecture to work unless you use a virtual host name. Due to restrictions in our environment I am not able to set the lcoal hostname the same on the primary and standby servers. As an alternative I installed iAS(10.1.4) using a virtual hostname on my primary server, but it appears that the servername that shows up in all the installation references after the installation is still the actual server name, not the virtual name.
    I am looking for guidance from someone that has successfully set up a iAS failover architecture using dataguard on servers that do not have the same local hostname.
    thanks

    Hi,
    I have the same problem. Do you find something about putting jsf in OAS 10.1.2 ?
    Regards

  • Upgarding 9i Application Server version 9.0.3 to use Java 1.4

    Hi,
    I have started to use JDeveloper 9.0.4 on an iAS (9.0.3). As a result I have had to update the BC4J runtime libaries on the App Server which has worked fine. I also think that I need to upgrade the iAS JDK to 1.4.
    My questions are:
    a) How can I tell what version of Java the iAS is using.
    b) How do I go about upgrading if I do need to? I have got Java 1.4 downloaded I just don't know where or how to install it on the iAS.
    Many thanks.

    Within the enterprise manager, you can find the version. I renamed my (9.0.3) jdk directory to jdk.9.0.3 then I copied down Java's 1.4 jdk (jdk directory only).

  • HELP!: JBO-33001 bc4j.xcfg not found against oc4j 9.0.3

    I'm using JDev 9.0.2.
    Make BC4J project and BC4J JSP application.
    Then I deployed to remote OC4J server.
    BC4J JSP works on remote OC4J 9.0.2 but fails on remote OC4J 9.0.3
    by JBO-33001. Why??
    Of course, I set up the BC4J runtime on both version of OC4J, so
    I believe the same configuration has done for both OC4J server.
    Does anyone can deploy and execute 9.0.2's BC4J app on OC4J 9.0.3???

    I have found the solution...that worked for me anyway.
    When configuring a stand-alone OC4J 9.0.3 to work with BC4J (using %JDEV_HOME%\BC4J\bin\bc4j2oc4j.bat), JDEV_HOME must be pointing to a JDeveloper 9.0.3 installation.
    Before doing this however, I undid some of my earlier work:
    - undeployed the apps I deployed to the stand-alone OC4J
    - pointed JDEV_HOME to my 9.0.2 installation and ran: %JDEV_HOME%\BC4J\bin\bc4j2oc4j delete
    Now you can properly configure OC4J 9.0.3 by:
    - point JDEV_HOME to a 9.0.3 install (simply unzip it somewhere)
    - run: %JDEV_HOME%\BC4J\bin\bc4j2oc4j install
    After that, deployments of BC4J JSP pages (to my newly reconfigured stand-alone OC4J 9.0.3) ran and connected to my application module just fine, even though I developed and deployed them using JDEV 9.0.2
    I wish there had been a new set of instructions put out for configuring OC4J 9.0.3.

  • Insert BLOB error in IAS but not in JDeveloper

    Hi
    Our application have a Servlet who executes an INSERT using a PrepareStatement (created by the Transaction of an ApplciationModule)
    In Jdeveloper (10.1.2) this works OK
    But when deploy it in the IAS (904) we have an error:
    java.sql.SQLException: Io exception: Connection reset
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:189)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:231)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:345)
    at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2094)
    at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1986)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2697)
    at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:457)
    at com.asorco.sgie.controller.servlets.general.Archivo.uploadFile(Archivo.java:176)
    at com.asorco.sgie.controller.servlets.general.Archivo.doPost(Archivo.java:118)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:733)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:793)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.ja
    va:192)
    at java.lang.Thread.run(Thread.java:534)
    In the IAS, Im using the jars used in JDeveloper (classes12.jar, classes12dms.jar, nls_classes12.jar).
    Any knows the reason?
    Thank you!

              The effect to use <jsp:forward> or RequestDispatcher.forward is different between
              BEA and Tomcat (even Websphere). Weblogic stores the output in a buffer, before
              the buffer reaches the limit, you can call those forward methods without obvious
              problems. Tomcat (and Websphere I ever tested) is not so tolerable. If you have
              send out something via Servlet writer or JSPWriter, or have something like HTML
              tags/text before forwards, chances are big to encounter the exceptions you have.
              So I use more include methods to assemble my JSPs and servlets, for the purpose
              of portability.
              "Aidan Monroe" <[email protected]> wrote:
              >
              >I have a .war file that runs perfectly in WebLogic 7.0. Today I tried
              >to run that
              >same .war in Tomcat 4.0.6. Unfortunately, it did not run. I get the following
              >error:
              >
              >java.lang.IllegalStateException: Cannot forward after response has been
              >committed
              >
              >Now, I know what this error means, but I don't know why I would get it
              >when I
              >run in Tomcat but not WebLogic. Does WebLogic do something to "insulate"
              >me from
              >this error that perhaps Tomcat does not do?
              >
              >Aidan
              >
              

  • IAS dot1x dynamic VLAN assignment not working

    I have a windows 2003 server with AD and IAS configured. IAS uses AD for authentication. I have AAA login configured and working. I have AAA dot1x configured on the 3550 switch. IAS has a Wired Ethernet policy configured for PEAM and is send back attributes tunnel-type = VLAN, tunnel-medium-type = 802, and tunnel-pvt-group-id = 210. My XP supplicant has dot1x enabled and is authenticating through the switch and IAS.
    Using Ethereal I can see the both the Radius request and accept packets. I can see that radius is sending the above attributes through ethereal as well. Using the Debug Radius command I can see that the attributes are getting to the switch. When I use the show VLAN command the switch port is still in VLAN 1. I want it to be in VLAN 210.
    I have upgraded the IOS in the 3550 switch. This fixed a previous problem of the switch not sending the NAS port type of Ethernet. It as sending a port type of Asynch.
    I also have service pack 2 on the Windows 2003 server.
    Has anyone else had this problem? If so how do I fix it.
    Here is my debug code:
    06:56:45: RADIUS: Tunnel-Medium-Type [65] 6 00:ALL_802 [6]
    06:56:45: RADIUS: Tunnel-Private-Group[81] 5 "210"
    06:56:45: RADIUS: Tunnel-Type [64] 6 00:VLAN [13]
    Here is my switch code:
    aaa new-model
    aaa authentication login default group radius local
    aaa authentication dot1x default group radius local
    aaa session-id common
    interface FastEthernet0/1
    switchport mode access
    dot1x pae authenticator
    dot1x port-control auto
    radius-server host 10.1.1.254 auth-port 1645 acct-port 1646 key test
    radius-server deadtime 60

    You're missing this:
    aaa authorization network default group radius
    I assume "everything works" other than VLAN-Assignment itself.
    This should get you squared away,

  • IAS to NPS

    Hi
    I change my Radius from MS IAS to MS NPS. The wired 802.1x works fine but the wireless 802.1x doesent work. AP1250's radius debug is attached.
    Obs: On IAS everything works fine

    Hi,
    According to your description, my understanding is that you want to know if the tool IASmigreader will interrupt service when exporting configuration of IAS.
    Use IASmigreader to export the configuration settings of IAS will not affect the service. At an elevated command prompt, type iasmigreader.exe, and then press ENTER. The migration tool will automatically export settings to a text file. Reference:
    http://blogs.technet.com/b/omers/archive/2012/11/04/windows-2003-ias-radius-migration-to-windows-2008-r2-nps.aspx
    Deploying the NPS server with a different host name and IP address, then there is no impact to the IAS server.
    Best Regards,
    Eve Wang
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for